@font-face {
  font-family: "Lufga";
  src: local("Lufga Regular"), url("assets/fonts/Lufga-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: local("Lufga Medium"), url("assets/fonts/Lufga-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: local("Lufga SemiBold"), url("assets/fonts/Lufga-SemiBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: local("Lufga ExtraBold"), url("assets/fonts/Lufga-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: local("Lufga Black"), url("assets/fonts/Lufga-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: local("Gilroy Light"), url("assets/fonts/Gilroy-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: local("Gilroy ExtraBold"), url("assets/fonts/Gilroy-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --yellow: #c9ff00;
  --blue: #070707;
  --orange: #c9ff00;
  --green: #ebb7f5;
  --white: #ffffff;
  --paper: #f6f6f2;
  --soft: #ffffff;
  --ink: #070707;
  --muted: #5f6266;
  --line: rgba(7, 7, 7, 0.12);
  --line-strong: rgba(7, 7, 7, 0.24);
  --shadow: 0 22px 70px rgba(7, 7, 7, 0.1);
  --shadow-strong: 0 30px 90px rgba(7, 7, 7, 0.16);
  --max: 1180px;
  --radius: 8px;
  --font-heading: "Lufga", "Avenir Next", "Montserrat", "Segoe UI", sans-serif;
  --font-body: "Gilroy", "Avenir Next", "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-padding-top: 104px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

main {
  overflow-x: hidden;
}

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

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

button {
  color: inherit;
}

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: var(--scroll-progress, 0%);
  height: 4px;
  background: var(--yellow);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 40px rgba(35, 35, 38, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.phone-link,
.nav-cta,
.btn,
.menu-toggle,
.social-row a,
.footer-social a,
.whatsapp-float,
.contact-stack a,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(92px, 7vw, 112px);
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--green);
  font-size: 13px;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 44px rgba(35, 35, 38, 0.06);
}

.desktop-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.active {
  background: var(--ink);
  color: var(--white);
}

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

.phone-link {
  gap: 8px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(35, 35, 38, 0.06);
}

.nav-cta,
.btn {
  gap: 9px;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-cta {
  padding: 12px 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
}

.btn {
  padding: 14px 16px;
}

.btn:hover,
.btn:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.phone-link:hover,
.phone-link:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(7, 7, 7, 0.22);
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(35, 35, 38, 0.08);
}

.mobile-nav {
  position: fixed;
  inset: 74px 16px auto 16px;
  z-index: 49;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.mobile-nav > a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 88vh;
  padding: 118px max(24px, calc((100vw - var(--max)) / 2)) 58px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  z-index: -4;
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(246, 246, 242, 0.98) 0%, rgba(246, 246, 242, 0.92) 46%, rgba(246, 246, 242, 0.42) 100%),
    linear-gradient(180deg, rgba(201, 255, 0, 0.36) 0%, rgba(255, 255, 255, 0.3) 42%, var(--paper) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 46px;
  align-items: center;
  min-height: calc(88vh - 176px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 68px;
  font-weight: 900;
}

h1 span {
  display: block;
}

h2 {
  font-size: 52px;
  font-weight: 900;
}

h3 {
  font-size: 26px;
  font-weight: 850;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: #4d525c;
  font-size: 20px;
}

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

.social-row,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.social-row {
  margin-top: 24px;
}

.social-row a,
.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-social svg,
.social-row svg {
  fill: currentColor;
  stroke: none;
}

.social-row a:hover,
.footer-social a:hover,
.social-row a:focus-visible,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  background: var(--blue);
  color: var(--white);
}

.hero-product {
  position: relative;
  min-height: 500px;
}

.photo-frame {
  overflow: hidden;
  border: 1px solid rgba(35, 35, 38, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  position: absolute;
  inset: 32px 28px 80px 0;
}

.product-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(430px, 92%);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.panel-topline,
.metric-grid {
  display: grid;
  gap: 10px;
}

.panel-topline span,
.metric-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.panel-topline strong {
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
}

.metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.metric-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 9px;
  min-height: 116px;
  margin-top: 22px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--yellow);
}

.mini-chart span {
  flex: 1;
  min-height: 34px;
  border-radius: 5px 5px 0 0;
  background: var(--ink);
}

.mini-chart span:nth-child(2) {
  height: 58px;
  background: var(--green);
}

.mini-chart span:nth-child(3) {
  height: 86px;
  background: var(--white);
}

.mini-chart span:nth-child(4) {
  height: 102px;
  background: var(--ink);
}

.mini-chart span:nth-child(5) {
  height: 76px;
  background: var(--green);
}

.mini-chart span:nth-child(6) {
  height: 116px;
  background: var(--ink);
}

.floating-chip {
  position: absolute;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  box-shadow: 8px 8px 0 rgba(35, 35, 38, 0.14);
  font-family: var(--font-heading);
  font-weight: 900;
  animation: floatChip 4.8s ease-in-out infinite;
}

.chip-one {
  top: 0;
  left: 28px;
  background: var(--yellow);
}

.chip-two {
  right: 24px;
  top: 40px;
  background: var(--green);
  animation-delay: -1.2s;
}

.chip-three {
  left: 58px;
  bottom: 42px;
  color: var(--white);
  background: var(--ink);
  animation-delay: -2.4s;
}

@keyframes floatChip {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  padding: 32px 24px;
  color: var(--ink);
}

.proof-item:nth-child(1) {
  background: var(--yellow);
}

.proof-item:nth-child(2) {
  background: var(--ink);
  color: var(--white);
}

.proof-item:nth-child(3) {
  background: var(--green);
}

.proof-item:nth-child(4) {
  background: var(--white);
  color: var(--ink);
}

.proof-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  font-weight: 700;
}

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

.section-heading,
.calculator-copy {
  max-width: 820px;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.65fr);
  gap: 44px;
  align-items: center;
  min-height: 560px;
  padding: 132px max(24px, calc((100vw - var(--max)) / 2)) 76px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(201, 255, 0, 0.42), rgba(255, 255, 255, 0.64)),
    var(--paper);
  isolation: isolate;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 1px;
  background: var(--line);
}

.page-hero-copy {
  max-width: 780px;
}

.page-hero-copy h1,
.quote-copy h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 0.98;
}

.page-hero-copy h1 span,
.quote-copy h1 span {
  display: block;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: #4d525c;
  font-size: 19px;
}

.page-hero-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.page-hero-card strong {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
}

.page-hero-card span {
  color: var(--muted);
}

.image-card {
  padding: 12px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 6px;
}

.image-card strong,
.image-card span {
  padding-inline: 10px;
}

.saas-intro,
.service-section,
.work-section,
.process-section,
.pricing-section {
  border-top: 1px solid var(--line);
}

.system-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.system-board article {
  min-height: 286px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.system-board article:nth-child(1) {
  background: var(--yellow);
}

.system-board article:nth-child(2) {
  background: var(--blue);
  color: var(--white);
}

.system-board article:nth-child(2) h3,
.system-board article:nth-child(2) p,
.system-board article:nth-child(2) span {
  color: var(--white);
}

.system-board article:nth-child(3) {
  background: var(--white);
}

.system-board span,
.process-step span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 900;
}

.system-board p,
.process-step p,
.service-card li,
.case-card p:not(.case-type),
.service-card p:not(.panel-kicker),
.quote-copy p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-card,
.case-card,
.calculator,
.process-step,
.quote-form,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card,
.pricing-card {
  display: grid;
  align-content: start;
  min-height: 430px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.case-card:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 103, 56, 0.5);
  box-shadow: var(--shadow-strong);
}

.service-card.featured,
.pricing-card.featured {
  background: var(--yellow);
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--yellow);
  font-family: var(--font-heading);
  font-weight: 900;
}

.panel-kicker,
.case-type {
  margin: 0 0 12px;
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-list svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--ink);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.filter-button {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
}

.filter-button.active {
  border-color: transparent;
  background: var(--ink);
  color: var(--white);
}

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

.case-card {
  display: grid;
  min-height: 468px;
  padding: 16px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.case-card.hidden {
  display: none;
}

.case-image {
  position: relative;
  min-height: 230px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.case-image img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.case-card:hover .case-image img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.03);
}

.image-results .case-card,
.results-grid .case-card {
  min-height: 520px;
}

.case-card h3 {
  font-size: 25px;
  line-height: 1.1;
}

.case-card p:not(.case-type) {
  margin: 16px 0 0;
}

.case-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  align-self: end;
}

.case-stats strong {
  padding: 9px 10px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-heading);
}

.calculator-section {
  padding: 108px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--white);
  color: var(--ink);
}

.calculator-section .eyebrow,
.calculator-section .panel-kicker {
  color: var(--ink);
}

.calculator {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  margin-top: 34px;
  padding: 26px;
}

.calculator-controls {
  display: grid;
  gap: 22px;
}

.calculator label,
.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

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

output {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
}

.calculator-results {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.calculator-results h3,
.calculator-results p,
.calculator-results span,
.calculator-results .panel-kicker {
  color: var(--white);
}

.calculator-results > strong {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 52px;
  line-height: 1;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.process-step {
  min-height: 276px;
  padding: 24px;
}

.process-step:nth-child(2) {
  background: var(--green);
}

.process-step:nth-child(3) {
  background: var(--yellow);
}

.process-step:nth-child(4) {
  background: var(--ink);
  color: var(--white);
}

.process-step:nth-child(4) h3,
.process-step:nth-child(4) p,
.process-step:nth-child(4) span {
  color: var(--white);
}

.quote-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  padding: 108px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}

.quote-section h1,
.quote-section h2,
.quote-section h3,
.quote-section .eyebrow,
.quote-copy p {
  color: var(--white);
}

.contact-page-section {
  min-height: 100vh;
  padding-top: 138px;
}

.section-actions {
  display: flex;
  margin-top: 30px;
}

.quote-cta {
  padding: 108px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}

.quote-cta-inner {
  max-width: 860px;
}

.quote-cta h2,
.quote-cta .eyebrow {
  color: var(--white);
}

.quote-cta .btn-primary {
  background: var(--yellow);
  color: var(--ink);
}

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

.pricing-card > strong {
  display: block;
  margin: 22px 0 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 1;
}

.quote-copy h2 {
  max-width: 620px;
  font-size: 54px;
}

.quote-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: 18px;
}

.contact-stack {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-stack a {
  justify-content: flex-start;
  gap: 10px;
  width: fit-content;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  color: var(--ink);
}

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

.quote-options label {
  position: relative;
  display: block;
  min-height: 70px;
  cursor: pointer;
}

.quote-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quote-options span {
  display: grid;
  height: 100%;
  min-height: 70px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--ink);
  text-align: center;
  font-weight: 850;
}

.quote-options input:checked + span {
  border-color: transparent;
  background: var(--yellow);
  color: var(--ink);
}

.quote-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
}

.quote-summary span {
  color: var(--muted);
}

.quote-summary strong {
  color: var(--ink);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  background: var(--paper);
  color: var(--ink);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(201, 255, 0, 0.42);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 58px;
  height: 58px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 7px 7px 0 rgba(35, 35, 38, 0.18);
  transition: transform 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}

.site-footer .brand-mark {
  border-color: var(--white);
}

.site-footer p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer p a {
  color: var(--yellow);
  font-weight: 850;
}

.site-footer .footer-social a {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

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

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

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

@media (max-width: 1120px) {
  .phone-link span {
    display: none;
  }

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

  .hero-product {
    min-height: 440px;
    max-width: 680px;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  h1 {
    font-size: 52px;
  }

  h2,
  .quote-copy h2 {
    font-size: 38px;
  }

  .proof-strip,
  .page-hero,
  .system-board,
  .service-grid,
  .case-grid,
  .calculator,
  .timeline,
  .pricing-grid,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 112px;
  }

  .site-header {
    min-height: 76px;
    padding: 14px max(16px, env(safe-area-inset-right)) 14px max(16px, env(safe-area-inset-left));
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 38px rgba(35, 35, 38, 0.08);
    backdrop-filter: blur(18px);
  }

  .mobile-nav {
    inset: 84px max(16px, env(safe-area-inset-right)) auto max(16px, env(safe-area-inset-left));
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 112px max(16px, env(safe-area-inset-right)) 50px max(16px, env(safe-area-inset-left));
  }

  .hero-bg {
    object-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 246, 241, 0.98) 0%, rgba(247, 246, 241, 0.9) 58%, rgba(247, 246, 241, 0.8) 100%),
      linear-gradient(90deg, rgba(255, 232, 113, 0.5), rgba(255, 255, 255, 0.72));
  }

  .hero-inner {
    min-height: auto;
  }

  h1,
  .page-hero-copy h1,
  .quote-copy h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
  }

  h2,
  .quote-copy h2 {
    max-width: 100%;
    font-size: 31px;
    line-height: 1.06;
    overflow-wrap: normal;
    word-break: normal;
  }

  h3,
  .case-card h3 {
    font-size: 22px;
  }

  .hero-copy,
  .page-hero-copy p:not(.eyebrow),
  .quote-copy p:not(.eyebrow) {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .social-row a,
  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .hero-product {
    min-height: 360px;
  }

  .hero-photo-main {
    inset: 20px 0 70px 0;
  }

  .product-panel {
    width: calc(100% - 26px);
    padding: 18px;
  }

  .floating-chip {
    width: 58px;
    height: 58px;
    font-size: 12px;
    box-shadow: 5px 5px 0 rgba(35, 35, 38, 0.12);
  }

  .chip-one {
    left: 10px;
  }

  .chip-two {
    right: 10px;
  }

  .chip-three {
    left: 24px;
    bottom: 34px;
  }

  .section {
    width: 100%;
    padding: 72px max(16px, env(safe-area-inset-right)) 72px max(16px, env(safe-area-inset-left));
  }

  .page-hero {
    width: 100%;
    max-width: 100vw;
    gap: 24px;
    padding: 128px max(16px, env(safe-area-inset-right)) 64px max(16px, env(safe-area-inset-left));
  }

  .calculator-section,
  .quote-section,
  .quote-cta {
    padding: 72px max(16px, env(safe-area-inset-right)) 72px max(16px, env(safe-area-inset-left));
  }

  .contact-page-section {
    min-height: auto;
    padding-top: 128px;
  }

  .page-hero-copy,
  .quote-copy,
  .section-heading,
  .calculator-copy,
  .quote-cta-inner {
    width: 100%;
    max-width: 100%;
  }

  .page-hero-card,
  .service-card,
  .pricing-card,
  .case-card,
  .calculator,
  .quote-form,
  .process-step,
  .system-board article {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 20px;
  }

  .image-card {
    padding: 10px;
  }

  .image-card img {
    min-height: 0;
    aspect-ratio: 1.08 / 1;
  }

  .service-icon {
    margin-bottom: 22px;
  }

  .case-image,
  .case-image img {
    min-height: 180px;
  }

  .image-results .case-card,
  .results-grid .case-card {
    min-height: auto;
  }

  .case-stats {
    align-self: start;
  }

  .quote-options {
    grid-template-columns: 1fr;
  }

  .quote-summary {
    display: grid;
  }

  .calculator-results > strong {
    font-size: 40px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px max(16px, env(safe-area-inset-right)) 30px max(16px, env(safe-area-inset-left));
  }

  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
    box-shadow: 5px 5px 0 rgba(35, 35, 38, 0.14);
  }

  .whatsapp-float svg {
    width: 23px;
    height: 23px;
  }
}

@media (max-width: 380px) {
  h1,
  .page-hero-copy h1,
  .quote-copy h1 {
    font-size: 32px;
  }

  h2,
  .quote-copy h2 {
    font-size: 28px;
  }
}

/* Editorial subpages */
.editorial-page {
  --home-lime: #c9ff00;
  --home-lavender: #ebb7f5;
  --home-blue: #4f63ff;
  --home-orange: #ff6738;
  --home-black: #070707;
  --home-white: #ffffff;
  background: var(--home-black);
}

.editorial-page .site-header {
  top: 14px;
  left: max(14px, calc((100vw - 1180px) / 2));
  right: max(14px, calc((100vw - 1180px) / 2));
  min-height: 64px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.94);
  color: var(--home-white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.editorial-page .site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(7, 7, 7, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.editorial-page .brand-mark {
  width: 44px;
  height: 44px;
  border-color: var(--home-white);
  background: var(--home-lime);
  color: var(--home-black);
  box-shadow: none;
}

.editorial-page .desktop-nav {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.editorial-page .desktop-nav a {
  color: rgba(255, 255, 255, 0.68);
}

.editorial-page .desktop-nav a:hover,
.editorial-page .desktop-nav a:focus-visible,
.editorial-page .desktop-nav a.active {
  background: var(--home-lime);
  color: var(--home-black);
}

.editorial-page .phone-link {
  min-height: 44px;
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--home-white);
  box-shadow: none;
}

.editorial-page .nav-cta {
  min-height: 44px;
  background: var(--home-white);
  color: var(--home-black);
}

.editorial-page .nav-cta:hover {
  background: var(--home-lime);
}

.editorial-page .menu-toggle {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--home-white);
  color: var(--home-black);
}

.editorial-page .mobile-nav {
  top: 88px;
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--home-black);
  color: var(--home-white);
}

.editorial-page .mobile-nav a {
  border-color: rgba(255, 255, 255, 0.12);
}

.editorial-page main {
  background: var(--home-white);
}

.editorial-page .btn-primary {
  background: var(--home-black);
  color: var(--home-white);
}

.editorial-page .btn-primary:hover {
  background: var(--home-blue);
}

.btn-light {
  background: var(--home-white);
  color: var(--home-black);
}

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

.subpage-hero {
  min-height: 760px;
  padding: 136px 24px 48px;
}

.subpage-hero-lime {
  background: var(--home-lime);
  color: var(--home-black);
}

.subpage-hero-black {
  background: var(--home-black);
  color: var(--home-white);
}

.subpage-hero-inner {
  display: grid;
  width: min(100%, 1380px);
  min-height: 576px;
  margin: 0 auto;
  grid-template-rows: auto 1fr auto;
}

.subpage-hero .editorial-kicker {
  opacity: 1;
  transform: none;
}

.subpage-hero-black .editorial-kicker {
  border-color: rgba(255, 255, 255, 0.64);
}

.subpage-hero h1 {
  align-self: center;
  max-width: none;
  margin: 40px 0;
  font-size: 126px;
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.subpage-hero h1 span {
  display: block;
  margin-left: 12%;
  font-weight: 400;
}

.subpage-hero-foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  border-top: 2px solid currentColor;
}

.subpage-hero-foot p {
  max-width: 650px;
  margin: 0;
  font-size: 21px;
  line-height: 1.4;
}

.subpage-hero-foot .btn {
  flex-shrink: 0;
}

.editorial-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--home-black);
}

.editorial-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.82));
  content: "";
}

.editorial-media img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

.editorial-media-caption {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 48px;
  left: max(24px, calc((100vw - 1180px) / 2));
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  color: var(--home-white);
}

.editorial-media-caption span {
  color: var(--home-lime);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.editorial-media-caption strong {
  max-width: 800px;
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 0.98;
  text-align: right;
}

.page-intro {
  display: grid;
  gap: 28px 70px;
  padding: 132px max(24px, calc((100vw - 1180px) / 2));
  grid-template-columns: 0.8fr 1.2fr;
  background: var(--home-white);
  color: var(--home-black);
}

.page-intro > .eyebrow {
  grid-column: 1;
}

.page-intro h2 {
  grid-column: 1 / -1;
  max-width: 1100px;
  margin: 0;
  font-size: 82px;
  line-height: 0.98;
  letter-spacing: 0;
}

.page-intro > p:last-of-type {
  max-width: 600px;
  margin: 0 0 0 auto;
  grid-column: 2;
  color: var(--muted);
  font-size: 20px;
}

.service-detail-list {
  background: var(--home-white);
  color: var(--home-black);
}

.service-detail-list article {
  display: grid;
  gap: 50px;
  min-height: 480px;
  padding: 72px max(24px, calc((100vw - 1180px) / 2));
  grid-template-columns: 80px 1.25fr 0.75fr;
  border-top: 1px solid var(--home-black);
}

.service-detail-list article:nth-child(2),
.service-detail-list article:nth-child(5) {
  background: #f6f6f2;
}

.service-detail-list article:nth-child(3) {
  background: var(--home-lavender);
}

.service-detail-list article:nth-child(4) {
  background: var(--home-lime);
}

.service-detail-list article:nth-child(6) {
  background: var(--home-black);
  color: var(--home-white);
}

.service-detail-list article:nth-child(6) h2 {
  color: var(--home-white);
}

.services-page .subpage-hero-inner {
  grid-template-rows: 1fr auto;
}

.services-page .editorial-media-caption {
  align-items: flex-start;
  flex-direction: column;
}

.services-page .editorial-media-caption strong {
  max-width: 720px;
  font-size: 48px;
  text-align: left;
}

.services-page .page-intro h2 {
  max-width: 900px;
  font-size: 62px;
  text-align: left;
}

.services-page .detail-copy h2 {
  max-width: 620px;
  font-size: 46px;
  text-align: left;
}

.services-page .black-statement h2 {
  max-width: 900px;
  font-size: 76px;
  text-align: left;
}

.services-page .editorial-steps h2 {
  font-size: 56px;
  text-align: left;
}

.results-page .editorial-media-caption {
  align-items: flex-start;
  flex-direction: column;
}

.results-page .editorial-media-caption strong {
  max-width: 760px;
  font-size: 48px;
  text-align: left;
}

.results-page .page-intro h2 {
  max-width: 900px;
  font-size: 62px;
  text-align: left;
}

.results-page .editorial-case-copy h2 {
  font-size: 46px;
  text-align: left;
}

.results-page .black-statement h2 {
  max-width: 900px;
  font-size: 76px;
  text-align: left;
}

.pricing-page .page-intro h2 {
  max-width: 900px;
  font-size: 62px;
  text-align: left;
}

.pricing-page .scope-grid h2 {
  font-size: 36px;
  text-align: left;
}

.pricing-page .pricing-factors h2,
.pricing-page .pricing-faq h2 {
  font-size: 56px;
  text-align: left;
}

.pricing-page .editorial-calculator .calculator-copy h2 {
  max-width: 820px;
  font-size: 58px;
  text-align: left;
}

.detail-number {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
}

.detail-copy h2 {
  max-width: 680px;
  margin: 0 0 24px;
  font-size: 58px;
  line-height: 0.98;
  letter-spacing: 0;
}

.detail-copy > p:last-child {
  max-width: 620px;
  margin: 0;
  font-size: 19px;
}

.service-detail-list ul {
  align-self: end;
  margin: 0;
  padding: 0;
  border-top: 1px solid currentColor;
  list-style: none;
}

.service-detail-list li {
  padding: 16px 0;
  border-bottom: 1px solid currentColor;
  font-size: 16px;
}

.service-detail-list .detail-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-detail-list .detail-action:hover,
.service-detail-list .detail-action:focus-visible {
  background: var(--home-black);
  color: var(--home-white);
  transform: translateY(-2px);
}

.black-statement {
  min-height: 760px;
  padding: 140px 24px;
  background: var(--home-black);
  color: var(--home-white);
}

.black-statement > div {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.black-statement h2 {
  max-width: 1100px;
  margin: 0;
  color: var(--home-white);
  font-size: 108px;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.black-statement h2 span {
  display: inline-block;
  padding: 0 8px 5px;
  background: var(--home-lime);
  color: var(--home-black);
}

.black-statement > div > p:last-child {
  max-width: 650px;
  margin: 52px 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
}

.editorial-steps {
  display: grid;
  gap: 70px;
  padding: 132px max(24px, calc((100vw - 1180px) / 2));
  grid-template-columns: 0.75fr 1.25fr;
  background: var(--home-white);
  color: var(--home-black);
}

.editorial-steps h2 {
  margin: 0;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: 0;
}

.editorial-steps ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--home-black);
  list-style: none;
}

.editorial-steps li {
  display: grid;
  gap: 20px;
  min-height: 170px;
  padding: 28px 0;
  grid-template-columns: 50px 0.55fr 1fr;
  align-items: start;
  border-bottom: 1px solid var(--home-black);
}

.editorial-steps li span,
.editorial-steps li strong {
  font-family: var(--font-heading);
  font-weight: 800;
}

.editorial-steps li strong {
  font-size: 28px;
}

.editorial-steps li p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.page-final-cta {
  display: grid;
  min-height: 600px;
  padding: 64px max(24px, calc((100vw - 1380px) / 2));
  grid-template-rows: auto 1fr auto;
  background: var(--home-lime);
  color: var(--home-black);
}

.page-final-cta > p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-final-cta h2 {
  align-self: center;
  margin: 40px 0;
  font-size: 150px;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-final-cta h2 span {
  display: block;
  margin-left: 12%;
  font-weight: 400;
}

.page-final-cta .btn {
  justify-self: end;
}

.results-intro-page {
  padding-bottom: 76px;
}

.results-intro-page .filter-row {
  grid-column: 1 / -1;
  margin-top: 12px;
}

.editorial-page .filter-button {
  border-color: var(--home-black);
  border-radius: 100px;
  background: var(--home-white);
  color: var(--home-black);
}

.editorial-page .filter-button.active,
.editorial-page .filter-button:hover {
  background: var(--home-black);
  color: var(--home-white);
}

.editorial-case-list {
  background: var(--home-white);
  color: var(--home-black);
}

.editorial-case-list article {
  display: grid;
  min-height: 680px;
  grid-template-columns: 1.08fr 0.92fr;
  border-top: 1px solid var(--home-black);
}

.editorial-case-list article.hidden {
  display: none;
}

.editorial-case-list article:nth-child(even) .editorial-case-image {
  order: 2;
}

.editorial-case-image {
  min-height: 680px;
  overflow: hidden;
  background: var(--home-black);
}

.editorial-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transition: transform 600ms ease, filter 600ms ease;
}

.editorial-case-list article:hover .editorial-case-image img {
  transform: scale(1.015);
  filter: saturate(1);
}

.editorial-case-copy {
  display: flex;
  padding: 64px;
  flex-direction: column;
  justify-content: center;
}

.editorial-case-copy h2 {
  margin: 0 0 24px;
  font-size: 58px;
  line-height: 0.98;
  letter-spacing: 0;
}

.editorial-case-copy > p:nth-of-type(2) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.editorial-case-metrics {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--home-black);
  border-left: 1px solid var(--home-black);
}

.editorial-case-metrics strong {
  display: flex;
  min-height: 150px;
  padding: 20px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--home-black);
  border-bottom: 1px solid var(--home-black);
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1;
}

.editorial-case-metrics span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
}

.results-metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--home-black);
  border-left: 1px solid var(--home-black);
  background: var(--home-lime);
}

.results-metric-band div {
  display: flex;
  min-height: 270px;
  padding: 28px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--home-black);
  border-bottom: 1px solid var(--home-black);
}

.results-metric-band div:nth-child(2) {
  background: var(--home-lavender);
}

.results-metric-band div:nth-child(3) {
  background: var(--home-white);
}

.results-metric-band div:nth-child(4) {
  background: var(--home-blue);
  color: var(--home-white);
}

.results-metric-band strong {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
}

.results-metric-band span {
  max-width: 180px;
}

.scope-grid {
  display: grid;
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) 132px;
  grid-template-columns: repeat(3, 1fr);
  background: var(--home-white);
  color: var(--home-black);
}

.scope-grid article {
  display: flex;
  min-height: 650px;
  padding: 32px;
  flex-direction: column;
  border: 1px solid var(--home-black);
  border-right: 0;
  background: #f6f6f2;
}

.scope-grid article:last-child {
  border-right: 1px solid var(--home-black);
}

.scope-grid .scope-featured {
  background: var(--home-lime);
}

.scope-grid h2 {
  margin: 18px 0 20px;
  font-size: 43px;
  line-height: 1;
  letter-spacing: 0;
}

.scope-grid article > p:nth-of-type(2) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.scope-grid ul {
  margin: auto 0 30px;
  padding: 30px 0 0;
  border-top: 1px solid var(--home-black);
  list-style: none;
}

.scope-grid li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(7, 7, 7, 0.24);
}

.scope-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 12px 15px;
  border: 1px solid var(--home-black);
  border-radius: 6px;
  background: var(--home-white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
}

.scope-grid a:hover {
  background: var(--home-black);
  color: var(--home-white);
}

.pricing-factors {
  display: grid;
  gap: 70px;
  padding: 132px max(24px, calc((100vw - 1180px) / 2));
  grid-template-columns: 0.75fr 1.25fr;
  background: var(--home-black);
  color: var(--home-white);
}

.pricing-factors h2 {
  margin: 0;
  color: var(--home-white);
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: 0;
}

.pricing-factors ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  list-style: none;
}

.pricing-factors li {
  display: grid;
  gap: 18px;
  min-height: 150px;
  padding: 27px 0;
  grid-template-columns: 50px 0.55fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.pricing-factors li span,
.pricing-factors li strong {
  font-family: var(--font-heading);
  font-weight: 800;
}

.pricing-factors li strong {
  font-size: 24px;
}

.pricing-factors li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.editorial-calculator {
  display: grid;
  gap: 60px;
  padding: 132px max(24px, calc((100vw - 1180px) / 2));
  background: var(--home-lime);
  color: var(--home-black);
}

.editorial-calculator .calculator-copy {
  max-width: 850px;
}

.editorial-calculator .calculator-copy h2 {
  margin: 0 0 24px;
  font-size: 76px;
  line-height: 0.98;
  letter-spacing: 0;
}

.editorial-calculator .calculator-copy > p:last-child {
  max-width: 600px;
  margin: 0;
  font-size: 19px;
}

.editorial-calculator .calculator {
  border-color: var(--home-black);
  background: var(--home-white);
  box-shadow: none;
}

.editorial-calculator .calculator-results {
  background: var(--home-black);
  color: var(--home-white);
}

.editorial-calculator .calculator-results .btn {
  background: var(--home-lime);
  color: var(--home-black);
}

.pricing-faq {
  display: grid;
  gap: 80px;
  padding: 132px max(24px, calc((100vw - 1180px) / 2));
  grid-template-columns: 0.8fr 1.2fr;
  background: var(--home-white);
  color: var(--home-black);
}

.pricing-faq h2 {
  margin: 0;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: 0;
}

.pricing-faq h2 span {
  display: inline-block;
  background: var(--home-lime);
}

.pricing-faq .faq-list {
  border-color: var(--home-black);
}

.pricing-faq .faq-list details {
  border-color: var(--home-black);
}

.pricing-faq .faq-list summary {
  color: var(--home-black);
}

.pricing-faq .faq-list summary::after {
  border-color: var(--home-black);
}

.pricing-faq .faq-list p {
  color: var(--muted);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--home-white);
  color: var(--home-black);
}

.contact-methods a {
  display: grid;
  min-height: 230px;
  padding: 28px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  border-right: 1px solid var(--home-black);
  border-bottom: 1px solid var(--home-black);
  transition: background 180ms ease;
}

.contact-methods a:hover {
  background: var(--home-lime);
}

.contact-methods span {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-methods strong {
  align-self: end;
  font-family: var(--font-heading);
  font-size: 28px;
  overflow-wrap: anywhere;
}

.contact-methods svg {
  grid-row: span 2;
}

.editorial-contact {
  display: grid;
  gap: 70px;
  padding: 132px max(24px, calc((100vw - 1180px) / 2));
  grid-template-columns: 0.78fr 1.22fr;
  background: var(--home-black);
  color: var(--home-white);
}

.contact-brief h2 {
  margin: 0 0 28px;
  color: var(--home-white);
  font-size: 68px;
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-brief > p:nth-of-type(2) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
}

.contact-assurance {
  display: grid;
  margin-top: 54px;
  grid-template-columns: 38px 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-assurance span,
.contact-assurance p {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-assurance span {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
}

.contact-assurance p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-assurance strong {
  display: block;
  margin-bottom: 4px;
  color: var(--home-white);
  font-family: var(--font-heading);
}

.editorial-quote-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: var(--home-white);
  color: var(--home-black);
  box-shadow: none;
}

.editorial-quote-form .form-intro {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
}

.editorial-quote-form .quote-options {
  margin-bottom: 22px;
}

.editorial-quote-form .quote-options label {
  border-color: var(--home-black);
  background: #f6f6f2;
}

.editorial-quote-form .quote-summary {
  border-color: var(--home-black);
  background: var(--home-lime);
  color: var(--home-black);
}

.form-two-col {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.contact-next {
  background: var(--home-white);
  color: var(--home-black);
}

.contact-page .editorial-contact {
  padding-top: 150px;
}

.contact-page .contact-brief h2 {
  max-width: 540px;
  font-size: 52px;
  text-align: left;
}

.contact-page .editorial-steps h2 {
  font-size: 52px;
  text-align: left;
}

.editorial-page .whatsapp-float {
  border: 1px solid var(--home-black);
  background: var(--home-lime);
  color: var(--home-black);
  box-shadow: 6px 6px 0 var(--home-black);
}

.editorial-page .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--home-black);
  color: var(--home-white);
}

.editorial-page .site-footer p,
.editorial-page .site-footer p a {
  color: rgba(255, 255, 255, 0.68);
}

.editorial-page .footer-social a {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--home-white);
}

.editorial-page .footer-social a:hover {
  background: var(--home-lime);
  color: var(--home-black);
}

@media (max-width: 1120px) {
  .subpage-hero h1 {
    font-size: 100px;
  }

  .page-final-cta h2 {
    font-size: 118px;
  }
}

@media (max-width: 980px) {
  .editorial-page .site-header {
    left: 14px;
    right: 14px;
  }

  .editorial-page .brand {
    color: var(--home-white);
  }

  .subpage-hero h1 {
    font-size: 78px;
  }

  .editorial-media-caption strong,
  .page-intro h2,
  .black-statement h2 {
    font-size: 64px;
  }

  .service-detail-list article {
    grid-template-columns: 60px 1fr;
  }

  .service-detail-list ul {
    grid-column: 2;
  }

  .editorial-steps,
  .pricing-factors,
  .pricing-faq,
  .editorial-contact {
    grid-template-columns: 1fr;
  }

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

  .scope-grid article {
    min-height: auto;
    border-right: 1px solid var(--home-black);
    border-bottom: 0;
  }

  .scope-grid article:last-child {
    border-bottom: 1px solid var(--home-black);
  }

  .scope-grid ul {
    margin-top: 40px;
  }

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

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-methods a {
    min-height: 160px;
  }
}

@media (max-width: 680px) {
  .editorial-page .site-header {
    top: 8px;
    min-height: 64px;
    padding: 8px;
    background: rgba(7, 7, 7, 0.96);
  }

  .editorial-page .brand {
    font-size: 15px;
  }

  .editorial-page .brand-mark {
    width: 42px;
    height: 42px;
  }

  .editorial-page .mobile-nav {
    inset: 80px 14px auto;
  }

  .services-page .editorial-media-caption strong {
    font-size: 32px;
  }

  .services-page .page-intro h2 {
    font-size: 39px;
  }

  .services-page .detail-copy h2 {
    font-size: 34px;
  }

  .services-page .black-statement h2 {
    font-size: 43px;
  }

  .services-page .editorial-steps h2 {
    font-size: 40px;
  }

  .results-page .editorial-media-caption strong {
    font-size: 32px;
  }

  .results-page .page-intro h2 {
    font-size: 39px;
  }

  .results-page .editorial-case-copy h2 {
    font-size: 34px;
  }

  .results-page .black-statement h2 {
    font-size: 43px;
  }

  .pricing-page .page-intro h2 {
    font-size: 39px;
  }

  .pricing-page .scope-grid h2 {
    font-size: 31px;
  }

  .pricing-page .pricing-factors h2,
  .pricing-page .pricing-faq h2 {
    font-size: 40px;
  }

  .pricing-page .editorial-calculator .calculator-copy h2 {
    font-size: 40px;
  }

  .subpage-hero {
    min-height: 720px;
    padding: 106px 16px 30px;
  }

  .subpage-hero-inner {
    min-height: 584px;
  }

  .subpage-hero h1 {
    margin: 30px 0;
    font-size: 50px;
    line-height: 0.94;
  }

  .subpage-hero h1 span {
    margin-left: 0;
  }

  .subpage-hero-foot {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
    padding-top: 20px;
  }

  .subpage-hero-foot p {
    font-size: 17px;
  }

  .subpage-hero-foot .btn {
    width: 100%;
  }

  .editorial-media,
  .editorial-media img {
    min-height: 560px;
    height: 560px;
  }

  .editorial-media-caption {
    right: 16px;
    bottom: 28px;
    left: 16px;
    align-items: start;
    flex-direction: column;
  }

  .editorial-media-caption strong {
    font-size: 39px;
    text-align: left;
  }

  .page-intro {
    gap: 22px;
    padding: 86px 16px;
    grid-template-columns: 1fr;
  }

  .page-intro > .eyebrow,
  .page-intro h2,
  .page-intro > p:last-of-type,
  .results-intro-page .filter-row {
    grid-column: 1;
  }

  .page-intro h2 {
    font-size: 47px;
  }

  .page-intro > p:last-of-type {
    margin: 0;
    font-size: 17px;
  }

  .service-detail-list article {
    gap: 24px;
    min-height: auto;
    padding: 62px 16px;
    grid-template-columns: 1fr;
  }

  .service-detail-list ul {
    grid-column: 1;
  }

  .detail-copy h2 {
    font-size: 40px;
  }

  .detail-copy > p:last-child {
    font-size: 17px;
  }

  .black-statement {
    min-height: auto;
    padding: 96px 16px;
  }

  .black-statement h2 {
    font-size: 50px;
  }

  .black-statement > div > p:last-child {
    margin-top: 36px;
    font-size: 18px;
  }

  .editorial-steps,
  .pricing-factors,
  .pricing-faq,
  .editorial-contact {
    gap: 44px;
    padding: 86px 16px;
  }

  .editorial-steps h2,
  .pricing-factors h2,
  .pricing-faq h2,
  .contact-brief h2 {
    font-size: 48px;
  }

  .editorial-steps li,
  .pricing-factors li {
    gap: 12px;
    min-height: auto;
    grid-template-columns: 36px 1fr;
  }

  .editorial-steps li p,
  .pricing-factors li p {
    grid-column: 2;
  }

  .page-final-cta {
    min-height: 520px;
    padding: 48px 16px;
  }

  .page-final-cta h2 {
    font-size: 70px;
  }

  .page-final-cta h2 span {
    margin-left: 0;
  }

  .page-final-cta .btn {
    width: 100%;
    justify-self: stretch;
  }

  .editorial-case-list article {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .editorial-case-list article:nth-child(even) .editorial-case-image {
    order: 0;
  }

  .editorial-case-image {
    min-height: 440px;
  }

  .editorial-case-copy {
    padding: 48px 16px 62px;
  }

  .editorial-case-copy h2 {
    font-size: 40px;
  }

  .editorial-case-metrics {
    margin-top: 32px;
  }

  .editorial-case-metrics strong {
    min-height: 126px;
    padding: 14px;
    font-size: 35px;
  }

  .results-metric-band div {
    min-height: 180px;
    padding: 16px;
  }

  .results-metric-band strong {
    font-size: 43px;
  }

  .results-metric-band span {
    font-size: 13px;
  }

  .scope-grid {
    padding: 0 16px 86px;
  }

  .scope-grid article {
    padding: 24px;
  }

  .scope-grid h2 {
    font-size: 36px;
  }

  .editorial-calculator {
    gap: 42px;
    padding: 86px 16px;
  }

  .editorial-calculator .calculator-copy h2 {
    font-size: 47px;
  }

  .editorial-calculator .calculator {
    padding: 18px;
  }

  .contact-methods a {
    min-height: 140px;
    padding: 20px 16px;
  }

  .contact-methods strong {
    font-size: 22px;
  }

  .editorial-quote-form {
    padding: 20px;
  }

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

  .contact-page .editorial-contact {
    padding-top: 112px;
  }

  .contact-page .contact-brief h2,
  .contact-page .editorial-steps h2 {
    font-size: 38px;
  }
}

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

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

/* Editorial homepage */
.home-page {
  --home-lime: #c9ff00;
  --home-lavender: #ebb7f5;
  --home-blue: #4f63ff;
  --home-orange: #ff6738;
  --home-black: #070707;
  --home-white: #ffffff;
  background: var(--home-black);
}

.home-page .progress-bar {
  z-index: 110;
}

.home-page .site-header {
  top: 14px;
  left: max(14px, calc((100vw - 1180px) / 2));
  right: max(14px, calc((100vw - 1180px) / 2));
  min-height: 64px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.94);
  color: var(--home-white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.home-page .site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(7, 7, 7, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.home-page .brand-mark {
  width: 44px;
  height: 44px;
  border-color: var(--home-white);
  background: var(--home-lime);
  color: var(--home-black);
  box-shadow: none;
}

.home-page .desktop-nav {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .desktop-nav a {
  color: rgba(255, 255, 255, 0.68);
}

.home-page .desktop-nav a:hover,
.home-page .desktop-nav a:focus-visible,
.home-page .desktop-nav a.active {
  background: var(--home-lime);
  color: var(--home-black);
}

.home-page .phone-link {
  min-height: 44px;
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--home-white);
  box-shadow: none;
}

.home-page .nav-cta {
  min-height: 44px;
  background: var(--home-white);
  color: var(--home-black);
}

.home-page .nav-cta:hover {
  background: var(--home-lime);
}

.home-page .menu-toggle {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--home-white);
  color: var(--home-black);
}

.home-page .mobile-nav {
  top: 88px;
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--home-black);
  color: var(--home-white);
}

.home-page .mobile-nav a {
  border-color: rgba(255, 255, 255, 0.12);
}

.home-page main {
  background: var(--home-white);
}

.editorial-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 116px 24px 0;
  background: var(--home-white);
  color: var(--home-black);
}

.editorial-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--home-lime);
  content: "";
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 900ms 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.concept-f-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1440px);
  min-height: calc(100svh - 234px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: stretch;
  border: 1px solid var(--home-black);
  background: var(--home-white);
}

.editorial-kicker,
.eyebrow {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.editorial-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid var(--home-black);
  border-radius: 100px;
  transition: opacity 600ms 120ms ease, transform 600ms 120ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 600ms 100ms ease, transform 600ms 100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.concept-f-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(32px, 5vw, 78px);
  border-right: 1px solid var(--home-black);
  transition: opacity 800ms 220ms ease, transform 800ms 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.concept-f-copy h1 {
  max-width: 660px;
  margin: 22px 0 24px;
  font-size: clamp(58px, 5vw, 82px);
  font-weight: 900;
  line-height: 0.91;
  text-transform: uppercase;
}

.concept-f-copy h1 span {
  display: block;
  color: var(--home-lime);
  -webkit-text-stroke: 2px var(--home-black);
}

.concept-f-lede {
  max-width: 520px;
  margin: 0 0 30px;
  font-size: 20px;
  line-height: 1.4;
}

.concept-f-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 2px;
  border-bottom: 3px solid var(--home-lime);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
}

.concept-f-text-link:hover {
  border-color: var(--home-black);
}

.concept-f-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 520px;
  margin: 34px 0 0;
  font-size: 14px;
  font-weight: 800;
}

.concept-f-trust span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-lime);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
}

.concept-f-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: var(--home-black);
  transition: opacity 900ms 360ms ease, transform 900ms 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.concept-f-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 7, 7, 0.76));
  content: "";
}

.concept-f-visual img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.concept-f-visual:hover img {
  transform: scale(1.015);
}

.concept-f-visual-tag {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--home-white);
}

.concept-f-visual-tag span {
  color: var(--home-lime);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.concept-f-visual-tag strong {
  max-width: 390px;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.05;
  text-align: right;
}

.home-page .hero-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.home-page .hero-actions .btn {
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-page .hero-actions .btn:hover {
  transform: translateY(-4px);
}

.concept-f-proof {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1440px);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(210px, 0.9fr);
  border-right: 1px solid var(--home-black);
  border-bottom: 1px solid var(--home-black);
  border-left: 1px solid var(--home-black);
  background: var(--home-black);
  color: var(--home-white);
  transition: opacity 700ms 700ms ease, transform 700ms 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.concept-f-proof article,
.concept-f-proof a {
  display: flex;
  min-height: 106px;
  justify-content: center;
  flex-direction: column;
  padding: 20px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.concept-f-proof strong {
  color: var(--home-lime);
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
}

.concept-f-proof span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.concept-f-proof a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  border-right: 0;
  background: var(--home-lime);
  color: var(--home-black);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  transition: background 180ms ease;
}

.concept-f-proof a:hover {
  background: var(--home-lavender);
}

.editorial-hero.hero-motion::after {
  transform: scaleX(0);
}

.editorial-hero.hero-motion .editorial-kicker {
  opacity: 0;
  transform: translateY(-18px);
}

.editorial-hero.hero-motion .concept-f-copy {
  opacity: 0;
  transform: translateX(-44px);
}

.editorial-hero.hero-motion .concept-f-visual {
  opacity: 0;
  transform: translateX(44px);
}

.editorial-hero.hero-motion .concept-f-proof {
  opacity: 0;
  transform: translateY(24px);
}

.editorial-hero.hero-motion-ready::after {
  transform: scaleX(1);
}

.editorial-hero.hero-motion-ready .editorial-kicker,
.editorial-hero.hero-motion-ready .concept-f-copy,
.editorial-hero.hero-motion-ready .concept-f-visual,
.editorial-hero.hero-motion-ready .concept-f-proof {
  opacity: 1;
  transform: translate(0);
}

.home-page .btn-primary {
  background: var(--home-black);
  color: var(--home-white);
}

.home-page .btn-primary:hover {
  background: var(--home-blue);
}

.home-page .btn-secondary {
  border: 1px solid var(--home-black);
  background: transparent;
  color: var(--home-black);
}

.home-page .btn-secondary:hover {
  background: var(--home-white);
}

.issues-section {
  position: relative;
  overflow: hidden;
  padding: 128px 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 255, 0, 0.18), transparent 24%),
    radial-gradient(circle at 88% 88%, rgba(235, 183, 245, 0.22), transparent 25%),
    linear-gradient(180deg, var(--home-white) 0%, #f7f8f2 100%);
  color: var(--home-black);
}

.issues-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(7, 7, 7, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 7, 7, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 80%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 80%, transparent);
  content: "";
  pointer-events: none;
}

.issues-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.issues-section h2,
.editorial-section-head h2,
.process-sticky h2,
.results-intro h2,
.faq-section h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 86px;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
}

.marker-word {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

.marker-word::after {
  position: absolute;
  right: -4px;
  bottom: 7px;
  left: -4px;
  z-index: -1;
  height: 16px;
  background: var(--home-lime);
  content: "";
  transform: rotate(-1.5deg);
}

.issues-description {
  max-width: 720px;
  margin: 28px 0 0;
  color: #4f5359;
  font-size: 20px;
  line-height: 1.45;
}

.issue-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 54px 0 28px;
}

.issue-tab {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--home-black);
  border-radius: 100px;
  background: var(--home-white);
  color: var(--home-black);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.issue-tab:hover,
.issue-tab.active {
  background: var(--home-black);
  color: var(--home-white);
  box-shadow: 0 10px 26px rgba(7, 7, 7, 0.12);
  transform: translateY(-2px);
}

.issue-cloud {
  display: none;
  min-height: 300px;
  align-content: center;
  padding: 44px;
  border: 1px solid rgba(7, 7, 7, 0.16);
  border-radius: 8px;
  background: rgba(246, 246, 242, 0.88);
  box-shadow: 0 24px 70px rgba(7, 7, 7, 0.08);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.issue-cloud.active {
  display: grid;
}

.issue-cloud span {
  display: inline-flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 18px;
  border: 1px solid rgba(7, 7, 7, 0.18);
  border-radius: 100px;
  background: var(--home-lime);
  color: var(--home-black);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.issue-cloud span:hover {
  box-shadow: 0 16px 34px rgba(7, 7, 7, 0.13);
  transform: translateY(-4px);
}

.issue-cloud svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  animation: issueIconFloat 4s ease-in-out infinite;
  transform-origin: center;
}

.issue-cloud span:nth-child(2),
.issue-cloud span:nth-child(6) {
  background: var(--home-lavender);
}

.issue-cloud span:nth-child(3) {
  background: var(--home-blue);
  color: var(--home-white);
}

.issue-cloud span:nth-child(5) {
  background: var(--home-orange);
}

.issue-cloud span:nth-child(2) svg {
  animation-delay: -0.7s;
}

.issue-cloud span:nth-child(3) svg {
  animation-delay: -1.4s;
}

.issue-cloud span:nth-child(4) svg {
  animation-delay: -2.1s;
}

.issue-cloud span:nth-child(5) svg {
  animation-delay: -2.8s;
}

.issue-cloud span:nth-child(6) svg {
  animation-delay: -3.5s;
}

@keyframes issueIconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-4px) rotate(-3deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .issue-cloud svg {
    animation: none;
  }
}

.system-statement {
  min-height: 820px;
  padding: 140px 24px;
  background: var(--home-black);
  color: var(--home-white);
}

.system-statement-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.system-statement h2 {
  max-width: 1120px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 112px;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.system-statement h2 span {
  display: inline-block;
  padding: 0 10px 5px;
  color: var(--home-black);
  background: var(--home-lime);
}

.system-statement h2 span:nth-child(2) {
  background: var(--home-lavender);
}

.system-statement h2 span:nth-child(3) {
  background: var(--home-white);
}

.system-statement-inner > p:last-child {
  max-width: 620px;
  margin: 56px 0 0 auto;
  font-size: 24px;
  line-height: 1.4;
}

.immersive-work {
  background: var(--home-black);
  color: var(--home-white);
}

.immersive-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 126px 24px 62px;
}

.immersive-heading h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 82px;
  line-height: 0.98;
  letter-spacing: 0;
}

.immersive-case {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.immersive-case img {
  width: 100%;
  height: 760px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transition: filter 500ms ease, transform 700ms ease;
}

.immersive-case::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.04) 70%);
  content: "";
}

.immersive-case:hover img {
  filter: grayscale(0) contrast(1.03);
  transform: scale(1.015);
}

.immersive-copy {
  position: absolute;
  bottom: 64px;
  left: max(24px, calc((100vw - 1180px) / 2));
  z-index: 2;
  max-width: 790px;
}

.immersive-copy > span {
  display: inline-block;
  margin-bottom: 22px;
  padding: 9px 13px;
  border: 1px solid var(--home-black);
  border-radius: 100px;
  background: var(--home-lime);
  color: var(--home-black);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.immersive-case-black .immersive-copy > span {
  background: var(--home-lavender);
}

.immersive-case-lavender .immersive-copy > span {
  background: var(--home-white);
}

.immersive-copy h3 {
  margin: 0;
  color: var(--home-white);
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.immersive-copy .case-stats {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}

.immersive-copy .case-stats strong {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 16px;
}

.editorial-services {
  position: relative;
  overflow: hidden;
  padding: 132px 24px;
  background:
    linear-gradient(135deg, rgba(201, 255, 0, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f8f2 100%);
  color: var(--home-black);
}

.editorial-services::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(7, 7, 7, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 7, 7, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
  content: "";
  pointer-events: none;
}

.editorial-section-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  width: min(100%, 1240px);
  margin: 0 auto 68px;
}

.editorial-section-head > p {
  max-width: 500px;
  margin: 0;
  color: #42464d;
  font-size: 20px;
  line-height: 1.45;
}

.service-tiles {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1240px);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-tile {
  position: relative;
  display: flex;
  min-height: 410px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border: 1px solid rgba(7, 7, 7, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 246, 242, 0.94)),
    #ffffff;
  color: var(--home-black);
  box-shadow: 0 18px 42px rgba(7, 7, 7, 0.06);
  isolation: isolate;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.service-tile::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background:
    linear-gradient(135deg, rgba(201, 255, 0, 0.5), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(135deg, rgba(7, 7, 7, 0.08) 0 1px, transparent 1px 12px);
  clip-path: polygon(24% 0, 100% 0, 100% 76%);
  content: "";
  opacity: 0.75;
  pointer-events: none;
}

.service-tile:hover {
  border-color: rgba(7, 7, 7, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(246, 246, 242, 1)),
    #ffffff;
  box-shadow: 0 28px 74px rgba(7, 7, 7, 0.13);
  transform: translateY(-8px);
}

.service-tile-top {
  display: flex;
  position: relative;
  z-index: 1;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.service-number {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(7, 7, 7, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #5b5f65;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
}

.service-visual {
  position: relative;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(7, 7, 7, 0.18);
  border-radius: 8px;
  background: var(--home-lime);
  box-shadow: 10px 12px 0 rgba(7, 7, 7, 0.1);
  transform: rotate(2deg);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.service-visual::before,
.service-visual i {
  position: absolute;
  border: 1px solid rgba(7, 7, 7, 0.16);
  border-radius: 8px;
  content: "";
}

.service-visual::before {
  inset: 10px -10px -10px 10px;
  z-index: -2;
  background: rgba(255, 255, 255, 0.72);
}

.service-visual i {
  right: 9px;
  bottom: 9px;
  width: 16px;
  height: 16px;
  background: var(--home-black);
}

.service-visual svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-tile:hover .service-visual {
  box-shadow: 14px 16px 0 rgba(7, 7, 7, 0.14);
  transform: translateY(-3px) rotate(-2deg);
}

.service-visual-blue {
  background: var(--home-blue);
  color: var(--home-white);
}

.service-visual-black {
  background: var(--home-black);
  color: var(--home-white);
}

.service-visual-orange {
  background: var(--home-orange);
  color: var(--home-black);
}

.service-visual-lavender {
  background: var(--home-lavender);
  color: var(--home-black);
}

.service-visual-green {
  background: #7bd08e;
  color: var(--home-black);
}

.service-tile h3 {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: auto 0 14px;
  color: var(--home-black);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-align: left;
}

.service-tile p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 0 28px;
  color: #4f5359;
  font-size: 16px;
  line-height: 1.45;
}

.service-tile-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding: 10px 13px 10px 16px;
  border: 1px solid rgba(7, 7, 7, 0.14);
  border-radius: 6px;
  background: var(--home-black);
  color: var(--home-white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-tile-action:hover {
  background: var(--home-lime);
  color: var(--home-black);
  transform: translateY(-2px);
}

.service-tile-action svg {
  width: 18px;
  height: 18px;
}

.editorial-process {
  position: relative;
  display: grid;
  gap: 68px;
  padding: 128px max(24px, calc((100vw - 1240px) / 2));
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 255, 0, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f6f2 100%);
  color: var(--home-black);
}

.editorial-process::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 7, 7, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 7, 7, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  content: "";
  pointer-events: none;
}

.process-sticky {
  position: sticky;
  top: 116px;
  z-index: 1;
  align-self: start;
}

.process-sticky h2 {
  color: var(--home-black);
  line-height: 0.96;
}

.process-intro {
  max-width: 430px;
  margin: 26px 0 0;
  color: #4f5359;
  font-size: 20px;
  line-height: 1.45;
}

.process-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 0;
}

.process-list::before {
  display: none;
}

.process-list article {
  --step-accent: var(--home-lime);
  --step-ink: var(--home-black);
  position: relative;
  display: grid;
  gap: 32px 20px;
  min-height: 270px;
  padding: 24px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(7, 7, 7, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 242, 0.94)),
    var(--home-white);
  box-shadow: 0 18px 46px rgba(7, 7, 7, 0.06);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.process-list article:nth-child(2) {
  --step-accent: var(--home-blue);
  --step-ink: var(--home-white);
}

.process-list article:nth-child(3) {
  --step-accent: var(--home-orange);
  --step-ink: var(--home-black);
}

.process-list article:nth-child(4) {
  --step-accent: #7bd08e;
  --step-ink: var(--home-black);
}

.process-list article::after {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--step-accent), transparent);
  content: "";
  opacity: 0.72;
  transition: opacity 220ms ease, transform 220ms ease;
}

.process-list article:hover {
  border-color: rgba(7, 7, 7, 0.28);
  box-shadow: 0 30px 82px rgba(7, 7, 7, 0.13);
  transform: translateY(-6px);
}

.process-list article:hover::after {
  opacity: 1;
  transform: scaleX(1.02);
}

.process-number {
  display: inline-flex;
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  width: fit-content;
  min-height: 34px;
  padding: 7px 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 7, 7, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #5b5f65;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
}

.process-icon {
  display: grid;
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(7, 7, 7, 0.16);
  border-radius: 8px;
  background: var(--step-accent);
  color: var(--step-ink);
  box-shadow: 8px 10px 0 rgba(7, 7, 7, 0.1);
}

.process-list article > div {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
}

.process-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-list h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: var(--home-black);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.process-list p {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin: 0;
  color: #4f5359;
  font-size: 16px;
  line-height: 1.45;
}

.results-wall {
  display: grid;
  gap: 60px;
  padding: 132px max(24px, calc((100vw - 1180px) / 2));
  grid-template-columns: 0.8fr 1.2fr;
  background: var(--home-lime);
  color: var(--home-black);
}

.results-intro .btn {
  margin-top: 36px;
}

.metric-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--home-black);
  border-left: 1px solid var(--home-black);
}

.metric-wall article {
  display: flex;
  min-height: 220px;
  padding: 25px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--home-black);
  border-bottom: 1px solid var(--home-black);
  background: rgba(255, 255, 255, 0.15);
}

.metric-wall article:nth-child(2),
.metric-wall article:nth-child(5) {
  background: var(--home-white);
}

.metric-wall article:nth-child(3) {
  background: var(--home-lavender);
}

.metric-wall article:nth-child(4) {
  background: var(--home-blue);
  color: var(--home-white);
}

.metric-wall strong {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0;
}

.metric-wall span {
  max-width: 190px;
  font-size: 16px;
}

.faq-section {
  padding: 132px 24px;
  background: var(--home-black);
  color: var(--home-white);
}

.faq-section h2 {
  color: var(--home-white);
}

.faq-inner {
  display: grid;
  gap: 80px;
  width: min(100%, 1180px);
  margin: 0 auto;
  grid-template-columns: 0.8fr 1.2fr;
}

.marker-lime::after {
  background: var(--home-lime);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.faq-list summary {
  position: relative;
  padding: 26px 50px 26px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  content: "+";
}

.faq-list details[open] summary::after {
  background: var(--home-lime);
  color: var(--home-black);
  content: "−";
}

.faq-list p {
  max-width: 650px;
  margin: 0;
  padding: 0 50px 28px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.giant-cta {
  padding: 96px 24px;
  background: var(--home-white);
  color: var(--home-black);
}

.giant-cta-inner {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 1400px);
  min-height: 500px;
  margin: 0 auto;
  padding: 54px;
  border: 2px solid var(--home-black);
  background: var(--home-lime);
}

.giant-cta-inner p {
  align-self: start;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.giant-cta-inner h2 {
  position: absolute;
  left: 50%;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 190px;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.giant-cta-inner h2 span {
  display: block;
  font-weight: 400;
}

.giant-cta-inner .btn {
  position: relative;
  z-index: 1;
}

.home-page .whatsapp-float {
  border: 1px solid var(--home-black);
  background: var(--home-lime);
  color: var(--home-black);
  box-shadow: 6px 6px 0 var(--home-black);
}

.home-page .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--home-black);
  color: var(--home-white);
}

.home-page .site-footer p,
.home-page .site-footer p a {
  color: rgba(255, 255, 255, 0.68);
}

.home-page .footer-social a {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--home-white);
}

.home-page .footer-social a:hover {
  background: var(--home-lime);
  color: var(--home-black);
}

@media (max-width: 1180px) {
  .concept-f-copy {
    padding: 40px;
  }

  .giant-cta-inner h2 {
    font-size: 148px;
  }
}

@media (max-width: 1380px) and (min-width: 1181px) {
  .concept-f-copy h1 {
    font-size: 68px;
  }
}

@media (max-width: 980px) {
  .home-page .site-header {
    left: 14px;
    right: 14px;
  }

  .home-page .brand {
    color: var(--home-white);
  }

  .concept-f-shell {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .concept-f-copy {
    min-height: 520px;
    border-right: 0;
    border-bottom: 1px solid var(--home-black);
  }

  .concept-f-copy h1 {
    font-size: 66px;
  }

  .concept-f-visual,
  .concept-f-visual img {
    min-height: 520px;
    height: 520px;
  }

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

  .immersive-heading h2 {
    font-size: 56px;
  }

  .issues-section h2,
  .editorial-section-head h2,
  .process-sticky h2,
  .results-intro h2,
  .faq-section h2 {
    font-size: 64px;
  }

  .system-statement h2 {
    font-size: 82px;
  }

  .immersive-copy h3 {
    font-size: 58px;
  }

  .editorial-process,
  .results-wall,
  .faq-inner {
    grid-template-columns: 1fr;
  }

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

  .process-sticky {
    position: static;
  }

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

  .giant-cta-inner {
    align-items: end;
    min-height: 440px;
    padding: 36px;
  }

  .giant-cta-inner h2 {
    font-size: 104px;
  }
}

@media (max-width: 680px) {
  .home-page .site-header {
    top: 8px;
    min-height: 64px;
    padding: 8px;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(7, 7, 7, 0.96);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
  }

  .home-page .brand {
    font-size: 15px;
  }

  .home-page .brand-mark {
    width: 42px;
    height: 42px;
  }

  .home-page .mobile-nav {
    inset: 80px 14px auto;
  }

  .editorial-hero {
    min-height: auto;
    padding: 96px 14px 0;
  }

  .concept-f-copy {
    min-height: auto;
    padding: 28px 20px 30px;
  }

  .editorial-kicker {
    margin-bottom: 20px;
    font-size: 11px;
  }

  .concept-f-copy h1 {
    margin: 18px 0;
    font-size: 46px;
    line-height: 0.94;
  }

  .concept-f-copy h1 span {
    -webkit-text-stroke: 1px var(--home-black);
  }

  .concept-f-lede {
    margin-bottom: 22px;
    font-size: 17px;
  }

  .concept-f-trust {
    margin-top: 24px;
    font-size: 13px;
  }

  .home-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .concept-f-text-link {
    width: fit-content;
  }

  .concept-f-visual,
  .concept-f-visual img {
    min-height: 360px;
    height: 360px;
  }

  .concept-f-visual img {
    object-position: center;
  }

  .concept-f-visual-tag {
    right: 16px;
    bottom: 16px;
    left: 16px;
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .concept-f-visual-tag strong {
    max-width: 300px;
    font-size: 20px;
    text-align: left;
  }

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

  .concept-f-proof article,
  .concept-f-proof a {
    min-height: 92px;
    padding: 16px;
  }

  .concept-f-proof article:nth-child(2) {
    border-right: 0;
  }

  .concept-f-proof a {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .concept-f-proof strong {
    font-size: 27px;
  }

  .issues-section,
  .editorial-services,
  .faq-section {
    padding: 86px 16px;
  }

  .issues-section h2,
  .editorial-section-head h2,
  .process-sticky h2,
  .results-intro h2,
  .faq-section h2 {
    font-size: 48px;
  }

  .marker-word::after {
    bottom: 4px;
    height: 10px;
  }

  .issue-tabs {
    gap: 6px;
    margin: 34px 0 20px;
  }

  .issues-description {
    margin-top: 20px;
    font-size: 16px;
  }

  .issue-tab {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .issue-cloud {
    min-height: auto;
    padding: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .issue-cloud span {
    min-height: 66px;
    gap: 6px;
    padding: 10px;
    font-size: 13px;
  }

  .issue-cloud svg {
    width: 15px;
    height: 15px;
  }

  .system-statement {
    min-height: auto;
    padding: 96px 16px;
  }

  .system-statement h2 {
    font-size: 54px;
  }

  .system-statement h2 span {
    padding: 0 5px 3px;
  }

  .system-statement-inner > p:last-child {
    margin-top: 36px;
    font-size: 18px;
  }

  .immersive-heading {
    padding: 84px 16px 42px;
  }

  .immersive-heading h2 {
    font-size: 47px;
  }

  .immersive-case,
  .immersive-case img {
    min-height: 610px;
    height: 610px;
  }

  .immersive-case::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 20%, rgba(0, 0, 0, 0.88));
  }

  .immersive-copy {
    right: 16px;
    bottom: 30px;
    left: 16px;
  }

  .immersive-copy h3 {
    font-size: 43px;
  }

  .immersive-copy .case-stats {
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .editorial-section-head {
    align-items: start;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 40px;
  }

  .editorial-section-head > p {
    font-size: 17px;
  }

  .service-tiles {
    grid-template-columns: 1fr;
  }

  .service-tile {
    min-height: 330px;
    padding: 20px;
  }

  .service-visual {
    width: 72px;
    height: 72px;
    box-shadow: 8px 10px 0 rgba(7, 7, 7, 0.1);
  }

  .service-visual svg {
    width: 28px;
    height: 28px;
  }

  .service-tile h3 {
    max-width: 100%;
    font-size: 30px;
  }

  .service-tile p {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .service-tile-action {
    width: 100%;
    justify-content: space-between;
  }

  .editorial-process,
  .results-wall {
    gap: 50px;
    padding: 86px 16px;
  }

  .process-intro {
    max-width: 100%;
    font-size: 17px;
  }

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

  .process-list article {
    gap: 26px 16px;
    min-height: 205px;
    padding: 20px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    align-items: start;
  }

  .process-number {
    grid-column: 1;
    grid-row: 1;
    width: fit-content;
    height: auto;
    min-height: 32px;
    padding: 6px 11px;
  }

  .process-icon {
    grid-column: 2;
    grid-row: 1;
    width: 50px;
    height: 50px;
    box-shadow: 6px 8px 0 rgba(7, 7, 7, 0.1);
  }

  .process-icon svg {
    width: 21px;
    height: 21px;
  }

  .process-list article > div {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: start;
  }

  .process-list h3 {
    font-size: 28px;
  }

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

  .metric-wall article {
    min-height: 170px;
    padding: 16px;
  }

  .metric-wall strong {
    font-size: 42px;
  }

  .metric-wall span {
    font-size: 13px;
  }

  .faq-inner {
    gap: 42px;
  }

  .faq-list summary {
    padding: 22px 46px 22px 0;
    font-size: 17px;
  }

  .faq-list summary::after {
    top: 18px;
  }

  .giant-cta {
    padding: 48px 16px;
  }

  .giant-cta-inner {
    position: relative;
    display: grid;
    min-height: 440px;
    padding: 24px;
    grid-template-rows: auto 1fr auto;
  }

  .giant-cta-inner h2 {
    position: static;
    align-self: center;
    font-size: 72px;
    transform: none;
  }

  .giant-cta-inner .btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .editorial-title {
    font-size: 45px;
  }

  .system-statement h2 {
    font-size: 47px;
  }

  .immersive-copy h3 {
    font-size: 38px;
  }

  .giant-cta-inner h2 {
    font-size: 62px;
  }
}

/* Balanced homepage typography */
.home-page .editorial-title {
  font-size: 84px;
  text-align: left;
}

.home-page .editorial-title .title-mid,
.home-page .editorial-title .title-light {
  align-self: start;
}

.home-page .issues-section h2,
.home-page .editorial-section-head h2,
.home-page .process-sticky h2,
.home-page .results-intro h2,
.home-page .faq-section h2 {
  font-size: 62px;
  text-align: left;
}

.home-page .system-statement h2 {
  max-width: 940px;
  font-size: 76px;
  text-align: left;
}

.home-page .immersive-heading h2 {
  max-width: 720px;
  font-size: 60px;
  text-align: left;
}

.home-page .immersive-copy h3 {
  max-width: 690px;
  font-size: 50px;
  text-align: left;
}

.home-page .service-tile h3 {
  font-size: 34px;
}

.home-page .process-list h3 {
  font-size: 32px;
  text-align: left;
}

.home-page .giant-cta-inner h2 {
  left: 54px;
  max-width: 760px;
  font-size: 108px;
  text-align: left;
  transform: none;
}

@media (max-width: 980px) {
  .home-page .editorial-title {
    font-size: 66px;
  }

  .home-page .giant-cta-inner h2 {
    left: 36px;
    font-size: 82px;
  }
}

@media (max-width: 680px) {
  .home-page .editorial-title {
    font-size: 42px;
  }

  .home-page .issues-section h2,
  .home-page .editorial-section-head h2,
  .home-page .process-sticky h2,
  .home-page .results-intro h2,
  .home-page .faq-section h2 {
    font-size: 38px;
  }

  .home-page .system-statement h2 {
    font-size: 43px;
  }

  .home-page .immersive-heading h2 {
    font-size: 39px;
  }

  .home-page .immersive-copy h3 {
    font-size: 34px;
  }

  .home-page .service-tile h3 {
    font-size: 27px;
  }

  .home-page .process-list h3 {
    font-size: 28px;
  }

  .home-page .giant-cta-inner h2 {
    max-width: 100%;
    font-size: 58px;
  }
}

@media (max-width: 380px) {
  .home-page .editorial-title {
    font-size: 38px;
  }

  .home-page .system-statement h2 {
    font-size: 39px;
  }

  .home-page .immersive-copy h3 {
    font-size: 31px;
  }

  .home-page .giant-cta-inner h2 {
    font-size: 52px;
  }

  .issue-cloud {
    grid-template-columns: 1fr;
  }
}

/* Device showcase homepage hero */
.device-hero {
  min-height: auto;
  padding: 104px 24px 36px;
  background: var(--home-white);
  color: var(--home-black);
}

.device-hero::after {
  background: var(--home-black);
}

.device-hero-box {
  position: relative;
  width: min(100%, 1440px);
  min-height: calc(100svh - 140px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(7, 7, 7, 0.16);
  border-radius: 8px;
  background: var(--home-lime);
}

.device-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: calc(100svh - 248px);
  margin: 0;
  grid-template-columns: minmax(520px, 0.9fr) minmax(520px, 1.1fr);
  align-items: stretch;
}

.device-hero-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  padding: clamp(42px, 7vh, 78px) 16px 44px clamp(28px, 3vw, 48px);
  transition: opacity 800ms 180ms ease, transform 800ms 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.device-hero-copy .editorial-kicker {
  margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.22);
}

.device-hero-copy h1 {
  max-width: 590px;
  margin: 0 0 24px;
  font-size: clamp(66px, 6.2vw, 88px);
  font-weight: 900;
  line-height: 0.84;
  text-transform: uppercase;
}

.device-hero-copy h1 span {
  display: block;
}

.device-hero-lede {
  width: 100%;
  max-width: 510px;
  margin: 0 0 30px;
  font-size: 21px;
  line-height: 1.35;
}

.device-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 2px;
  border-bottom: 3px solid var(--home-black);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  transition: border-color 180ms ease, transform 180ms ease;
}

.device-hero-link:hover {
  border-color: var(--home-white);
  transform: translateY(-3px);
}

.device-hero-visual {
  position: relative;
  display: flex;
  height: auto;
  min-height: calc(100svh - 248px);
  align-items: flex-end;
  justify-content: flex-end;
  margin-left: 0;
  overflow: hidden;
  transition: opacity 900ms 320ms ease, transform 900ms 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.device-hero-visual::before {
  display: none;
}

.device-hero-visual img {
  width: min(108%, 860px);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(1.04) contrast(1.02);
}

.device-hero-services {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--home-black);
  background: rgba(201, 255, 0, 0.82);
  transition: opacity 700ms 640ms ease, transform 700ms 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.device-hero-services article {
  display: grid;
  min-height: 96px;
  padding: 15px 28px;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--home-black);
}

.device-hero-services article:last-child {
  border-right: 0;
}

.device-hero-services svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.7;
}

.device-hero-services strong,
.device-hero-services span {
  display: block;
}

.device-hero-services strong {
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.1;
}

.device-hero-services span {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.3;
}

.editorial-hero.hero-motion .device-hero-copy {
  opacity: 0;
  transform: translateX(-42px);
}

.editorial-hero.hero-motion .device-hero-visual {
  opacity: 0;
  transform: translateX(42px);
}

.editorial-hero.hero-motion .device-hero-services {
  opacity: 0;
  transform: translateY(22px);
}

.editorial-hero.hero-motion.hero-motion-ready .device-hero-copy,
.editorial-hero.hero-motion.hero-motion-ready .device-hero-visual,
.editorial-hero.hero-motion.hero-motion-ready .device-hero-services {
  opacity: 1;
  transform: translate(0);
}

.editorial-hero.device-hero.hero-motion .device-hero-copy,
.editorial-hero.device-hero.hero-motion .device-hero-visual,
.editorial-hero.device-hero.hero-motion .device-hero-services {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .device-hero-inner {
    grid-template-columns: minmax(430px, 0.9fr) minmax(460px, 1.1fr);
  }

  .device-hero-copy h1 {
    font-size: 72px;
  }

  .device-hero-services article {
    padding: 16px 20px;
  }
}

@media (max-width: 980px) {
  .device-hero-box {
    min-height: 0;
  }

  .device-hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .device-hero-copy {
    min-height: 520px;
    padding: 40px 20px 44px;
  }

  .device-hero-copy h1 {
    font-size: 70px;
  }

  .device-hero-visual {
    min-height: 520px;
    margin-left: 0;
  }

  .device-hero-visual img {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .device-hero {
    min-height: auto;
    padding: 88px 12px 28px;
  }

  .device-hero-box {
    border-radius: 8px;
  }

  .device-hero-copy {
    min-height: auto;
    padding: 30px 2px 34px;
  }

  .device-hero-copy .editorial-kicker {
    max-width: 100%;
    margin-bottom: 22px;
    padding: 7px 10px;
    font-size: 9px;
  }

  .device-hero-copy h1 {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: 46px;
    line-height: 0.88;
  }

  .device-hero-lede {
    width: 330px;
    max-width: calc(100vw - 32px);
    margin-bottom: 22px;
    font-size: 17px;
  }

  .device-hero-link {
    width: fit-content;
  }

  .device-hero-visual {
    min-height: 300px;
  }

  .device-hero-visual img {
    width: 100%;
    object-position: center bottom;
  }

  .device-hero-visual::before {
    display: none;
  }

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

  .device-hero-services article {
    display: flex;
    min-height: 104px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 14px 6px;
    text-align: center;
  }

  .device-hero-services svg {
    width: 29px;
    height: 29px;
  }

  .device-hero-services strong {
    font-size: 12px;
  }

  .device-hero-services span {
    display: none;
  }
}

@media (max-width: 380px) {
  .device-hero-copy h1 {
    font-size: 42px;
  }

  .device-hero-visual {
    min-height: 290px;
  }
}

/* Conversion operating system homepage hero */
.conversion-hero {
  min-height: auto;
  padding: 104px 0 0;
  background: linear-gradient(90deg, var(--home-black) 0 50%, var(--home-white) 50% 100%);
  color: var(--home-white);
}

.conversion-hero::after {
  background: var(--home-black);
}

.conversion-hero-box {
  position: relative;
  display: grid;
  width: 100%;
  min-height: calc(100svh - 104px);
  margin: 0;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border: 0;
  border-radius: 0;
  background: transparent;
}

.conversion-hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(68px, 9vh, 112px) clamp(30px, 4vw, 64px) 70px max(32px, calc((100vw - 1320px) / 2 + 32px));
  transition: opacity 800ms 180ms ease, transform 800ms 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.conversion-hero-copy .editorial-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 26px;
  padding: 9px 22px;
  border: 2px solid var(--home-lime);
  border-radius: 999px;
  color: var(--home-lime);
  background: transparent;
  font-size: 14px;
  line-height: 1;
}

.conversion-hero-copy h1 {
  max-width: 620px;
  margin: 0 0 26px;
  color: var(--home-white);
  font-size: clamp(62px, 6vw, 94px);
  font-weight: 900;
  line-height: 0.9;
}

.conversion-hero-copy h1 span {
  display: block;
  color: var(--home-lime);
}

.conversion-hero-copy h1 .conversion-title-line {
  color: var(--home-white);
}

.conversion-hero-lede {
  width: min(100%, 540px);
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 21px;
  line-height: 1.32;
}

.conversion-hero .hero-actions {
  margin-top: 32px;
  gap: 18px;
}

.conversion-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 10px 2px;
  border-bottom: 3px solid var(--home-lime);
  color: var(--home-lime);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.conversion-hero-link:hover {
  border-color: var(--home-white);
  color: var(--home-white);
  transform: translateY(-3px);
}

.conversion-hero-visual {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - 104px);
  overflow: visible;
  isolation: isolate;
  padding: clamp(72px, 10vh, 118px) max(18px, calc((100vw - 1320px) / 2 + 18px)) 58px clamp(18px, 3vw, 46px);
  color: var(--home-black);
  background:
    radial-gradient(circle at 72% 45%, rgba(201, 255, 0, 0.28), transparent 31%),
    radial-gradient(circle at 32% 82%, rgba(235, 183, 245, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(246, 246, 242, 0.96));
  transition: opacity 900ms 300ms ease, transform 900ms 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.conversion-hero-visual::before {
  position: absolute;
  inset: 12% 2% 4% 6%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 255, 0, 0.2), transparent 62%);
  content: "";
  filter: blur(16px);
  pointer-events: none;
}

.conversion-hero-visual::after {
  position: absolute;
  right: clamp(12px, 5vw, 86px);
  bottom: clamp(42px, 8vh, 104px);
  z-index: 0;
  width: min(78%, 760px);
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(7, 7, 7, 0.2), rgba(7, 7, 7, 0.06) 48%, transparent 72%);
  content: "";
  filter: blur(15px);
  opacity: 0.82;
  pointer-events: none;
}

.conversion-device-mockup {
  position: relative;
  z-index: 3;
  width: min(125%, 940px);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(7, 7, 7, 0.2)) drop-shadow(0 58px 60px rgba(7, 7, 7, 0.14));
  transform: translateX(-4%) translateY(2%);
}

.conversion-browser {
  position: absolute;
  top: clamp(126px, 19vh, 184px);
  right: max(30px, calc((100vw - 1320px) / 2 + 30px));
  width: min(88%, 620px);
  min-height: 360px;
  padding: 30px;
  border: 8px solid var(--home-black);
  border-radius: 34px;
  background: var(--home-white);
  box-shadow: 0 42px 92px rgba(7, 7, 7, 0.16);
  transform: rotate(-2deg);
}

.conversion-browser-dots {
  display: flex;
  gap: 9px;
  margin-bottom: 30px;
}

.conversion-browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--home-black);
}

.conversion-browser-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 24px;
  align-items: stretch;
}

.conversion-browser h2 {
  max-width: 340px;
  color: var(--home-black);
  font-size: clamp(42px, 3.4vw, 56px);
  line-height: 0.94;
}

.conversion-browser p {
  max-width: 360px;
  margin-top: 18px;
  color: #565656;
  font-size: 17px;
  line-height: 1.35;
}

.conversion-graph {
  display: grid;
  align-items: end;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  min-height: 220px;
  padding: 18px;
  border-radius: 22px;
  background: var(--home-black);
}

.conversion-graph span {
  border-radius: 999px 999px 0 0;
  background: var(--home-lime);
  box-shadow: 0 0 24px rgba(201, 255, 0, 0.28);
}

.conversion-graph span:nth-child(1) {
  height: 42%;
}

.conversion-graph span:nth-child(2) {
  height: 58%;
}

.conversion-graph span:nth-child(3) {
  height: 48%;
}

.conversion-graph span:nth-child(4) {
  height: 76%;
}

.conversion-graph span:nth-child(5) {
  height: 92%;
}

.conversion-phone {
  position: absolute;
  right: max(32px, calc((100vw - 1320px) / 2 + 68px));
  bottom: clamp(32px, 6vh, 74px);
  width: 214px;
  min-height: 396px;
  padding: 20px 14px;
  border: 8px solid var(--home-black);
  border-radius: 38px;
  background: var(--home-white);
  box-shadow: 0 44px 84px rgba(7, 7, 7, 0.22);
}

.conversion-phone-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 72px;
  height: 16px;
  border-radius: 999px;
  background: var(--home-black);
  transform: translateX(-50%);
}

.conversion-ad-card {
  margin-top: 42px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--home-lime);
}

.conversion-ad-card img {
  width: 100%;
  height: 154px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
}

.conversion-ad-card strong {
  display: block;
  padding: 16px;
  color: var(--home-black);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  line-height: 0.96;
}

.conversion-proof {
  position: absolute;
  left: max(24px, calc((100vw - 1320px) / 2 + 36px));
  bottom: clamp(96px, 16vh, 164px);
  z-index: 2;
  width: 242px;
  padding: 22px;
  border-radius: 24px;
  background: var(--home-lime);
  color: var(--home-black);
  box-shadow: 0 30px 80px rgba(7, 7, 7, 0.18);
}

.conversion-proof span,
.conversion-proof small {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.conversion-proof strong {
  display: block;
  margin: 5px 0 4px;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  line-height: 0.95;
}

.editorial-hero.hero-motion .conversion-hero-copy {
  opacity: 0;
  transform: translateX(-34px);
}

.editorial-hero.hero-motion .conversion-hero-visual {
  opacity: 0;
  transform: translateX(34px);
}

.editorial-hero.hero-motion.hero-motion-ready .conversion-hero-copy,
.editorial-hero.hero-motion.hero-motion-ready .conversion-hero-visual {
  opacity: 1;
  transform: translate(0);
}

@media (max-width: 1180px) {
  .conversion-hero-box {
    grid-template-columns: minmax(380px, 0.9fr) minmax(500px, 1.1fr);
  }

  .conversion-hero-copy {
    padding-left: 40px;
  }

  .conversion-hero-copy h1 {
    font-size: 70px;
  }

  .conversion-browser {
    right: 28px;
    width: min(90%, 560px);
  }

  .conversion-device-mockup {
    width: min(126%, 820px);
    transform: translateX(-5%) translateY(2%);
  }

  .conversion-phone {
    right: 44px;
  }
}

@media (max-width: 980px) {
  .conversion-hero-box {
    min-height: 0;
    grid-template-columns: 1fr;
    background: var(--home-black);
  }

  .conversion-hero-copy {
    min-height: 520px;
    padding: 54px 28px 44px;
  }

  .conversion-hero-copy h1 {
    max-width: 760px;
    font-size: 68px;
  }

  .conversion-hero-visual {
    min-height: 620px;
    padding: 44px 24px 34px;
  }

  .conversion-device-mockup {
    width: min(104%, 900px);
    transform: none;
  }
}

@media (max-width: 680px) {
  .conversion-hero {
    padding: 88px 0 0;
    background: var(--home-black);
  }

  .conversion-hero-box {
    border-radius: 0;
  }

  .conversion-hero-copy {
    min-height: auto;
    padding: 30px 18px 34px;
  }

  .editorial-hero.hero-motion .conversion-hero-copy,
  .editorial-hero.hero-motion.hero-motion-ready .conversion-hero-copy {
    transform: none;
  }

  .conversion-hero-copy .editorial-kicker {
    margin-bottom: 22px;
    padding: 8px 12px;
    font-size: 10px;
  }

  .conversion-hero-copy h1 {
    max-width: 390px;
    margin-bottom: 18px;
    font-size: clamp(40px, 11.4vw, 50px);
    line-height: 0.9;
  }

  .conversion-hero-copy h1 .conversion-title-line {
    max-width: 320px;
  }

  .conversion-hero-lede {
    font-size: 17px;
  }

  .conversion-hero .hero-actions {
    width: 100%;
    gap: 12px;
  }

  .conversion-hero .btn,
  .conversion-hero-link {
    width: 100%;
    justify-content: center;
  }

  .conversion-hero-visual {
    min-height: 430px;
    padding: 18px 14px 24px;
  }

  .editorial-hero.hero-motion .conversion-hero-visual,
  .editorial-hero.hero-motion.hero-motion-ready .conversion-hero-visual {
    transform: none;
  }

  .conversion-device-mockup {
    width: min(100%, 620px);
    max-width: calc(100vw - 28px);
    margin-inline: auto;
    transform: none;
    filter: drop-shadow(0 22px 24px rgba(7, 7, 7, 0.18)) drop-shadow(0 44px 52px rgba(7, 7, 7, 0.12));
  }

  .conversion-hero-visual::after {
    right: 8%;
    bottom: 48px;
    width: 82%;
    height: 14%;
  }
}

@media (max-width: 380px) {
  .conversion-hero-copy h1 {
    font-size: 39px;
  }

  .conversion-hero-visual {
    min-height: 390px;
  }
}

/* Compact connected-team banner */
.home-page .system-statement {
  min-height: auto;
  padding: 46px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--home-black);
  color: var(--home-white);
}

.home-page .system-statement-inner {
  display: grid;
  width: min(100%, 1180px);
  margin: 0 auto;
  grid-template-columns: minmax(160px, 0.38fr) minmax(360px, 1fr) minmax(260px, 0.62fr);
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
}

.home-page .system-statement .eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  margin: 0;
  padding: 8px 16px;
  border: 1px solid var(--home-lime);
  border-radius: 999px;
  color: var(--home-lime);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.home-page .system-statement h2 {
  max-width: 690px;
  margin: 0;
  color: var(--home-white);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.02;
  text-align: left;
}

.home-page .system-statement h2 span {
  display: inline;
  padding: 0;
  color: inherit;
  background: transparent;
}

.home-page .system-statement-inner > p:last-child {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.45;
}

.home-page .immersive-heading {
  padding-top: 42px;
}

@media (max-width: 980px) {
  .home-page .system-statement {
    padding: 38px 24px;
  }

  .home-page .system-statement-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-page .system-statement h2 {
    max-width: 720px;
  }

  .home-page .system-statement-inner > p:last-child {
    max-width: 640px;
  }

  .home-page .immersive-heading {
    padding-top: 38px;
  }
}

@media (max-width: 680px) {
  .home-page .system-statement {
    padding: 34px 18px;
  }

  .home-page .system-statement h2 {
    max-width: 340px;
    font-size: clamp(28px, 7.6vw, 32px);
    line-height: 1.04;
  }

  .home-page .system-statement-inner > p:last-child {
    font-size: 15.5px;
  }

  .home-page .immersive-heading {
    display: grid;
    gap: 16px;
    padding-top: 34px;
  }
}

/* Softer, cleaner typography pass */
:root {
  --heading-ink-soft: #202124;
  --heading-on-dark-soft: rgba(255, 255, 255, 0.92);
}

.conversion-hero-copy h1,
.concept-f-copy h1,
.device-hero-copy h1,
.subpage-hero h1,
.page-hero-copy h1,
.quote-copy h1,
.page-final-cta h2,
.giant-cta-inner h2 {
  font-weight: 800;
}

.issues-section h2,
.editorial-section-head h2,
.process-sticky h2,
.results-intro h2,
.faq-section h2,
.system-statement h2,
.home-page .system-statement h2,
.immersive-heading h2,
.black-statement h2,
.detail-copy h2,
.editorial-steps h2,
.pricing-factors h2,
.pricing-faq h2,
.contact-brief h2,
.editorial-case-copy h2,
.scope-grid h2,
.editorial-calculator .calculator-copy h2,
.page-intro h2,
.service-tile h3,
.process-list h3,
.case-card h3,
.scope-card h3,
.contact-methods strong {
  font-weight: 700;
}

.issues-section h2,
.editorial-section-head h2,
.process-sticky h2,
.results-intro h2,
.faq-section h2,
.detail-copy h2,
.editorial-steps h2,
.pricing-factors h2,
.pricing-faq h2,
.contact-brief h2,
.editorial-case-copy h2,
.scope-grid h2,
.editorial-calculator .calculator-copy h2,
.page-intro h2,
.service-tile h3,
.process-list h3,
.case-card h3,
.scope-card h3 {
  color: var(--heading-ink-soft);
}

.conversion-hero-copy h1,
.conversion-hero-copy h1 .conversion-title-line,
.subpage-hero-black h1,
.black-statement h2,
.immersive-heading h2,
.immersive-copy h3,
.giant-cta-inner h2,
.page-final-cta h2,
.home-page .system-statement h2 {
  color: var(--heading-on-dark-soft);
}

.conversion-hero-copy h1 {
  max-width: 590px;
  font-size: clamp(52px, 5.2vw, 80px);
  line-height: 0.94;
}

.home-page .issues-section h2,
.home-page .editorial-section-head h2,
.home-page .process-sticky h2,
.home-page .results-intro h2,
.home-page .faq-section h2 {
  font-size: 54px;
  line-height: 1.03;
}

.home-page .system-statement h2 {
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1.08;
}

.home-page .immersive-heading h2 {
  font-size: 54px;
  line-height: 1.04;
}

.home-page .immersive-copy h3 {
  font-size: 44px;
  line-height: 1.02;
}

.home-page .service-tile h3 {
  font-size: 30px;
  line-height: 1.06;
}

.home-page .process-list h3 {
  font-size: 28px;
  line-height: 1.08;
}

.home-page .giant-cta-inner h2 {
  font-size: 92px;
  line-height: 0.98;
}

.subpage-hero h1 {
  font-size: clamp(56px, 6.5vw, 94px);
  line-height: 0.98;
}

.page-hero-copy h1,
.quote-copy h1 {
  font-size: clamp(42px, 4.8vw, 56px);
  line-height: 1;
}

.page-intro h2,
.services-page .page-intro h2,
.results-page .page-intro h2,
.pricing-page .page-intro h2 {
  font-size: 54px;
  line-height: 1.04;
}

.detail-copy h2,
.services-page .detail-copy h2,
.editorial-case-copy h2,
.results-page .editorial-case-copy h2 {
  font-size: 42px;
  line-height: 1.08;
}

.black-statement h2,
.services-page .black-statement h2,
.results-page .black-statement h2 {
  font-size: 66px;
  line-height: 1.02;
}

.editorial-steps h2,
.services-page .editorial-steps h2,
.pricing-factors h2,
.pricing-faq h2,
.contact-brief h2,
.contact-page .contact-brief h2,
.contact-page .editorial-steps h2 {
  font-size: 50px;
  line-height: 1.05;
}

.scope-grid h2,
.pricing-page .scope-grid h2 {
  font-size: 32px;
  line-height: 1.08;
}

.editorial-calculator .calculator-copy h2,
.pricing-page .editorial-calculator .calculator-copy h2 {
  font-size: 52px;
  line-height: 1.04;
}

.page-final-cta h2 {
  font-size: 112px;
  line-height: 0.98;
}

@media (max-width: 1180px) {
  .conversion-hero-copy h1 {
    font-size: 62px;
  }

  .subpage-hero h1 {
    font-size: 78px;
  }
}

@media (max-width: 980px) {
  .conversion-hero-copy h1 {
    font-size: 58px;
  }

  .home-page .giant-cta-inner h2 {
    font-size: 76px;
  }
}

@media (max-width: 680px) {
  .conversion-hero-copy h1 {
    font-size: clamp(36px, 10vw, 44px);
    line-height: 0.96;
  }

  .home-page .issues-section h2,
  .home-page .editorial-section-head h2,
  .home-page .process-sticky h2,
  .home-page .results-intro h2,
  .home-page .faq-section h2 {
    font-size: 34px;
  }

  .home-page .system-statement h2 {
    font-size: clamp(26px, 7vw, 30px);
  }

  .home-page .immersive-heading h2,
  .home-page .immersive-copy h3 {
    font-size: 34px;
  }

  .home-page .service-tile h3,
  .home-page .process-list h3 {
    font-size: 26px;
  }

  .home-page .giant-cta-inner h2 {
    font-size: 54px;
  }

  .subpage-hero h1 {
    font-size: 46px;
  }

  .page-intro h2,
  .services-page .page-intro h2,
  .results-page .page-intro h2,
  .pricing-page .page-intro h2,
  .detail-copy h2,
  .services-page .detail-copy h2,
  .editorial-case-copy h2,
  .results-page .editorial-case-copy h2,
  .black-statement h2,
  .services-page .black-statement h2,
  .results-page .black-statement h2,
  .editorial-steps h2,
  .services-page .editorial-steps h2,
  .pricing-factors h2,
  .pricing-faq h2,
  .contact-brief h2,
  .contact-page .contact-brief h2,
  .contact-page .editorial-steps h2,
  .editorial-calculator .calculator-copy h2,
  .pricing-page .editorial-calculator .calculator-copy h2 {
    font-size: 36px;
  }

  .page-final-cta h2 {
    font-size: 62px;
  }
}

/* Section label contrast polish */
.eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid rgba(7, 7, 7, 0.16);
  border-radius: 999px;
  background: var(--home-black, var(--ink));
  color: var(--home-lime, var(--yellow));
  box-shadow: 0 12px 30px rgba(7, 7, 7, 0.08);
  line-height: 1;
  white-space: nowrap;
}

.system-statement .eyebrow,
.home-page .system-statement .eyebrow,
.results-wall .eyebrow,
.faq-section .eyebrow,
.black-statement .eyebrow,
.pricing-factors .eyebrow,
.editorial-contact .eyebrow,
.service-detail-list article:nth-child(6) .eyebrow {
  border-color: rgba(201, 255, 0, 0.72);
  background: rgba(201, 255, 0, 0.12);
  color: var(--home-lime);
  box-shadow: none;
}

.page-intro > .eyebrow,
.issues-section .eyebrow,
.detail-copy .eyebrow,
.editorial-case-copy .eyebrow,
.scope-grid .eyebrow,
.pricing-faq .eyebrow,
.editorial-steps .eyebrow,
.editorial-calculator .eyebrow {
  background: var(--home-black);
  color: var(--home-lime);
}

@media (max-width: 680px) {
  .eyebrow {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 11px;
  }
}

/* Final requested color and contact polish */
.home-page .faq-section h2,
.home-page .faq-section h2 .marker-word {
  color: var(--home-white);
}

.home-page .giant-cta-inner h2,
.home-page .giant-cta-inner h2 span {
  color: var(--home-black);
}

.pricing-page .pricing-factors h2 {
  color: #c9ff00;
}

.contact-page .editorial-contact {
  background: var(--home-white);
  color: var(--home-black);
}

.contact-page .contact-brief h2 {
  color: var(--home-black);
}

.contact-page .contact-brief > p:nth-of-type(2),
.contact-page .contact-assurance p {
  color: rgba(7, 7, 7, 0.68);
}

.contact-page .contact-assurance,
.contact-page .contact-assurance span,
.contact-page .contact-assurance p {
  border-color: rgba(7, 7, 7, 0.2);
}

.contact-page .contact-assurance strong {
  color: var(--home-black);
}

.contact-page .editorial-quote-form {
  border-color: rgba(201, 255, 0, 0.28);
  background: var(--home-black);
  color: var(--home-white);
}

.contact-page .editorial-quote-form .form-intro,
.contact-page .editorial-quote-form label {
  color: var(--home-white);
}

.contact-page .editorial-quote-form .quote-options span {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--home-white);
}

.contact-page .editorial-quote-form .quote-options input:checked + span {
  background: var(--home-lime);
  color: var(--home-black);
}

.contact-page .editorial-quote-form input,
.contact-page .editorial-quote-form select,
.contact-page .editorial-quote-form textarea {
  border-color: rgba(255, 255, 255, 0.22);
  background: var(--home-white);
  color: var(--home-black);
}

.contact-page .editorial-quote-form .form-status {
  color: var(--home-lime);
}

.contact-page .contact-brief {
  align-self: stretch;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(201, 255, 0, 0.3);
  border-radius: var(--radius);
  background: var(--home-black);
  color: var(--home-white);
}

.contact-page .contact-brief h2 {
  color: var(--home-white);
}

.contact-page .contact-brief > p:nth-of-type(2),
.contact-page .contact-brief .contact-assurance p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-page .contact-brief .contact-assurance,
.contact-page .contact-brief .contact-assurance span,
.contact-page .contact-brief .contact-assurance p {
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-page .contact-brief .contact-assurance strong {
  color: var(--home-white);
}

.contact-page .contact-clean-form {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(7, 7, 7, 0.12);
  border-radius: 18px;
  background: var(--home-white);
  color: var(--home-black);
  box-shadow: 0 28px 80px rgba(7, 7, 7, 0.1);
}

.contact-page .contact-clean-form .form-intro,
.contact-page .contact-clean-form label {
  color: var(--home-black);
}

.contact-page .contact-clean-form .form-intro {
  margin-bottom: 24px;
  font-size: 22px;
}

.contact-page .contact-clean-form input,
.contact-page .contact-clean-form select,
.contact-page .contact-clean-form textarea {
  min-height: 56px;
  padding: 15px 16px;
  border: 1px solid rgba(7, 7, 7, 0.16);
  border-radius: 14px;
  background: #fbfbf8;
  color: var(--home-black);
}

.contact-page .contact-clean-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-page .contact-clean-form input:focus,
.contact-page .contact-clean-form select:focus,
.contact-page .contact-clean-form textarea:focus {
  border-color: var(--home-black);
  background: var(--home-white);
  box-shadow: 0 0 0 4px rgba(201, 255, 0, 0.36);
}

.contact-page .contact-clean-form .btn-primary {
  min-height: 58px;
  border: 1px solid var(--home-black);
  border-radius: 14px;
  background: var(--home-black);
  color: var(--home-white);
  box-shadow: 0 10px 0 rgba(201, 255, 0, 0.55);
}

.contact-page .contact-clean-form .btn-primary:hover,
.contact-page .contact-clean-form .btn-primary:focus-visible {
  background: var(--home-lime);
  color: var(--home-black);
  box-shadow: 0 8px 0 rgba(7, 7, 7, 0.16);
}

.contact-page .contact-clean-form .form-status {
  color: var(--home-black);
}

.site-footer .brand-logo {
  width: clamp(110px, 9vw, 144px);
}

/* Designade-inspired contact page */
.designade-contact {
  display: grid;
  gap: clamp(38px, 6vw, 82px);
  padding: clamp(128px, 13vw, 176px) max(22px, calc((100vw - 1180px) / 2)) 108px;
  background:
    radial-gradient(circle at 88% 12%, rgba(201, 255, 0, 0.2), transparent 24%),
    linear-gradient(180deg, #ffffff, #f7f7f2);
  color: var(--home-black);
}

.designade-contact-hero {
  display: grid;
  gap: 24px;
  max-width: 1080px;
}

.designade-contact-hero .eyebrow {
  background: var(--home-black);
  color: var(--home-lime);
}

.designade-contact-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--home-black);
  font-family: var(--font-heading);
  font-size: clamp(46px, 5.8vw, 82px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.designade-contact-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(7, 7, 7, 0.68);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
}

.designade-contact-form {
  display: grid;
  gap: 34px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(7, 7, 7, 0.12);
  border-radius: 28px;
  background: var(--home-white);
  color: var(--home-black);
  box-shadow: 0 34px 100px rgba(7, 7, 7, 0.1);
}

.contact-form-block {
  display: grid;
  gap: 22px;
  min-width: 0;
  margin: 0;
  padding: 0 0 34px;
  border: 0;
  border-bottom: 1px solid rgba(7, 7, 7, 0.12);
}

.contact-form-block:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-form-block legend {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0 0 20px;
  padding: 0;
  color: var(--home-black);
  font-family: var(--font-heading);
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.12;
}

.contact-form-block legend span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--home-black);
  border-radius: 50%;
  background: var(--home-lime);
  color: var(--home-black);
  font-size: 13px;
}

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

.contact-chip-grid label {
  position: relative;
  display: block;
}

.contact-chip-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-chip-grid span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 1px solid rgba(7, 7, 7, 0.18);
  border-radius: 999px;
  background: #f6f6f2;
  color: var(--home-black);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-chip-grid input:checked + span,
.contact-chip-grid label:hover span {
  border-color: var(--home-black);
  background: var(--home-lime);
  box-shadow: 0 8px 0 rgba(7, 7, 7, 0.1);
  transform: translateY(-2px);
}

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

.designade-contact-form label {
  display: grid;
  gap: 9px;
  color: var(--home-black);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.designade-contact-form input,
.designade-contact-form select,
.designade-contact-form textarea {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid rgba(7, 7, 7, 0.16);
  border-radius: 18px;
  outline: 0;
  background: #fbfbf8;
  color: var(--home-black);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  text-transform: none;
}

.designade-contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.designade-contact-form input:focus,
.designade-contact-form select:focus,
.designade-contact-form textarea:focus {
  border-color: var(--home-black);
  background: var(--home-white);
  box-shadow: 0 0 0 4px rgba(201, 255, 0, 0.38);
}

.designade-form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 4px;
}

.designade-form-submit p {
  max-width: 420px;
  margin: 0;
  color: rgba(7, 7, 7, 0.62);
  font-size: 16px;
}

.designade-contact-form .btn-primary {
  min-width: 210px;
  min-height: 60px;
  border: 1px solid var(--home-black);
  border-radius: 999px;
  background: var(--home-black);
  color: var(--home-white);
  box-shadow: 0 10px 0 rgba(201, 255, 0, 0.56);
}

.designade-contact-form .btn-primary:hover,
.designade-contact-form .btn-primary:focus-visible {
  background: var(--home-lime);
  color: var(--home-black);
  box-shadow: 0 8px 0 rgba(7, 7, 7, 0.16);
}

.designade-contact-form .form-status {
  color: var(--home-black);
}

.contact-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--home-black);
  color: var(--home-white);
}

.contact-snapshot a {
  display: grid;
  gap: 22px;
  min-height: 190px;
  padding: 28px max(22px, calc((100vw - 1180px) / 2 / 3));
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-snapshot a:last-child {
  border-right: 0;
}

.contact-snapshot span {
  color: var(--home-lime);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-snapshot strong {
  align-self: end;
  color: var(--home-white);
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1;
  overflow-wrap: anywhere;
}

@media (max-width: 860px) {
  .contact-chip-grid,
  .designade-form-grid,
  .contact-snapshot {
    grid-template-columns: 1fr;
  }

  .designade-form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .designade-contact-form .btn-primary {
    width: 100%;
  }

  .contact-snapshot a {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .contact-snapshot a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .designade-contact {
    padding: 118px max(18px, env(safe-area-inset-right)) 72px max(18px, env(safe-area-inset-left));
  }

  .designade-contact-hero h1 {
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.04;
  }

  .designade-contact-form {
    padding: 20px;
    border-radius: 20px;
  }

  .contact-form-block legend {
    align-items: flex-start;
    flex-direction: column;
    font-size: 24px;
  }
}

/* Header concept 04: Minimal White Blur */
.site-header,
.home-page .site-header,
.editorial-page .site-header {
  top: 16px;
  left: max(18px, calc((100vw - 1360px) / 2));
  right: max(18px, calc((100vw - 1360px) / 2));
  min-height: 88px;
  padding: 16px 18px;
  border: 1px solid rgba(7, 7, 7, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--home-black, var(--ink));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68), 0 24px 70px rgba(7, 7, 7, 0.1);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.site-header.scrolled,
.home-page .site-header.scrolled,
.editorial-page .site-header.scrolled {
  border-color: rgba(7, 7, 7, 0.18);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 22px 62px rgba(7, 7, 7, 0.12);
}

.site-header .brand-logo,
.home-page .site-header .brand-logo,
.editorial-page .site-header .brand-logo {
  width: clamp(88px, 6.2vw, 112px);
}

.site-header .desktop-nav,
.home-page .desktop-nav,
.editorial-page .desktop-nav {
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-header .desktop-nav a,
.home-page .desktop-nav a,
.editorial-page .desktop-nav a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 14px 16px 12px;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: rgba(7, 7, 7, 0.62);
  font-size: 15px;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-header .desktop-nav a:hover,
.site-header .desktop-nav a:focus-visible,
.site-header .desktop-nav a.active,
.home-page .desktop-nav a:hover,
.home-page .desktop-nav a:focus-visible,
.home-page .desktop-nav a.active,
.editorial-page .desktop-nav a:hover,
.editorial-page .desktop-nav a:focus-visible,
.editorial-page .desktop-nav a.active {
  border-color: var(--home-lime, var(--yellow));
  background: transparent;
  color: var(--home-black, var(--ink));
  transform: translateY(-1px);
}

.site-header .nav-item,
.home-page .site-header .nav-item,
.editorial-page .site-header .nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-header .nav-submenu,
.home-page .site-header .nav-submenu,
.editorial-page .site-header .nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 80;
  display: grid;
  min-width: 276px;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(7, 7, 7, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(7, 7, 7, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.site-header .nav-has-submenu:hover .nav-submenu,
.site-header .nav-has-submenu:focus-within .nav-submenu,
.home-page .site-header .nav-has-submenu:hover .nav-submenu,
.home-page .site-header .nav-has-submenu:focus-within .nav-submenu,
.editorial-page .site-header .nav-has-submenu:hover .nav-submenu,
.editorial-page .site-header .nav-has-submenu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-header .nav-submenu a,
.home-page .site-header .nav-submenu a,
.editorial-page .site-header .nav-submenu a {
  min-height: 42px;
  justify-content: flex-start;
  padding: 10px 12px;
  border-bottom: 0;
  border-radius: 10px;
  color: var(--home-black, var(--ink));
  font-size: 13px;
  line-height: 1.2;
}

.site-header .nav-submenu a:hover,
.site-header .nav-submenu a:focus-visible,
.home-page .site-header .nav-submenu a:hover,
.home-page .site-header .nav-submenu a:focus-visible,
.editorial-page .site-header .nav-submenu a:hover,
.editorial-page .site-header .nav-submenu a:focus-visible {
  border-color: transparent;
  background: var(--home-lime, var(--yellow));
  color: var(--home-black, var(--ink));
  transform: none;
}

.site-header .phone-link,
.home-page .phone-link,
.editorial-page .phone-link {
  min-height: 52px;
  padding: 13px 18px;
  border-color: rgba(7, 7, 7, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--home-black, var(--ink));
  box-shadow: none;
}

.site-header .nav-cta,
.home-page .nav-cta,
.editorial-page .nav-cta {
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid rgba(7, 7, 7, 0.14);
  border-radius: 16px;
  background: var(--home-lime, var(--yellow));
  color: var(--home-black, var(--ink));
  box-shadow: 0 14px 32px rgba(201, 255, 0, 0.22);
}

.site-header .nav-cta:hover,
.site-header .nav-cta:focus-visible,
.home-page .nav-cta:hover,
.home-page .nav-cta:focus-visible,
.editorial-page .nav-cta:hover,
.editorial-page .nav-cta:focus-visible {
  background: var(--home-black, var(--ink));
  border-color: var(--home-black, var(--ink));
  color: var(--home-white, var(--white));
  transform: translateY(-2px);
}

.site-header .phone-link:hover,
.site-header .phone-link:focus-visible,
.home-page .phone-link:hover,
.home-page .phone-link:focus-visible,
.editorial-page .phone-link:hover,
.editorial-page .phone-link:focus-visible {
  border-color: rgba(7, 7, 7, 0.24);
  background: rgba(255, 255, 255, 0.74);
  color: var(--home-black, var(--ink));
}

.site-header .menu-toggle,
.home-page .menu-toggle,
.editorial-page .menu-toggle {
  border-color: rgba(7, 7, 7, 0.14);
  background: var(--home-lime, var(--yellow));
  color: var(--home-black, var(--ink));
}

@media (max-width: 980px) {
  .site-header,
  .home-page .site-header,
  .editorial-page .site-header {
    min-height: 76px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .site-header .brand-logo,
  .home-page .site-header .brand-logo,
  .editorial-page .site-header .brand-logo {
    width: 88px;
  }

  .mobile-nav,
  .home-page .mobile-nav,
  .editorial-page .mobile-nav {
    inset: 100px 18px auto;
    border: 1px solid rgba(7, 7, 7, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 64px rgba(7, 7, 7, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  .mobile-nav a,
  .home-page .mobile-nav a,
  .editorial-page .mobile-nav a {
    color: var(--home-black, var(--ink));
  }

  .mobile-service-links,
  .home-page .mobile-service-links,
  .editorial-page .mobile-service-links {
    display: grid;
    gap: 6px;
    margin: -4px 0 6px;
    padding: 6px 0 8px 14px;
    border-bottom: 1px solid rgba(7, 7, 7, 0.1);
  }

  .mobile-service-links a,
  .home-page .mobile-service-links a,
  .editorial-page .mobile-service-links a {
    min-height: 36px;
    padding: 8px 10px;
    border-bottom: 0;
    border-left: 2px solid var(--home-lime, var(--yellow));
    border-radius: 8px;
    color: rgba(7, 7, 7, 0.72);
    font-size: 13px;
    line-height: 1.25;
  }

  .mobile-nav > a:last-child,
  .home-page .mobile-nav > a:last-child,
  .editorial-page .mobile-nav > a:last-child {
    background: var(--home-lime, var(--yellow));
    color: var(--home-black, var(--ink));
  }
}

@media (max-width: 680px) {
  .site-header,
  .home-page .site-header,
  .editorial-page .site-header {
    top: 10px;
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    min-height: 72px;
    padding: 9px 10px;
    border-radius: 17px;
  }

  .site-header .brand-logo,
  .home-page .site-header .brand-logo,
  .editorial-page .site-header .brand-logo {
    width: 82px;
  }

  .mobile-nav,
  .home-page .mobile-nav,
  .editorial-page .mobile-nav {
    inset: 90px max(12px, env(safe-area-inset-right)) auto max(12px, env(safe-area-inset-left));
  }
}

/* Homepage hero: 3D Growth Blocks */
.home-3d-hero {
  min-height: auto;
  padding: 104px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(201, 255, 0, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(201, 255, 0, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 72% 48%, rgba(201, 255, 0, 0.075), transparent 30%),
    #070807;
  background-size: 62px 62px, 62px 62px, auto, auto;
  color: var(--home-white);
  font-family: "Lufga", var(--font-heading);
}

.home-3d-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 78% 50%, rgba(201, 255, 0, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: auto, 58px 58px, 58px 58px;
  content: "";
  opacity: 0.7;
  pointer-events: none;
}

.home-3d-hero::after {
  background: var(--home-lime);
}

.home-3d-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1360px);
  min-height: calc(100svh - 104px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(64px, 9vh, 110px) 40px 70px;
}

.home-3d-copy {
  display: grid;
  align-content: center;
  gap: 22px;
}

.home-3d-copy .editorial-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  margin: 0;
  padding: 9px 18px;
  border: 1.5px solid var(--home-lime);
  border-radius: 999px;
  background: rgba(201, 255, 0, 0.06);
  color: var(--home-lime);
  font-family: "Lufga", var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.home-3d-copy h1 {
  max-width: 660px;
  margin: 0;
  color: var(--home-white);
  font-family: "Lufga", var(--font-heading);
  font-size: clamp(50px, 5.3vw, 82px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

.home-3d-copy h1 span {
  display: block;
  color: var(--home-lime);
  font-family: "Lufga", var(--font-heading);
  font-weight: 700;
  text-shadow: none;
}

.home-3d-lede {
  width: min(100%, 520px);
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Lufga", var(--font-heading);
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 400;
  line-height: 1.42;
}

.home-3d-hero .hero-actions {
  margin-top: 10px;
  gap: 18px;
}

.home-3d-hero .btn-light {
  background: var(--home-lime);
  color: var(--home-black);
}

.home-3d-hero .btn-light:hover,
.home-3d-hero .btn-light:focus-visible {
  background: var(--home-white);
  color: var(--home-black);
}

.home-3d-hero .conversion-hero-link {
  color: var(--home-lime);
  border-color: var(--home-lime);
}

.home-3d-hero .conversion-hero-link:hover,
.home-3d-hero .conversion-hero-link:focus-visible {
  color: var(--home-white);
  border-color: var(--home-white);
}

.home-3d-visual {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}

.home-cube-scene {
  position: absolute;
  inset: 4px 0 0;
  transform-style: preserve-3d;
}

.home-cube-scene::before {
  position: absolute;
  inset: 60px 6% 28px;
  border: 1px solid rgba(201, 255, 0, 0.075);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(201, 255, 0, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(201, 255, 0, 0.03) 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px;
  content: "";
  opacity: 0.48;
  transform: rotateX(64deg) rotateZ(-13deg);
  transform-origin: center;
}

.home-cube-connector {
  position: absolute;
  z-index: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(201, 255, 0, 0.76), transparent);
  opacity: 0.72;
  transform-origin: left center;
  animation: homeConnectorPulse 3.6s ease-in-out infinite;
}

.home-cube-connector:nth-child(1) {
  left: 28%;
  top: 190px;
  width: 220px;
  transform: rotate(18deg);
}

.home-cube-connector:nth-child(2) {
  left: 36%;
  top: 338px;
  width: 260px;
  transform: rotate(-25deg);
  animation-delay: -1.1s;
}

.home-cube {
  position: absolute;
  z-index: 2;
  width: 150px;
  height: 150px;
  --cube-scale: 1;
  --cube-delay: 0s;
  --front: linear-gradient(135deg, #c9ff00, #efff86);
  --right: linear-gradient(135deg, #ffffff, #dfe5d4);
  --top: linear-gradient(135deg, #171717, #303030);
  --front-text: #070707;
  --right-text: #070707;
  --top-text: #ffffff;
  transform: scale(var(--cube-scale)) rotateX(-22deg) rotateY(34deg);
  transform-style: preserve-3d;
  animation: homeCubeFloat 6s ease-in-out infinite;
  animation-delay: var(--cube-delay);
}

.home-cube span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--front);
  color: var(--front-text);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.22);
  font-family: "Lufga", var(--font-heading);
  font-size: 28px;
  font-weight: 700;
}

.home-cube span:nth-child(1) {
  transform: translateZ(75px);
}

.home-cube span:nth-child(2) {
  background: var(--right);
  color: var(--right-text);
  transform: rotateY(90deg) translateZ(75px);
}

.home-cube span:nth-child(3) {
  background: var(--top);
  color: var(--top-text);
  transform: rotateX(90deg) translateZ(75px);
}

.home-cube-ads {
  top: 72px;
  left: 8%;
  --cube-delay: -0.4s;
}

.home-cube-web {
  top: 160px;
  right: 8%;
  --cube-scale: 0.76;
  --cube-delay: -1.8s;
  --front: linear-gradient(135deg, #ffffff, #edf2e4);
  --right: linear-gradient(135deg, #c9ff00, #efff85);
  --top: linear-gradient(135deg, #171717, #2c2c2c);
}

.home-cube-social {
  bottom: 56px;
  left: 38%;
  --cube-scale: 0.92;
  --cube-delay: -3s;
  --front: linear-gradient(135deg, #171717, #2d2d2d);
  --right: linear-gradient(135deg, #ffffff, #e9eee0);
  --top: linear-gradient(135deg, #c9ff00, #edff74);
  --front-text: #ffffff;
  --right-text: #070707;
  --top-text: #070707;
}

.home-growth-stat {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 152px;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  color: var(--home-white);
  font-family: "Lufga", var(--font-heading);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: homeStatFloat 5.4s ease-in-out infinite;
}

.home-growth-stat strong {
  color: var(--home-lime);
  font-family: "Lufga", var(--font-heading);
  font-size: 30px;
  line-height: 1;
}

.home-growth-stat span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.25;
}

.home-growth-stat-roas {
  right: 5%;
  bottom: 68px;
}

.home-growth-stat-lift {
  left: 4%;
  bottom: 100px;
  animation-delay: -1.6s;
}

@keyframes homeCubeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(var(--cube-scale)) rotateX(-22deg) rotateY(34deg);
  }

  50% {
    transform: translate3d(0, -18px, 28px) scale(var(--cube-scale)) rotateX(-16deg) rotateY(43deg);
  }
}

@keyframes homeStatFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes homeConnectorPulse {
  0%,
  100% {
    opacity: 0.38;
  }

  50% {
    opacity: 0.9;
  }
}

@media (max-width: 1080px) {
  .home-3d-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 72px 28px 46px;
  }

  .home-3d-copy h1 {
    max-width: 820px;
  }

  .home-3d-visual {
    min-height: 560px;
  }
}

@media (max-width: 680px) {
  .home-3d-hero {
    padding-top: 88px;
  }

  .home-3d-hero-inner {
    padding: 30px 18px 36px;
    gap: 24px;
  }

  .home-3d-copy {
    gap: 18px;
  }

  .home-3d-copy .editorial-kicker {
    padding: 8px 12px;
    font-size: 10px;
  }

  .home-3d-copy h1 {
    max-width: 390px;
    font-size: clamp(38px, 10.6vw, 48px);
    line-height: 1.04;
  }

  .home-3d-lede {
    font-size: 16px;
  }

  .home-3d-hero .hero-actions {
    width: 100%;
    gap: 12px;
  }

  .home-3d-hero .btn,
  .home-3d-hero .conversion-hero-link {
    width: 100%;
    justify-content: center;
  }

  .home-3d-visual {
    min-height: 520px;
  }

  .home-cube-scene {
    inset: 0;
  }

  .home-cube-scene::before {
    inset: 70px 0 36px;
  }

  .home-cube-connector {
    opacity: 0.64;
  }

  .home-cube-connector:nth-child(1) {
    left: 24%;
    top: 178px;
    width: 150px;
  }

  .home-cube-connector:nth-child(2) {
    left: 28%;
    top: 324px;
    width: 170px;
  }

  .home-cube {
    width: 128px;
    height: 128px;
  }

  .home-cube span {
    font-size: 22px;
  }

  .home-cube span:nth-child(1) {
    transform: translateZ(64px);
  }

  .home-cube span:nth-child(2) {
    transform: rotateY(90deg) translateZ(64px);
  }

  .home-cube span:nth-child(3) {
    transform: rotateX(90deg) translateZ(64px);
  }

  .home-cube-ads {
    top: 54px;
    left: 0;
    --cube-scale: 0.88;
  }

  .home-cube-web {
    top: 150px;
    right: 0;
    --cube-scale: 0.68;
  }

  .home-cube-social {
    bottom: 98px;
    left: 27%;
    --cube-scale: 0.78;
  }

  .home-growth-stat {
    min-width: 142px;
    padding: 12px 14px;
  }

  .home-growth-stat strong {
    font-size: 24px;
  }

  .home-growth-stat-roas {
    right: 0;
    bottom: 16px;
  }

  .home-growth-stat-lift {
    left: 0;
    bottom: 46px;
  }
}

@media (max-width: 380px) {
  .home-3d-copy h1 {
    font-size: 36px;
  }

  .home-3d-visual {
    min-height: 500px;
  }
}

/* Homepage hero: Terminal Growth System */
.terminal-hero {
  min-height: 100svh;
  padding: clamp(172px, 17vh, 210px) 24px 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 0%, rgba(201, 255, 0, 0.16), transparent 36%),
    radial-gradient(circle at 4% 102%, rgba(235, 183, 245, 0.1), transparent 38%),
    linear-gradient(90deg, rgba(201, 255, 0, 0.042) 1px, transparent 1px),
    linear-gradient(rgba(201, 255, 0, 0.034) 1px, transparent 1px),
    var(--home-black);
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
  color: var(--home-white);
  font-family: var(--font-heading);
}

.terminal-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 58% 44%, rgba(201, 255, 0, 0.12), transparent 28%),
    linear-gradient(135deg, transparent 0 58%, rgba(255, 255, 255, 0.035) 58% 68%, transparent 68% 100%);
  content: "";
  opacity: 0.88;
  pointer-events: none;
}

.terminal-hero::after {
  background: var(--home-lime);
}

.terminal-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1040px);
  min-height: auto;
  margin: 0 auto;
  align-content: start;
}

.terminal-hero .editorial-kicker {
  margin: 0 0 22px;
  border: 1px solid rgba(7, 7, 7, 0.18);
  background: var(--home-lime);
  color: var(--home-black);
  box-shadow: 0 12px 34px rgba(7, 7, 7, 0.08);
}

.terminal-window {
  overflow: hidden;
  border: 1px solid rgba(7, 7, 7, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 42px 120px rgba(7, 7, 7, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.terminal-bar {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(7, 7, 7, 0.18);
  background: linear-gradient(135deg, #111111, #1d1d25);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 999px;
}

.terminal-dot-red {
  background: #ff5f57;
}

.terminal-dot-yellow {
  background: #febc2e;
}

.terminal-dot-lime {
  background: var(--home-lime);
}

.terminal-title {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.terminal-body {
  display: grid;
  gap: 14px;
  padding: clamp(30px, 5vw, 58px) clamp(22px, 5vw, 58px) 24px;
}

.terminal-comment,
.terminal-command,
.terminal-output,
.terminal-lede {
  margin: 0;
}

.terminal-comment {
  color: rgba(7, 7, 7, 0.48);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 500;
}

.terminal-command {
  display: flex;
  min-height: 26px;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: rgba(7, 7, 7, 0.82);
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 600;
}

.terminal-prompt {
  color: var(--home-black);
}

.terminal-flag {
  color: #5f7900;
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 1.15em;
  margin-left: 1px;
  background: var(--home-black);
  animation: terminalBlink 1s steps(2) infinite;
}

.terminal-hero h1 {
  max-width: 780px;
  margin: 16px 0 0;
  color: var(--home-black);
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.35vw, 66px);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.05;
}

.terminal-hero h1 span {
  display: inline;
  color: var(--home-black);
  background: linear-gradient(180deg, transparent 58%, rgba(201, 255, 0, 0.9) 58%);
}

.terminal-lede {
  width: min(100%, 680px);
  color: rgba(7, 7, 7, 0.66);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 300;
  line-height: 1.45;
}

.terminal-output {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
}

.terminal-output span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(7, 7, 7, 0.1);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f4f5f1);
  color: rgba(7, 7, 7, 0.82);
  box-shadow: 0 12px 26px rgba(7, 7, 7, 0.07);
  font-size: 13px;
  font-weight: 700;
}

.terminal-output strong {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: var(--home-lime);
  color: var(--home-black);
  font-size: 13px;
  line-height: 1;
}

.terminal-actions {
  padding: 0 clamp(22px, 5vw, 58px) clamp(28px, 4vw, 44px);
}

.terminal-hero .hero-actions {
  margin-top: 0;
  gap: 18px;
}

.terminal-hero .btn-light {
  border: 1px solid var(--home-black);
  background: var(--home-black);
  color: var(--home-white);
  box-shadow: 0 18px 38px rgba(7, 7, 7, 0.18);
}

.terminal-hero .btn-light:hover,
.terminal-hero .btn-light:focus-visible {
  border-color: var(--home-lime);
  background: var(--home-lime);
  color: var(--home-black);
  box-shadow: 0 18px 38px rgba(201, 255, 0, 0.24);
}

.terminal-hero .conversion-hero-link {
  color: var(--home-black);
  border-color: rgba(7, 7, 7, 0.22);
  opacity: 0.82;
}

.terminal-hero .conversion-hero-link:hover,
.terminal-hero .conversion-hero-link:focus-visible {
  color: var(--home-black);
  border-color: var(--home-lime);
  opacity: 1;
}

.editorial-hero.hero-motion .terminal-window {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 780ms 220ms ease, transform 780ms 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-hero.hero-motion-ready .terminal-window {
  opacity: 1;
  transform: translateY(0);
}

@keyframes terminalBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .terminal-hero {
    min-height: auto;
    padding: 126px 14px 54px;
  }

  .terminal-hero-inner {
    min-height: auto;
  }

  .terminal-bar {
    padding: 12px 14px;
  }

  .terminal-title {
    font-size: 12px;
  }

  .terminal-body {
    padding: 26px 18px 22px;
  }

  .terminal-hero h1 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.08;
  }

  .terminal-lede {
    font-size: 16px;
  }

  .terminal-output span {
    width: 100%;
    justify-content: center;
  }

  .terminal-actions {
    width: 100%;
    padding: 0 18px 24px;
  }

  .terminal-hero .hero-actions {
    gap: 12px;
  }

  .terminal-hero .btn,
  .terminal-hero .conversion-hero-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 390px) {
  .terminal-hero h1 {
    font-size: 31px;
  }

  .terminal-command {
    font-size: 13px;
  }
}

/* Homepage premium SaaS refinements */
.home-page {
  --forest-dark: var(--home-black);
  --forest: var(--home-black);
  --forest-mid: var(--home-lime);
  --forest-soft: rgba(201, 255, 0, 0.16);
  --forest-line: rgba(7, 7, 7, 0.14);
}

.home-page .issues-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(7, 7, 7, 0.12), transparent 24%),
    radial-gradient(circle at 88% 88%, rgba(201, 255, 0, 0.18), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f6faf7 100%);
}

.home-page .issues-description {
  max-width: 780px;
  color: #4d5b53;
}

.home-page .issue-tabs {
  gap: 7px;
  margin: 34px 0 22px;
}

.home-page .issue-tab {
  min-height: 34px;
  padding: 8px 13px;
  border-color: rgba(7, 7, 7, 0.2);
  background: rgba(255, 255, 255, 0.82);
  color: var(--forest-dark);
  font-size: 12px;
  box-shadow: 0 10px 28px rgba(7, 7, 7, 0.05);
}

.home-page .issue-tab:hover,
.home-page .issue-tab.active {
  background: var(--forest);
  color: var(--home-white);
  box-shadow: 0 12px 30px rgba(7, 7, 7, 0.16);
}

.home-page .issue-cloud {
  border-color: var(--forest-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(7, 7, 7, 0.08);
}

.home-page .issue-cloud span {
  border-color: rgba(7, 7, 7, 0.18);
  background: var(--forest-soft);
  color: var(--forest-dark);
  font-size: 16px;
}

.home-page .issue-cloud span:nth-child(2),
.home-page .issue-cloud span:nth-child(3),
.home-page .issue-cloud span:nth-child(5),
.home-page .issue-cloud span:nth-child(6) {
  background: #ffffff;
  color: var(--forest-dark);
}

.home-page .issue-cloud span:nth-child(4) {
  background: var(--forest);
  color: var(--home-white);
}

.home-page .service-tile {
  min-height: 390px;
  border-color: rgba(7, 7, 7, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 249, 0.96)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(7, 7, 7, 0.07);
}

.home-page .service-tile::before {
  display: none;
}

.home-page .service-tile:hover {
  border-color: rgba(7, 7, 7, 0.3);
  box-shadow: 0 28px 74px rgba(7, 7, 7, 0.13);
}

.home-page .service-number {
  border-color: rgba(7, 7, 7, 0.18);
  background: #f6faf7;
  color: var(--forest);
}

.home-page .service-visual {
  width: 72px;
  height: 72px;
  border-color: rgba(7, 7, 7, 0.2);
  border-radius: 20px;
  background: var(--forest-soft);
  color: var(--forest);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9), 0 18px 34px rgba(7, 7, 7, 0.1);
  transform: none;
}

.home-page .service-visual::before,
.home-page .service-visual i {
  display: none;
}

.home-page .service-visual svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.85;
}

.home-page .service-tile:hover .service-visual {
  background: var(--forest);
  color: var(--home-white);
  box-shadow: 0 22px 44px rgba(7, 7, 7, 0.2);
  transform: translateY(-3px);
}

.home-page .service-tile h3 {
  margin-top: auto;
  font-size: 30px;
}

.home-page .service-tile p {
  color: #526058;
}

.home-page .service-tile-action {
  border-color: rgba(7, 7, 7, 0.12);
  border-radius: 12px;
  background: var(--forest-dark);
}

.home-page .service-tile-action:hover {
  background: var(--forest);
  color: var(--home-white);
}

.home-page .editorial-process {
  display: block;
  padding: 128px max(24px, calc((100vw - 1280px) / 2));
  background:
    radial-gradient(circle at 50% 18%, rgba(7, 7, 7, 0.08), transparent 27%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.home-page .editorial-process::before {
  opacity: 0.52;
}

.process-heading {
  position: relative;
  z-index: 1;
  width: min(100%, 800px);
  margin: 0 auto 72px;
  text-align: center;
}

.process-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  padding: 5px 14px;
  border: 1px solid rgba(7, 7, 7, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: var(--forest-dark);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(7, 7, 7, 0.06);
}

.home-page .process-heading h2 {
  margin: 0;
  color: var(--forest-dark);
  font-family: var(--font-heading);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
}

.home-page .process-heading .marker-word::after {
  background: rgba(7, 7, 7, 0.2);
}

.home-page .process-heading .process-intro {
  max-width: 680px;
  margin: 22px auto 0;
  color: #6a7783;
  font-size: 20px;
  line-height: 1.42;
}

.process-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.process-card {
  position: relative;
  min-height: 468px;
  padding: 70px 28px 28px;
  border: 1px solid rgba(7, 7, 7, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(7, 7, 7, 0.08);
  text-align: center;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.process-card:hover {
  border-color: rgba(7, 7, 7, 0.26);
  box-shadow: 0 32px 76px rgba(7, 7, 7, 0.13);
  transform: translateY(-6px);
}

.process-card:not(:last-child)::after {
  position: absolute;
  top: 112px;
  right: -28px;
  z-index: 3;
  width: 28px;
  height: 2px;
  background: var(--forest);
  content: "";
}

.process-card:not(:last-child)::before {
  position: absolute;
  top: 106px;
  right: -33px;
  z-index: 4;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--forest);
  border-right: 2px solid var(--forest);
  content: "";
  transform: rotate(45deg);
}

.process-card .process-number {
  position: absolute;
  top: -25px;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  min-height: 0;
  padding: 0;
  place-items: center;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: var(--forest);
  color: #ffffff;
  font-size: 20px;
  box-shadow: 0 16px 34px rgba(7, 7, 7, 0.24);
  transform: translateX(-50%);
}

.process-duration {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 18px;
  padding: 5px 13px;
  border-radius: 8px;
  background: #f2f6f4;
  color: #334138;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
}

.process-card .process-icon {
  display: inline-grid;
  position: static;
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--forest);
  box-shadow: none;
}

.process-card .process-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.process-card h3 {
  margin: 0 0 14px;
  color: var(--forest-dark);
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.08;
}

.process-card p {
  margin: 0 auto 24px;
  color: #718091;
  font-size: 16px;
  line-height: 1.42;
}

.process-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #344139;
  font-size: 14px;
  line-height: 1.28;
  text-align: left;
  list-style: none;
}

.process-card li {
  position: relative;
  padding-left: 24px;
}

.process-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--forest);
  font-family: var(--font-heading);
  font-weight: 800;
  content: "✓";
}

.process-cta {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 68px;
  color: #748193;
  font-size: 19px;
}

.process-cta .btn-primary {
  min-width: 330px;
  justify-content: center;
  background: var(--forest);
  color: #ffffff;
}

.process-cta .btn-primary:hover,
.process-cta .btn-primary:focus-visible {
  background: var(--forest-dark);
}

.forest-cta {
  position: relative;
  overflow: hidden;
  padding: 122px 24px;
  background:
    radial-gradient(circle at 26% 52%, rgba(201, 255, 0, 0.24), transparent 30%),
    radial-gradient(circle at 80% 16%, rgba(104, 119, 251, 0.16), transparent 28%),
    linear-gradient(115deg, #070707 0%, #111111 54%, #1f1f1f 100%);
  color: #ffffff;
}

.forest-cta::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 74%);
  mask-image: radial-gradient(circle at center, #000 0%, transparent 74%);
  content: "";
  pointer-events: none;
}

.forest-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1180px);
  margin: 0 auto;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: center;
}

.forest-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 76px;
}

.forest-trust-row span,
.forest-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.forest-trust-row svg {
  width: 16px;
  height: 16px;
}

.forest-status {
  margin: 0 0 24px;
}

.forest-status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--home-lime);
  box-shadow: 0 0 0 5px rgba(201, 255, 0, 0.14);
}

.forest-cta-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(46px, 5.4vw, 78px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.forest-cta-copy > p:not(.forest-status):not(.forest-rating) {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
  line-height: 1.45;
}

.forest-cta-copy ul {
  display: grid;
  gap: 15px;
  margin: 42px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.35;
  list-style: none;
}

.forest-cta-copy li {
  position: relative;
  padding-left: 32px;
}

.forest-cta-copy li::before {
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(201, 255, 0, 0.55);
  border-radius: 50%;
  color: var(--home-lime);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.forest-rating {
  margin: 38px 0 0;
  color: #ffc247;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
}

.forest-rating span {
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
}

.forest-contact-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.forest-card-head {
  padding: 26px 32px 22px;
  background: rgba(255, 255, 255, 0.12);
}

.forest-card-head h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
}

.forest-card-head p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
}

.forest-card-body {
  padding: 32px;
}

.forest-action,
.forest-results-link {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.forest-action:hover,
.forest-action:focus-visible,
.forest-results-link:hover,
.forest-results-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.forest-action-primary {
  background: #ffffff;
  color: var(--forest);
}

.forest-action-primary:hover,
.forest-action-primary:focus-visible {
  background: #f5fff8;
  color: var(--forest-dark);
}

.forest-action-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 7, 7, 0.12);
}

.forest-action:not(.forest-action-primary) .forest-action-icon {
  background: rgba(255, 255, 255, 0.13);
}

.forest-action-icon svg,
.forest-action > svg,
.forest-results-link svg,
.forest-card-foot svg {
  width: 21px;
  height: 21px;
}

.forest-action > span:nth-child(2) {
  display: grid;
  min-width: 0;
  flex: 1;
}

.forest-action small {
  color: currentColor;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  opacity: 0.68;
  text-transform: uppercase;
}

.forest-action strong {
  margin-top: 3px;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.05;
}

.forest-action em {
  margin-top: 4px;
  color: currentColor;
  font-style: normal;
  opacity: 0.62;
}

.forest-divider {
  display: grid;
  align-items: center;
  margin: 20px 0;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
}

.forest-divider::before,
.forest-divider::after {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.forest-results-link {
  min-height: 64px;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
}

.forest-card-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 18px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 24px;
  }

  .process-card:nth-child(2)::after,
  .process-card:nth-child(2)::before {
    display: none;
  }

  .forest-cta-inner {
    gap: 44px;
    grid-template-columns: 1fr;
  }

  .forest-trust-row {
    margin-bottom: 42px;
  }
}

@media (max-width: 760px) {
  .home-page .issues-section,
  .home-page .editorial-services,
  .home-page .editorial-process,
  .forest-cta {
    padding-right: 16px;
    padding-left: 16px;
  }

  .home-page .issue-cloud {
    min-height: 0;
    padding: 22px;
    grid-template-columns: 1fr;
  }

  .home-page .issue-cloud span {
    min-height: 58px;
    justify-content: flex-start;
    border-radius: 14px;
    font-size: 15px;
    text-align: left;
  }

  .process-heading {
    margin-bottom: 48px;
    text-align: left;
  }

  .home-page .process-heading .process-intro {
    margin-left: 0;
    font-size: 17px;
  }

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

  .process-card {
    min-height: 0;
    padding: 58px 22px 24px;
    text-align: left;
  }

  .process-card:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -38px;
    left: 30px;
    width: 2px;
    height: 38px;
  }

  .process-card:not(:last-child)::before {
    top: auto;
    right: auto;
    bottom: -38px;
    left: 25px;
    transform: rotate(135deg);
  }

  .process-card:nth-child(2)::after,
  .process-card:nth-child(2)::before {
    display: block;
  }

  .process-card .process-number {
    left: 22px;
    width: 50px;
    height: 50px;
    font-size: 17px;
    transform: none;
  }

  .process-duration,
  .process-card .process-icon {
    margin-left: 0;
  }

  .process-cta .btn-primary {
    width: 100%;
    min-width: 0;
  }

  .forest-cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .forest-trust-row {
    margin-bottom: 32px;
  }

  .forest-cta-copy > p:not(.forest-status):not(.forest-rating) {
    font-size: 17px;
  }

  .forest-cta-copy ul {
    font-size: 15px;
  }

  .forest-rating span {
    display: block;
    margin: 6px 0 0;
  }

  .forest-card-head,
  .forest-card-body,
  .forest-card-foot {
    padding-right: 20px;
    padding-left: 20px;
  }

  .forest-action {
    min-height: 86px;
    padding: 16px;
  }

  .forest-action strong {
    font-size: 17px;
  }
}

/* Restore WeWantSales brand colors across the premium homepage sections */
.home-page {
  --forest-dark: var(--home-black);
  --forest: var(--home-black);
  --forest-mid: var(--home-lime);
  --forest-soft: rgba(201, 255, 0, 0.16);
  --forest-line: rgba(7, 7, 7, 0.14);
}

.home-page .issues-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 255, 0, 0.18), transparent 24%),
    radial-gradient(circle at 88% 88%, rgba(235, 183, 245, 0.2), transparent 24%),
    linear-gradient(180deg, var(--home-white) 0%, #f7f8f2 100%);
}

.home-page .issues-description,
.home-page .service-tile p {
  color: #4f5359;
}

.home-page .issue-tab {
  border-color: rgba(7, 7, 7, 0.18);
  color: var(--home-black);
  box-shadow: 0 10px 28px rgba(7, 7, 7, 0.05);
}

.home-page .issue-tab:hover,
.home-page .issue-tab.active {
  background: var(--home-black);
  color: var(--home-white);
  box-shadow: 0 12px 30px rgba(7, 7, 7, 0.14);
}

.home-page .issue-cloud {
  border-color: rgba(7, 7, 7, 0.14);
  background: rgba(246, 246, 242, 0.9);
  box-shadow: 0 24px 70px rgba(7, 7, 7, 0.08);
}

.home-page .issue-cloud span {
  border-color: rgba(7, 7, 7, 0.16);
  background: var(--home-lime);
  color: var(--home-black);
}

.home-page .issue-cloud span:nth-child(2),
.home-page .issue-cloud span:nth-child(6) {
  background: var(--home-lavender);
}

.home-page .issue-cloud span:nth-child(3) {
  background: var(--home-blue);
  color: var(--home-white);
}

.home-page .issue-cloud span:nth-child(4) {
  background: var(--home-white);
  color: var(--home-black);
}

.home-page .issue-cloud span:nth-child(5) {
  background: var(--home-orange);
}

.home-page .service-tile {
  border-color: rgba(7, 7, 7, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 242, 0.96)),
    var(--home-white);
  box-shadow: 0 18px 46px rgba(7, 7, 7, 0.06);
}

.home-page .service-tile:hover {
  border-color: rgba(7, 7, 7, 0.3);
  box-shadow: 0 28px 74px rgba(7, 7, 7, 0.12);
}

.home-page .service-number {
  border-color: rgba(7, 7, 7, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: #5b5f65;
}

.home-page .service-visual {
  border-color: rgba(7, 7, 7, 0.16);
  background: var(--home-lime);
  color: var(--home-black);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9), 0 18px 34px rgba(7, 7, 7, 0.1);
}

.home-page .service-tile:nth-child(2) .service-visual {
  background: var(--home-blue);
  color: var(--home-white);
}

.home-page .service-tile:nth-child(3) .service-visual {
  background: var(--home-black);
  color: var(--home-white);
}

.home-page .service-tile:nth-child(4) .service-visual {
  background: var(--home-orange);
  color: var(--home-black);
}

.home-page .service-tile:nth-child(5) .service-visual {
  background: var(--home-lavender);
  color: var(--home-black);
}

.home-page .service-tile:hover .service-visual {
  background: var(--home-lime);
  color: var(--home-black);
  box-shadow: 0 22px 44px rgba(201, 255, 0, 0.2);
}

.home-page .service-tile-action,
.home-page .process-cta .btn-primary {
  background: var(--home-black);
  color: var(--home-white);
}

.home-page .service-tile-action:hover,
.home-page .process-cta .btn-primary:hover,
.home-page .process-cta .btn-primary:focus-visible {
  background: var(--home-lime);
  color: var(--home-black);
}

.home-page .editorial-process {
  background:
    radial-gradient(circle at 50% 18%, rgba(201, 255, 0, 0.16), transparent 27%),
    linear-gradient(180deg, var(--home-white) 0%, #f6f6f2 100%);
}

.home-page .process-pill {
  border-color: rgba(7, 7, 7, 0.1);
  color: var(--home-black);
  box-shadow: 0 10px 28px rgba(7, 7, 7, 0.06);
}

.home-page .process-heading h2,
.home-page .process-card h3 {
  color: var(--home-black);
}

.home-page .process-heading .marker-word::after {
  background: var(--home-lime);
}

.home-page .process-card {
  border-color: rgba(7, 7, 7, 0.1);
  box-shadow: 0 24px 60px rgba(7, 7, 7, 0.07);
}

.home-page .process-card:hover {
  border-color: rgba(7, 7, 7, 0.25);
  box-shadow: 0 32px 76px rgba(7, 7, 7, 0.12);
}

.home-page .process-card:not(:last-child)::after {
  background: var(--home-black);
}

.home-page .process-card:not(:last-child)::before {
  border-color: var(--home-black);
}

.home-page .process-card .process-number {
  background: var(--home-black);
  color: var(--home-lime);
  box-shadow: 0 16px 34px rgba(7, 7, 7, 0.2);
}

.home-page .process-card .process-icon,
.home-page .process-card li::before {
  color: var(--home-black);
}

.home-page .process-duration {
  background: rgba(201, 255, 0, 0.2);
  color: var(--home-black);
}

.home-page .forest-cta {
  background:
    radial-gradient(circle at 26% 52%, rgba(201, 255, 0, 0.24), transparent 30%),
    radial-gradient(circle at 80% 16%, rgba(104, 119, 251, 0.16), transparent 28%),
    linear-gradient(115deg, #070707 0%, #111111 54%, #1f1f1f 100%);
}

.home-page .forest-status span {
  background: var(--home-lime);
  box-shadow: 0 0 0 5px rgba(201, 255, 0, 0.14);
}

.home-page .forest-cta-copy li::before {
  border-color: rgba(201, 255, 0, 0.55);
  color: var(--home-lime);
}

.home-page .forest-rating {
  color: var(--home-lime);
}

.home-page .forest-action-primary {
  color: var(--home-black);
}

.home-page .forest-action-primary:hover,
.home-page .forest-action-primary:focus-visible {
  background: var(--home-lime);
  color: var(--home-black);
}

.home-page .forest-action-icon {
  background: rgba(201, 255, 0, 0.18);
}

.top-service-feature {
  padding-top: 116px;
  background: var(--home-black);
}

.top-service-feature .immersive-case {
  min-height: 640px;
  border-top: 0;
}

.top-service-feature .immersive-case img {
  height: 640px;
}

.top-service-feature .immersive-copy {
  bottom: 56px;
}

@media (max-width: 760px) {
  .top-service-feature {
    padding-top: 92px;
  }

  .top-service-feature .immersive-case {
    min-height: 560px;
  }

  .top-service-feature .immersive-case img {
    height: 560px;
  }
}

/* Standard professional typography scale */
:root {
  --type-hero-title: clamp(36px, 4.6vw, 58px);
  --type-section-title: clamp(34px, 3.6vw, 52px);
  --type-feature-title: clamp(28px, 3vw, 40px);
  --type-card-title: 23px;
  --type-body: 16px;
  --type-lede: 18px;
}

body {
  font-size: var(--type-body);
  line-height: 1.55;
}

.home-page .terminal-hero h1,
.conversion-hero-copy h1,
.concept-f-copy h1,
.device-hero-copy h1,
.home-3d-copy h1,
.subpage-hero h1,
.subpage-hero-black h1,
.page-hero-copy h1,
.quote-copy h1,
.designade-contact-hero h1 {
  font-size: var(--type-hero-title);
  line-height: 1.02;
}

.home-page .issues-section h2,
.home-page .editorial-section-head h2,
.home-page .process-heading h2,
.home-page .results-intro h2,
.home-page .faq-section h2,
.page-intro h2,
.services-page .page-intro h2,
.results-page .page-intro h2,
.pricing-page .page-intro h2,
.detail-copy h2,
.services-page .detail-copy h2,
.editorial-case-copy h2,
.results-page .editorial-case-copy h2,
.editorial-steps h2,
.services-page .editorial-steps h2,
.pricing-factors h2,
.pricing-faq h2,
.contact-brief h2,
.contact-page .contact-brief h2,
.contact-page .editorial-steps h2,
.editorial-calculator .calculator-copy h2,
.pricing-page .editorial-calculator .calculator-copy h2,
.scope-grid h2,
.pricing-page .scope-grid h2,
.forest-cta-copy h2 {
  font-size: var(--type-section-title);
  line-height: 1.06;
}

.home-page .system-statement h2,
.home-page .immersive-heading h2,
.black-statement h2,
.services-page .black-statement h2,
.results-page .black-statement h2 {
  font-size: var(--type-feature-title);
  line-height: 1.08;
}

.home-page .immersive-copy h3,
.page-final-cta h2 {
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1.06;
}

.home-page .service-tile h3,
.home-page .process-card h3,
.service-tile h3,
.process-list h3,
.case-card h3,
.scope-card h3,
.editorial-steps strong,
.forest-card-head h3,
.calculator-results h3 {
  font-size: var(--type-card-title);
  line-height: 1.12;
}

.home-page .terminal-lede,
.issues-description,
.home-page .process-heading .process-intro,
.process-intro,
.page-intro > p:last-of-type,
.subpage-hero p,
.page-hero-copy p,
.quote-copy p,
.designade-contact-hero p,
.forest-cta-copy > p:not(.forest-status):not(.forest-rating),
.system-statement-inner > p:last-child,
.editorial-section-head > p,
.results-intro p,
.contact-brief p {
  font-size: var(--type-lede);
  line-height: 1.45;
}

.home-page .service-tile p,
.home-page .process-card p,
.process-card p,
.process-card li,
.detail-copy p,
.detail-copy > p:last-child,
.service-detail-list li,
.editorial-steps p,
.editorial-case-copy p,
.pricing-factors p,
.pricing-faq p,
.scope-grid p,
.faq-list p,
.forest-cta-copy ul,
.forest-card-head p,
.forest-card-foot,
.forest-action em {
  font-size: var(--type-body);
  line-height: 1.45;
}

.forest-action strong {
  font-size: 19px;
}

.metric-wall strong {
  font-size: clamp(38px, 4vw, 56px);
}

@media (max-width: 680px) {
  :root {
    --type-hero-title: clamp(34px, 9vw, 42px);
    --type-section-title: clamp(30px, 8vw, 36px);
    --type-feature-title: clamp(28px, 7.6vw, 34px);
    --type-card-title: 22px;
    --type-lede: 16px;
  }
}

/* Homepage scope-board process section */
.home-page .how-scope-section {
  padding: 116px max(24px, calc((100vw - 1360px) / 2));
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 255, 0, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f2 100%);
  color: var(--home-black);
}

.home-page .how-scope-section::before {
  opacity: 0.35;
}

.how-scope-heading {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.how-scope-heading h2 {
  color: var(--home-black);
}

.how-scope-board {
  display: grid;
  width: min(100%, 1360px);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1.5px solid var(--home-black);
  background: var(--home-white);
  box-shadow: 0 28px 80px rgba(7, 7, 7, 0.08);
}

.how-scope-card {
  display: flex;
  min-height: 760px;
  flex-direction: column;
  padding: 42px 34px 34px;
  border-right: 1.5px solid var(--home-black);
  background: #f8f8f4;
  color: var(--home-black);
}

.how-scope-card:last-child {
  border-right: 0;
}

.how-scope-featured {
  background: var(--home-lime);
}

.how-scope-pill {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 48px;
  padding: 12px 20px 10px;
  border-radius: 999px;
  background: var(--home-black);
  color: var(--home-lime);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(7, 7, 7, 0.12);
}

.how-scope-card h3 {
  margin: 0 0 26px;
  max-width: 470px;
  color: var(--home-black);
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.how-scope-card p {
  margin: 0 0 44px;
  max-width: 460px;
  color: rgba(7, 7, 7, 0.66);
  font-size: 18px;
  line-height: 1.38;
}

.how-scope-card ul {
  display: grid;
  gap: 0;
  margin: 0 0 38px;
  padding: 30px 0 0;
  border-top: 1px solid rgba(7, 7, 7, 0.78);
  list-style: none;
}

.how-scope-card li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(7, 7, 7, 0.18);
  color: var(--home-black);
  font-size: 16px;
  line-height: 1.34;
}

.how-scope-card a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 0 18px;
  border: 1.5px solid var(--home-black);
  border-radius: 6px;
  background: var(--home-white);
  color: var(--home-black);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.how-scope-card a svg {
  width: 20px;
  height: 20px;
}

.how-scope-card a:hover,
.how-scope-card a:focus-visible {
  background: var(--home-black);
  color: var(--home-white);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(7, 7, 7, 0.16);
}

@media (max-width: 1100px) {
  .how-scope-board {
    grid-template-columns: 1fr;
  }

  .how-scope-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1.5px solid var(--home-black);
    padding: 38px 30px 30px;
  }

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

  .how-scope-pill {
    margin-bottom: 34px;
  }

  .how-scope-card h3 {
    max-width: 760px;
    font-size: clamp(32px, 6vw, 46px);
  }

  .how-scope-card p {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  .home-page .how-scope-section {
    padding: 82px 16px;
  }

  .how-scope-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .how-scope-board {
    border-width: 1px;
  }

  .how-scope-card {
    padding: 28px 22px 22px;
    border-bottom-width: 1px;
  }

  .how-scope-pill {
    margin-bottom: 28px;
    padding: 10px 16px 9px;
    font-size: 13px;
  }

  .how-scope-card h3 {
    margin-bottom: 20px;
    font-size: 31px;
    line-height: 1.02;
  }

  .how-scope-card p {
    margin-bottom: 30px;
    font-size: 16px;
  }

  .how-scope-card ul {
    margin-bottom: 28px;
    padding-top: 22px;
  }

  .how-scope-card li {
    padding: 13px 0;
    font-size: 15px;
  }
}

/* Final professional heading balance */
:root {
  --type-hero-title: clamp(34px, 3.8vw, 50px);
  --type-section-title: clamp(28px, 3vw, 42px);
  --type-feature-title: clamp(24px, 2.35vw, 34px);
  --type-card-title: 21px;
  --type-lede: 17px;
}

h1,
h2,
h3,
.home-page .terminal-hero h1,
.conversion-hero-copy h1,
.concept-f-copy h1,
.device-hero-copy h1,
.home-3d-copy h1,
.subpage-hero h1,
.subpage-hero-black h1,
.page-hero-copy h1,
.quote-copy h1,
.designade-contact-hero h1,
.home-page .issues-section h2,
.home-page .editorial-section-head h2,
.home-page .process-heading h2,
.home-page .results-intro h2,
.home-page .faq-section h2,
.page-intro h2,
.services-page .page-intro h2,
.results-page .page-intro h2,
.pricing-page .page-intro h2,
.detail-copy h2,
.services-page .detail-copy h2,
.editorial-case-copy h2,
.results-page .editorial-case-copy h2,
.editorial-steps h2,
.services-page .editorial-steps h2,
.pricing-factors h2,
.pricing-faq h2,
.contact-brief h2,
.contact-page .contact-brief h2,
.contact-page .editorial-steps h2,
.editorial-calculator .calculator-copy h2,
.pricing-page .editorial-calculator .calculator-copy h2,
.scope-grid h2,
.pricing-page .scope-grid h2,
.home-page .system-statement h2,
.home-page .immersive-heading h2,
.black-statement h2,
.services-page .black-statement h2,
.results-page .black-statement h2,
.home-page .immersive-copy h3,
.home-page .service-tile h3,
.home-page .process-card h3,
.service-tile h3,
.process-list h3,
.case-card h3,
.scope-card h3,
.calculator-results h3,
.how-scope-card h3 {
  font-weight: 700;
  line-height: 1.08;
}

.subpage-hero h1,
.subpage-hero-black h1,
.page-hero-copy h1,
.quote-copy h1,
.designade-contact-hero h1 {
  max-width: 880px;
}

.how-scope-card h3 {
  font-size: clamp(30px, 3.2vw, 44px);
}

@media (max-width: 680px) {
  :root {
    --type-hero-title: clamp(30px, 8vw, 38px);
    --type-section-title: clamp(26px, 7vw, 32px);
    --type-feature-title: clamp(24px, 6.5vw, 30px);
    --type-card-title: 20px;
    --type-lede: 16px;
  }

  .how-scope-card h3 {
    font-size: 28px;
  }
}
