:root {
  color-scheme: light;
  --ink: #1f2f3d;
  --muted: #60707c;
  --line: #d3dce2;
  --paper: #f5f7f9;
  --panel: #ffffff;
  --teal: #2f746f;
  --teal-dark: #1f5653;
  --cyan: #2d6f7f;
  --coral: #b04732;
  --gold: #c77f20;
  --blue: #174d63;
  --violet: #5d5366;
  --redwood: #8f3e2d;
  --sand: #eef2f4;
  --clay: #f0c4aa;
  --bark: #0d2d3f;
  --bark-soft: #123f55;
  --navy: #0c2a3b;
  --navy-deep: #071d2b;
  --shadow: 0 18px 48px rgba(16, 40, 56, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(16, 40, 56, 0.94);
  border-bottom: 1px solid rgba(234, 223, 212, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 236px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 1px solid rgba(255, 250, 244, 0.48);
  border-radius: 8px;
  color: #fffaf4;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.12), rgba(255, 250, 244, 0.02)),
    #123248;
  box-shadow: inset 0 0 0 1px rgba(216, 185, 166, 0.16), 0 12px 28px rgba(0, 0, 0, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 2px;
  color: #fffaf4;
  line-height: 1;
}

.brand-text strong {
  font-size: 24px;
  font-weight: 800;
}

.brand-text small {
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: #efe5dc;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--redwood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--redwood);
  border-radius: var(--radius);
  color: #fff;
  background: var(--coral);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  background: #5f261f;
  box-shadow: 0 14px 34px rgba(124, 52, 40, 0.24);
  transform: translateY(-1px);
}

.button-secondary {
  color: #fffaf4;
  background: rgba(255, 250, 244, 0.08);
  border-color: rgba(255, 250, 244, 0.46);
}

.button-secondary:hover {
  color: #fff;
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 14px;
}

.review-signal {
  background: var(--panel);
}

.review-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.review-map article {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.82), rgba(246, 241, 235, 0.88));
}

.review-map article:last-child {
  border-right: 0;
}

.review-map span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.review-map h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.05;
}

.review-map p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 72px) 42px;
  color: #fffaf4;
  background:
    radial-gradient(circle at 80% 16%, rgba(124, 52, 40, 0.42), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(47, 116, 111, 0.26), transparent 32%),
    linear-gradient(135deg, var(--navy) 0%, var(--bark-soft) 46%, var(--navy-deep) 100%);
}

.thank-you-hero {
  grid-template-columns: minmax(0, 760px);
  align-content: center;
}

.service-hero {
  grid-template-columns: minmax(0, 860px);
  align-content: center;
  min-height: 66vh;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--redwood);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-lede,
.section-heading p,
.contact-copy > p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.hero .eyebrow {
  color: #f2c4b1;
}

.hero .hero-lede {
  color: rgba(255, 250, 244, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 0;
}

.proof-points div {
  padding: 18px;
  border: 1px solid rgba(234, 223, 212, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.08);
}

.proof-points dt {
  margin-bottom: 6px;
  color: #f2c4b1;
  font-size: 22px;
  font-weight: 800;
}

.proof-points dd {
  margin: 0;
  color: rgba(255, 250, 244, 0.7);
  font-size: 13px;
  line-height: 1.35;
}

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

.browser-shell {
  overflow: hidden;
  border: 1px solid rgba(234, 223, 212, 0.24);
  border-radius: var(--radius);
  background: #fffaf4;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
}

.browser-bar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #eadfd4;
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--coral);
}

.browser-bar span:nth-child(2) {
  background: var(--gold);
}

.browser-bar span:nth-child(3) {
  background: var(--teal);
}

.dashboard {
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(124, 52, 40, 0.1), transparent 46%),
    #fffaf4;
}

.dashboard-top,
.metric-grid,
.workflow,
.assistant-card {
  border-radius: var(--radius);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 185, 166, 0.18), transparent 46%),
    var(--navy);
}

.dashboard-top p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.dashboard-top strong {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
}

.status-pill,
.solution-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill {
  color: var(--navy);
  background: #eadfd4;
}

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

.metric-grid article {
  min-height: 128px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fffaf4;
}

.metric-grid span,
.metric-grid small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.metric-grid strong {
  display: block;
  margin: 16px 0 6px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 30px);
}

.workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  background: #f4ebe3;
}

.workflow-line {
  position: absolute;
  top: 32px;
  right: 52px;
  left: 52px;
  height: 2px;
  background: #c9b5a7;
}

.workflow > div:not(.workflow-line) {
  position: relative;
  z-index: 1;
}

.node {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  border: 6px solid #c9b5a7;
  border-radius: 50%;
  background: #fffaf4;
}

.node.active {
  border-color: var(--teal);
}

.workflow strong,
.workflow small {
  display: block;
}

.workflow small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.assistant-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: #fff;
  background: var(--blue);
}

.assistant-card p {
  margin: 0;
  line-height: 1.45;
}

.spark-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--redwood);
  font-weight: 800;
}

.section {
  padding: clamp(70px, 9vw, 116px) clamp(20px, 5vw, 72px);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
}

.detail-list {
  display: grid;
  gap: 16px;
}

.detail-list article,
.product-copy {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(16, 40, 56, 0.08);
}

.detail-list p,
.product-copy p,
.product-copy li {
  color: var(--muted);
  line-height: 1.65;
}

.section-alt {
  background:
    linear-gradient(135deg, rgba(124, 52, 40, 0.09), transparent 38%),
    #eadfd4;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

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

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

.service-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(76, 54, 43, 0.1);
}

.link-card {
  display: block;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.link-card:hover {
  box-shadow: 0 18px 42px rgba(16, 40, 56, 0.16);
  transform: translateY(-2px);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--redwood);
  font-weight: 800;
}

.service-card p,
.solution-list p,
.approach-steps p,
.cred-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(76, 54, 43, 0.1);
}

.solution-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 22px;
  align-items: start;
}

.solution-preview {
  display: grid;
  gap: 10px;
  overflow: hidden;
  justify-self: end;
  width: 180px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf4;
  box-shadow: 0 18px 44px rgba(16, 40, 56, 0.12);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.solution-preview:hover {
  box-shadow: 0 22px 50px rgba(16, 40, 56, 0.18);
  transform: translateY(-1px);
}

.solution-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.solution-preview span {
  display: block;
  padding: 0 12px 12px;
  border-top: 1px solid var(--line);
  color: var(--redwood);
  font-size: 13px;
  font-weight: 700;
}

.solution-tag {
  margin-bottom: 14px;
  color: var(--redwood);
  background: #f1d9cb;
}

.solution-title {
  display: grid;
  gap: 12px;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(124, 52, 40, 0.18);
  border-radius: var(--radius);
  color: #fffaf4;
  background: var(--redwood);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.signal-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  padding-left: 18px;
  border-left: 3px solid var(--clay);
  font-weight: 700;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 37, 51, 0.76);
}

.modal-panel {
  position: relative;
  overflow: auto;
  width: min(1180px, 100%);
  max-height: min(86vh, 920px);
  border: 1px solid rgba(234, 223, 212, 0.32);
  border-radius: var(--radius);
  background: #fffaf4;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.modal-close {
  position: sticky;
  top: 14px;
  z-index: 2;
  display: flex;
  margin: 14px 14px 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fffaf4;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.modal-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  padding: 0 28px 28px;
}

.modal-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.modal-copy h2,
.modal-copy p {
  margin: 0;
}

.modal-copy p,
.modal-copy li {
  color: var(--muted);
  line-height: 1.65;
}

.modal-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.modal-price {
  margin-bottom: 4px;
}

.modal-image {
  display: block;
  width: 100%;
  max-height: 660px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: contain;
  background: #fff;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.product-copy {
  display: grid;
  gap: 16px;
}

.product-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.product-image {
  display: block;
  width: 100%;
  max-height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: contain;
  background: #fff;
  box-shadow: var(--shadow);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
}

.approach-steps {
  display: grid;
  gap: 18px;
}

.approach-steps article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.approach-steps span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--redwood);
  font-weight: 800;
}

.credibility {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 185, 166, 0.14), transparent 34%),
    var(--navy);
}

.credibility .eyebrow {
  color: #f2c4b1;
}

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

.cred-grid p {
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.05);
}

.insights-preview {
  background:
    linear-gradient(135deg, rgba(45, 111, 127, 0.08), transparent 42%),
    #fffaf4;
}

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

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

.article-card {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(16, 40, 56, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.article-card:hover {
  box-shadow: 0 18px 42px rgba(16, 40, 56, 0.16);
  transform: translateY(-2px);
}

.article-card span {
  margin-bottom: 34px;
  color: var(--redwood);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card p {
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  color: var(--redwood);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-page {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 116px) clamp(20px, 5vw, 72px);
}

.article-page h1 {
  color: var(--ink);
  font-size: clamp(40px, 6vw, 68px);
}

.article-page h2 {
  margin-top: 42px;
  font-size: clamp(26px, 3vw, 36px);
}

.article-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.article-lede {
  color: var(--ink);
  font-size: clamp(19px, 2vw, 23px);
}

.article-page .button {
  margin-top: 24px;
}

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

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(16, 40, 56, 0.08);
}

.faq-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.enquiry-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  color: #fffaf4;
  background: linear-gradient(135deg, var(--navy), #163c54);
}

.enquiry-strip .eyebrow {
  color: #f2c4b1;
}

.enquiry-grid {
  display: grid;
  gap: 14px;
}

.enquiry-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.08);
}

.enquiry-grid h3 {
  margin: 0 0 8px;
}

.enquiry-grid p {
  margin: 0;
  color: rgba(255, 250, 244, 0.76);
  line-height: 1.6;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 78px);
  padding: clamp(70px, 9vw, 116px) clamp(20px, 5vw, 72px);
  color: #fffaf4;
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 185, 166, 0.18), transparent 26%),
    linear-gradient(135deg, var(--navy), var(--blue));
}

.contact-section .eyebrow {
  color: #f2c4b1;
}

.contact-section .contact-copy > p,
.contact-section .contact-details {
  color: rgba(255, 250, 244, 0.76);
}

.contact-copy {
  max-width: 720px;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: var(--muted);
  font-weight: 700;
}

.contact-details a {
  color: #fffaf4;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf4;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 8px;
  color: #263745;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9b5a7;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fffaf4;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(124, 52, 40, 0.18);
  border-color: var(--redwood);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

@media (max-width: 1020px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .contact-section,
  .enquiry-strip,
  .split-section,
  .credibility,
  .detail-grid,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 720px;
  }

  .service-grid,
  .service-grid-four,
  .article-grid,
  .cred-grid,
  .faq-grid,
  .review-map {
    grid-template-columns: 1fr;
  }

  .review-map article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .review-map article:last-child {
    border-bottom: 0;
  }

  .modal-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .brand {
    min-width: 204px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    font-size: 21px;
  }

  .brand-text strong {
    font-size: 22px;
  }

  .brand-text small {
    font-size: 10px;
  }

  .button-small {
    width: 100%;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-visual {
    display: none;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

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

  .proof-points,
  .metric-grid,
  .workflow {
    grid-template-columns: 1fr;
  }

  .dashboard {
    padding: 16px;
  }

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

  .workflow-line {
    display: none;
  }

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

  .solution-body {
    grid-template-columns: 1fr;
  }

  .solution-preview {
    justify-self: start;
    width: min(220px, 100%);
  }

  .modal {
    padding: 12px;
  }

  .modal-content {
    padding: 0 18px 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Consultant-style homepage refresh */
.consultant-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  min-height: calc(100vh - 84px);
  align-items: end;
  padding-top: clamp(76px, 10vw, 132px);
  padding-bottom: clamp(52px, 7vw, 84px);
  background:
    linear-gradient(135deg, rgba(166, 66, 50, 0.26), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(216, 185, 166, 0.18), transparent 28%),
    var(--navy-deep);
}

.consultant-hero .hero-copy {
  max-width: 980px;
}

.consultant-hero h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(56px, 9vw, 118px);
  line-height: 0.92;
}

.consultant-hero .hero-lede {
  max-width: 760px;
  color: rgba(255, 250, 244, 0.78);
  font-size: clamp(19px, 2vw, 24px);
}

.hero-panel {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 250, 244, 0.2);
  border-radius: var(--radius);
  color: #fffaf4;
  background: rgba(255, 250, 244, 0.06);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
}

.hero-panel-label {
  margin: 0;
  color: #f2c4b1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 250, 244, 0.14);
  color: rgba(255, 250, 244, 0.82);
  font-weight: 700;
  line-height: 1.35;
}

.hero-panel-proof {
  display: grid;
  gap: 6px;
  padding-top: 4px;
}

.hero-panel-proof strong {
  color: #f2c4b1;
  font-size: 34px;
  line-height: 1;
}

.hero-panel-proof span {
  color: rgba(255, 250, 244, 0.7);
  line-height: 1.55;
}

.marquee-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 250, 244, 0.16);
  border-bottom: 1px solid rgba(255, 250, 244, 0.16);
  color: #fffaf4;
  background: var(--redwood);
}

.marquee-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid rgba(255, 250, 244, 0.18);
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 800;
  text-align: center;
}

.marquee-strip span:last-child {
  border-right: 0;
}

.simple-section {
  background: #fffaf4;
}

.simple-section .section-heading {
  max-width: 1000px;
  margin-bottom: 26px;
}

.simple-section h2,
.consultant-section h2,
.insight-strip h2 {
  max-width: 980px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
}

.offer-list {
  border-top: 1px solid var(--line);
}

.offer-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(28px, 5vw, 54px) 0;
  border-bottom: 1px solid var(--line);
}

.offer-row > span {
  color: var(--redwood);
  font-size: 18px;
  font-weight: 900;
}

.offer-row h3 {
  max-width: 900px;
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.offer-row p,
.consultant-note p,
.insight-strip p {
  max-width: 840px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.consultant-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 7vw, 90px);
  color: #fffaf4;
  background:
    linear-gradient(135deg, rgba(216, 185, 166, 0.14), transparent 34%),
    var(--navy);
}

.consultant-section .eyebrow {
  color: #f2c4b1;
}

.consultant-note {
  display: grid;
  align-content: start;
  gap: 20px;
}

.consultant-note p {
  margin-bottom: 0;
  color: rgba(255, 250, 244, 0.76);
}

.simple-proof {
  grid-template-columns: 1fr;
  margin-top: 12px;
}

.simple-proof div {
  background: rgba(255, 250, 244, 0.08);
}

.insight-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  background: var(--sand);
}

.quick-links {
  display: grid;
  border-top: 1px solid rgba(16, 40, 56, 0.18);
}

.quick-links a {
  padding: 22px 0;
  border-bottom: 1px solid rgba(16, 40, 56, 0.18);
  color: var(--ink);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.05;
}

.quick-links a:hover {
  color: var(--redwood);
}

@media (max-width: 1020px) {
  .consultant-hero,
  .consultant-section,
  .insight-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header .button-small {
    width: auto;
    margin-left: 68px;
    padding: 11px 16px;
  }

  .consultant-hero h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .hero-panel {
    padding: 22px;
  }

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

  .offer-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Business homepage refresh */
.business-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(720px, calc(100vh - 84px));
  padding: clamp(70px, 8vw, 112px) clamp(20px, 5vw, 80px) clamp(48px, 6vw, 78px);
  color: #fffaf4;
  background:
    linear-gradient(90deg, rgba(7, 29, 43, 0.94) 0%, rgba(7, 29, 43, 0.78) 50%, rgba(7, 29, 43, 0.34) 100%),
    radial-gradient(circle at 78% 38%, rgba(176, 71, 50, 0.28), transparent 34%),
    radial-gradient(circle at 74% 72%, rgba(33, 124, 142, 0.22), transparent 28%),
    linear-gradient(135deg, #071d2b 0%, #0d2d3f 52%, #061724 100%);
}

.business-hero::before,
.business-hero::after {
  position: absolute;
  right: -14vw;
  width: 58vw;
  height: 1px;
  content: "";
  background: rgba(255, 250, 244, 0.14);
  transform: rotate(-18deg);
}

.business-hero::before {
  top: 28%;
}

.business-hero::after {
  top: 42%;
}

.hero-motion,
.hero-stage {
  position: relative;
  z-index: 1;
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}

.motion-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 250, 244, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 244, 0.055) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 36%, #000 100%);
  animation: mi-suite-grid-shift 16s linear infinite;
}

.motion-panel {
  position: absolute;
  right: clamp(32px, 8vw, 150px);
  width: min(430px, 34vw);
  height: 86px;
  padding: 0;
  border: 1px solid rgba(255, 250, 244, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(242, 196, 177, 0.18), rgba(255, 250, 244, 0.045)),
    rgba(255, 250, 244, 0.05);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  animation: mi-suite-panel-drift 8s ease-in-out infinite;
}

.panel-one {
  top: 22%;
}

.panel-two {
  top: 47%;
  right: clamp(78px, 13vw, 250px);
  animation-delay: -2.2s;
}

.panel-three {
  top: 68%;
  animation-delay: -4.5s;
}

.motion-line {
  position: absolute;
  right: 7vw;
  width: 42vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(242, 196, 177, 0.46), transparent);
  transform: rotate(-16deg);
  animation: mi-suite-line-sweep 6s ease-in-out infinite;
}

.line-one {
  top: 30%;
}

.line-two {
  top: 53%;
  animation-delay: -2s;
}

.line-three {
  top: 76%;
  animation-delay: -4s;
}

.hero-stage {
  max-width: 820px;
}

.business-hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: #fffaf4;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.business-hero .hero-lede {
  max-width: 680px;
  color: rgba(255, 250, 244, 0.78);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
}

.business-hero .hero-actions {
  margin-top: 32px;
}

.system-board {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 460px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.07);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  animation: mi-suite-float 7s ease-in-out infinite;
}

.board-top,
.signal-row,
.board-proof {
  border-radius: var(--radius);
  background: rgba(8, 20, 29, 0.5);
}

.board-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: rgba(255, 250, 244, 0.7);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.board-top strong {
  color: #f2c4b1;
}

.signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 250, 244, 0.08);
}

.signal-row:nth-child(3) {
  animation: mi-suite-signal 4.5s ease-in-out infinite;
}

.signal-row:nth-child(5) {
  animation: mi-suite-signal 5.5s ease-in-out infinite;
}

.signal-row span {
  color: rgba(255, 250, 244, 0.72);
  font-weight: 700;
}

.signal-row strong {
  color: #fffaf4;
  font-size: 24px;
  line-height: 1;
}

.board-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin-top: 4px;
  background: rgba(255, 250, 244, 0.14);
}

.board-proof span {
  padding: 15px;
  color: rgba(255, 250, 244, 0.78);
  background: rgba(8, 20, 29, 0.72);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.motion-strip {
  overflow: hidden;
  border-top: 1px solid rgba(255, 250, 244, 0.16);
  border-bottom: 1px solid rgba(255, 250, 244, 0.16);
  color: #fffaf4;
  background: linear-gradient(90deg, var(--redwood), #174d63);
}

.motion-track {
  display: flex;
  width: max-content;
  animation: mi-suite-marquee 28s linear infinite;
}

.motion-track span {
  display: inline-grid;
  place-items: center;
  min-width: clamp(180px, 22vw, 310px);
  min-height: 84px;
  padding: 18px 28px;
  border-right: 1px solid rgba(255, 250, 244, 0.18);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

@keyframes mi-suite-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes mi-suite-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes mi-suite-signal {
  0%,
  100% {
    border-color: rgba(255, 250, 244, 0.08);
  }

  50% {
    border-color: rgba(242, 196, 177, 0.36);
  }
}

@keyframes mi-suite-grid-shift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 84px 84px;
  }
}

@keyframes mi-suite-panel-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-18px, -10px, 0);
  }
}

@keyframes mi-suite-line-sweep {
  0%,
  100% {
    opacity: 0.22;
    transform: translateX(0) rotate(-16deg);
  }

  50% {
    opacity: 0.72;
    transform: translateX(-38px) rotate(-16deg);
  }
}

.pain-section,
.subscription-section {
  background: #fffaf4;
}

.pain-section .section-heading,
.subscription-section .section-heading {
  max-width: 860px;
}

.pain-section h2,
.subscription-section h2,
.service-showcase h2,
.impact-section h2,
.guide-section h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
}

.subscription-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7f9 100%);
}

.subscription-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.65;
}

.subscription-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 4vw, 46px);
}

.subscription-card {
  display: grid;
  align-content: start;
  min-height: 330px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(13, 45, 63, 0.1);
}

.subscription-card.featured-plan {
  border-color: rgba(176, 71, 50, 0.42);
  background:
    linear-gradient(145deg, rgba(176, 71, 50, 0.08), transparent 44%),
    #ffffff;
}

.plan-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  margin-bottom: 30px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-plan .plan-label {
  background: var(--redwood);
}

.subscription-card h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
}

.subscription-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.subscription-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--redwood);
  font-weight: 800;
  border-bottom: 2px solid rgba(176, 71, 50, 0.42);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(24px, 3.5vw, 42px);
  background: rgba(16, 40, 56, 0.16);
}

.pain-card {
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: clamp(22px, 3vw, 34px);
  background: #fffaf4;
}

.pain-card span {
  color: var(--redwood);
  font-weight: 900;
}

.pain-card h3 {
  margin-top: 44px;
  margin-bottom: 16px;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.05;
}

.pain-card p,
.showcase-intro p {
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.6;
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 7vw, 96px);
  color: #fffaf4;
  background:
    linear-gradient(145deg, rgba(47, 116, 111, 0.18), transparent 36%),
    var(--navy-deep);
}

.service-showcase .eyebrow,
.impact-section .eyebrow {
  color: #f2c4b1;
}

.service-showcase h2 {
  color: #fffaf4;
}

.showcase-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.showcase-intro p {
  max-width: 520px;
  color: rgba(255, 250, 244, 0.7);
}

.showcase-list {
  display: grid;
  gap: 18px;
}

.showcase-item {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 250, 244, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.showcase-item:hover {
  border-color: rgba(242, 196, 177, 0.42);
  background: rgba(255, 250, 244, 0.1);
  transform: translateY(-4px);
}

.showcase-item span {
  color: #f2c4b1;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-item h3 {
  max-width: 760px;
  color: #fffaf4;
  font-size: clamp(23px, 2.6vw, 36px);
  line-height: 1.07;
}

.showcase-item a {
  width: fit-content;
  color: rgba(255, 250, 244, 0.82);
  font-weight: 800;
  border-bottom: 2px solid var(--coral);
}

.impact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
  color: #fffaf4;
  background: var(--navy);
}

.impact-section h2 {
  color: #fffaf4;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.impact-stat {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  min-height: 190px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(255, 250, 244, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.07);
}

.impact-stat strong {
  color: #f2c4b1;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}

.impact-stat span {
  color: rgba(255, 250, 244, 0.74);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 700;
  line-height: 1.45;
}

.guide-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: end;
  background: var(--sand);
}

.guide-links {
  display: grid;
  border-top: 1px solid rgba(16, 40, 56, 0.2);
}

.guide-links a {
  padding: 24px 0;
  border-bottom: 1px solid rgba(16, 40, 56, 0.2);
  color: var(--ink);
  font-size: clamp(21px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1;
  transition: color 160ms ease, padding-left 160ms ease;
}

.guide-links a:hover {
  padding-left: 12px;
  color: var(--redwood);
}

.reveal-on-scroll {
  opacity: 1;
  transform: translateY(0);
  animation: mi-suite-rise 620ms ease both;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes mi-suite-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .system-board,
  .signal-row,
  .hero-motion,
  .reveal-on-scroll {
    animation: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .business-hero,
  .service-showcase,
  .impact-section,
  .guide-section {
    grid-template-columns: 1fr;
  }

  .system-board {
    min-height: auto;
  }

  .showcase-intro {
    position: static;
  }

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

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

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

  .pain-card h3 {
    margin-top: 48px;
  }
}

@media (max-width: 720px) {
  .business-hero {
    min-height: auto;
    padding-top: 58px;
  }

  .business-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .motion-panel {
    display: none;
  }

  .motion-grid {
    mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%);
  }

  .motion-track span {
    min-width: 220px;
    min-height: 68px;
    font-size: 25px;
  }

  .board-proof,
  .impact-stat {
    grid-template-columns: 1fr;
  }
}

/* Professional sizing correction */
.business-hero {
  min-height: min(560px, calc(100vh - 84px));
  padding-top: clamp(46px, 5vw, 64px);
  padding-bottom: clamp(38px, 4vw, 54px);
}

.hero-stage {
  max-width: 660px;
}

.business-hero h1 {
  max-width: 660px;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1;
}

.business-hero .hero-lede {
  max-width: 620px;
  font-size: clamp(16px, 1.1vw, 18px);
}

.motion-panel {
  width: min(280px, 22vw);
  height: 52px;
  opacity: 0.46;
}

.business-hero .hero-actions {
  margin-top: 24px;
}

.motion-track span {
  min-width: clamp(150px, 17vw, 230px);
  min-height: 54px;
  padding: 12px 20px;
  font-size: clamp(17px, 2vw, 24px);
}

.pain-section h2,
.subscription-section h2,
.service-showcase h2,
.impact-section h2,
.guide-section h2 {
  max-width: 700px;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.12;
}

.section {
  padding-top: clamp(44px, 5vw, 70px);
  padding-bottom: clamp(44px, 5vw, 70px);
}

.pain-card {
  min-height: 230px;
}

.pain-card h3,
.showcase-item h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
}

.guide-links a {
  font-size: clamp(20px, 2vw, 29px);
}

@media (max-width: 720px) {
  .business-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .pain-section h2,
  .subscription-section h2,
  .service-showcase h2,
  .impact-section h2,
  .guide-section h2 {
    font-size: clamp(27px, 8vw, 38px);
  }
}

/* Professional subpage refresh */
main > .service-hero {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 760px);
  min-height: min(520px, calc(82vh - 84px));
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(48px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(8, 20, 29, 0.94), rgba(8, 20, 29, 0.78) 48%, rgba(8, 20, 29, 0.54)),
    radial-gradient(circle at 86% 34%, rgba(166, 66, 50, 0.24), transparent 30%),
    linear-gradient(135deg, #0b1b27 0%, #102838 56%, #08141d 100%);
}

main > .service-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 250, 244, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 244, 0.045) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.78;
}

main > .service-hero::after {
  position: absolute;
  top: 28%;
  right: -8%;
  width: 46vw;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(242, 196, 177, 0.42), transparent);
  transform: rotate(-16deg);
}

main > .service-hero .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

main > .service-hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
}

main > .service-hero .hero-lede {
  max-width: 680px;
  font-size: clamp(17px, 1.4vw, 20px);
}

.detail-grid {
  align-items: start;
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(54px, 6vw, 82px);
  background: #fffaf4;
}

.detail-grid > div:first-child {
  position: sticky;
  top: 112px;
}

.detail-grid > div:first-child h2,
.section-heading h2 {
  max-width: 740px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.1;
}

.detail-list {
  gap: 12px;
}

.detail-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: none;
}

.detail-list h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
}

.detail-list p {
  margin-bottom: 0;
  font-size: clamp(16px, 1.25vw, 18px);
}

.section-alt {
  background:
    linear-gradient(135deg, rgba(166, 66, 50, 0.08), transparent 34%),
    var(--sand);
}

.service-grid,
.article-grid-large {
  gap: 14px;
}

.service-card,
.article-card {
  min-height: 220px;
  padding: clamp(22px, 3vw, 30px);
  border-color: rgba(16, 40, 56, 0.16);
  box-shadow: none;
}

.service-card:hover,
.article-card:hover {
  box-shadow: 0 18px 42px rgba(16, 40, 56, 0.12);
}

.card-icon,
.article-card span {
  margin-bottom: 24px;
}

.service-card h3,
.article-card h3 {
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.12;
}

.service-card p,
.article-card p {
  font-size: 16px;
}

.article-page {
  position: relative;
  max-width: 960px;
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
}

.article-page::before {
  display: block;
  width: 72px;
  height: 4px;
  margin-bottom: 28px;
  content: "";
  border-radius: 999px;
  background: var(--redwood);
}

.article-page h1 {
  max-width: 860px;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.04;
}

.article-lede {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.62;
}

.article-page h2 {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.15;
}

.article-page p,
.article-page li {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.article-page ul,
.article-page ol {
  display: grid;
  gap: 10px;
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.article-grid-large .article-card {
  min-height: 210px;
}

.product-detail {
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(54px, 6vw, 82px);
}

.product-copy {
  box-shadow: none;
}

@media (max-width: 1020px) {
  .detail-grid > div:first-child {
    position: static;
  }

  .detail-list article,
  .service-grid,
  .article-grid,
  .article-grid-large {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  main > .service-hero {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 50px;
  }

  main > .service-hero h1,
  .article-page h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .detail-list article {
    gap: 8px;
  }
}

/* Premium homepage refresh - 2026-06-20 */
:root {
  --ink: #111c24;
  --muted: #52616d;
  --line: #dbe2e6;
  --paper: #f7f3ed;
  --panel: #ffffff;
  --navy: #071824;
  --navy-deep: #030d14;
  --blue: #145f82;
  --electric: #2f8cff;
  --violet: #6f5cff;
  --green: #567c65;
  --gold: #b98942;
  --coral: #bf563f;
  --redwood: #943d2d;
  --clay: #efc6b4;
  --sand: #efe8dc;
  --shadow: 0 24px 64px rgba(6, 21, 32, 0.16);
}

body {
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
}

h1,
h2,
h3,
.brand-text strong {
  font-family: Sora, Manrope, Inter, system-ui, sans-serif;
}

.eyebrow,
.brand-text small,
.plan-label,
.showcase-item span,
.article-card span,
.solution-tag {
  letter-spacing: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(47, 140, 255, 0.72);
  outline-offset: 3px;
}

.site-header {
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(7, 24, 36, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(3, 13, 20, 0.18);
}

.brand {
  min-width: 240px;
}

.brand-mark {
  border-color: rgba(239, 198, 180, 0.58);
  background:
    linear-gradient(145deg, rgba(47, 140, 255, 0.18), rgba(185, 137, 66, 0.12)),
    #0c2738;
}

.brand-text small {
  color: #f3c8b4;
}

.nav-links {
  gap: clamp(14px, 2vw, 28px);
}

.button {
  min-height: 50px;
  border-color: rgba(191, 86, 63, 0.9);
  color: #fffaf4;
  background: linear-gradient(135deg, #c65a42, #943d2d);
  box-shadow: 0 14px 30px rgba(148, 61, 45, 0.18);
}

.button:hover {
  background: linear-gradient(135deg, #d7674c, #7d3024);
}

.button-secondary {
  border-color: rgba(255, 250, 244, 0.44);
  background: rgba(255, 250, 244, 0.08);
  box-shadow: none;
}

.business-hero {
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  min-height: min(780px, calc(100vh - 78px));
  padding: clamp(68px, 7vw, 112px) clamp(20px, 5vw, 78px) clamp(52px, 6vw, 86px);
  background:
    linear-gradient(115deg, rgba(3, 13, 20, 0.98) 0%, rgba(7, 24, 36, 0.96) 44%, rgba(11, 40, 57, 0.9) 100%),
    #071824;
}

.business-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 250, 244, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 244, 0.055) 1px, transparent 1px);
  background-size: 78px 78px;
}

.business-hero::after {
  position: absolute;
  inset: auto -10vw 8% 38vw;
  z-index: -1;
  height: 62%;
  content: "";
  background:
    linear-gradient(140deg, transparent 0 32%, rgba(47, 140, 255, 0.15) 32% 33%, transparent 33% 100%),
    linear-gradient(155deg, transparent 0 48%, rgba(185, 137, 66, 0.2) 48% 49%, transparent 49% 100%),
    linear-gradient(25deg, transparent 0 62%, rgba(111, 92, 255, 0.13) 62% 63%, transparent 63% 100%);
}

.business-hero h1 {
  max-width: 790px;
  margin-bottom: 26px;
  color: #fffaf4;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.98;
}

.business-hero .hero-stage {
  max-width: 790px;
}

.business-hero .hero-lede {
  max-width: 690px;
  color: rgba(255, 250, 244, 0.78);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.58;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin: 34px 0 0;
}

.hero-metrics div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255, 250, 244, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.07);
}

.hero-metrics dt {
  margin-bottom: 8px;
  color: #f1c7b7;
  font-family: Sora, Manrope, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(255, 250, 244, 0.72);
  font-size: 13px;
  line-height: 1.38;
}

.hero-composition {
  position: relative;
  min-height: 560px;
}

.suite-window {
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.08);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.dashboard-window {
  position: absolute;
  inset: 56px 0 54px 24px;
  overflow: hidden;
  background: #f9f6f0;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 16px;
  color: #6a7680;
  border-bottom: 1px solid #e0e5e8;
  background: #efe8dc;
  font-size: 12px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #bf563f;
}

.window-bar span:nth-child(2) {
  background: #b98942;
}

.window-bar span:nth-child(3) {
  margin-right: 10px;
  background: #567c65;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  padding: 22px;
}

.dashboard-card {
  min-height: 130px;
  padding: 18px;
  border: 1px solid #dbe2e6;
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
}

.dashboard-card span,
.checklist-window span,
.window-label {
  display: block;
  margin-bottom: 10px;
  color: #6a7680;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-card strong {
  display: block;
  max-width: 260px;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.12;
}

.dashboard-card small {
  display: block;
  margin-top: 20px;
  color: var(--green);
  font-weight: 800;
}

.primary-card {
  grid-row: span 2;
  min-height: 276px;
  color: #fffaf4;
  background:
    linear-gradient(145deg, rgba(47, 140, 255, 0.2), rgba(185, 137, 66, 0.08)),
    #0c2738;
}

.primary-card span {
  color: rgba(255, 250, 244, 0.72);
}

.primary-card strong {
  color: #fffaf4;
  font-size: clamp(25px, 3vw, 38px);
}

.signal-bars {
  display: grid;
  gap: 10px;
  margin-top: 42px;
}

.signal-bars i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f8cff, rgba(47, 140, 255, 0.18));
}

.signal-bars i:nth-child(2) {
  width: 82%;
  background: linear-gradient(90deg, #b98942, rgba(185, 137, 66, 0.14));
}

.signal-bars i:nth-child(3) {
  width: 68%;
  background: linear-gradient(90deg, #567c65, rgba(86, 124, 101, 0.16));
}

.signal-bars i:nth-child(4) {
  width: 88%;
  background: linear-gradient(90deg, #6f5cff, rgba(111, 92, 255, 0.16));
}

.workflow-path {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 8px 22px 24px;
  padding: 26px 24px;
  border: 1px solid #dbe2e6;
  border-radius: var(--radius);
  background: #f4efe7;
}

.workflow-path::before {
  position: absolute;
  top: 50%;
  right: 42px;
  left: 42px;
  height: 2px;
  content: "";
  background: #cdd5da;
}

.workflow-path .node {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  margin: 0;
  border: 6px solid #cdd5da;
  border-radius: 999px;
  background: #ffffff;
}

.workflow-path .node.active {
  border-color: var(--electric);
}

.assistant-window {
  position: absolute;
  top: 0;
  right: 18px;
  width: min(330px, 54%);
  padding: 20px;
  color: #fffaf4;
  background:
    linear-gradient(135deg, rgba(111, 92, 255, 0.24), rgba(47, 140, 255, 0.12)),
    rgba(10, 31, 45, 0.92);
}

.assistant-window p {
  margin-bottom: 16px;
  color: rgba(255, 250, 244, 0.76);
  font-weight: 700;
  line-height: 1.45;
}

.assistant-window strong {
  display: block;
  color: #fffaf4;
  font-size: 18px;
  line-height: 1.25;
}

.checklist-window {
  position: absolute;
  right: 56px;
  bottom: 0;
  width: min(310px, 52%);
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 250, 244, 0.95);
}

.checklist-window ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist-window li {
  position: relative;
  padding-left: 24px;
  color: #31414d;
  font-weight: 800;
}

.checklist-window li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  content: "";
  background: var(--green);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  color: #fffaf4;
  background: #203542;
}

.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 64px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(47, 140, 255, 0.1), rgba(185, 137, 66, 0.08)),
    #0d2535;
  font-weight: 800;
  text-align: center;
}

.pain-section {
  background: #fffaf4;
}

.section-heading {
  max-width: 900px;
}

.section-heading p:not(.eyebrow),
.outcome-copy p,
.suiteprojects-copy p,
.founder-card p,
.proof-card p,
.ai-card p,
.before-after p {
  color: var(--muted);
  line-height: 1.65;
}

.outcome-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 7vw, 88px);
  color: #fffaf4;
  background:
    linear-gradient(130deg, rgba(47, 140, 255, 0.13), transparent 38%),
    linear-gradient(45deg, rgba(185, 137, 66, 0.1), transparent 44%),
    #071824;
}

.outcome-section h2 {
  color: #fffaf4;
}

.outcome-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.outcome-board article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 250, 244, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.07);
}

.outcome-board span {
  display: block;
  margin-bottom: 30px;
  color: #f1c7b7;
  font-weight: 900;
}

.outcome-board strong {
  display: block;
  color: rgba(255, 250, 244, 0.88);
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.26;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(30px, 4vw, 48px);
}

.decision-card {
  display: grid;
  align-content: start;
  min-height: 540px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(17, 28, 36, 0.13);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(7, 24, 36, 0.08);
}

.decision-card.featured-plan {
  border-color: rgba(47, 140, 255, 0.44);
  background:
    linear-gradient(145deg, rgba(47, 140, 255, 0.1), transparent 42%),
    #ffffff;
  box-shadow: 0 26px 70px rgba(20, 95, 130, 0.14);
}

.decision-card h3 {
  margin-bottom: 24px;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.12;
}

.decision-card dl {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
}

.decision-card dt {
  margin-bottom: 6px;
  color: var(--redwood);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.decision-card dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.decision-card a {
  align-self: end;
  width: fit-content;
  margin-top: auto;
  color: var(--redwood);
  font-weight: 900;
  border-bottom: 2px solid rgba(148, 61, 45, 0.34);
}

.process-timeline {
  display: grid;
  gap: 18px;
}

.process-timeline .showcase-item p {
  margin: 0;
  color: rgba(255, 250, 244, 0.68);
  font-size: 16px;
  line-height: 1.6;
}

.ai-section {
  background:
    linear-gradient(180deg, #fffaf4 0%, #f5f7f9 100%);
}

.ai-showcase {
  display: grid;
  gap: 16px;
}

.ai-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(7, 24, 36, 0.08);
}

.ai-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: top left;
  background: #fff;
}

.ai-card h3 {
  max-width: 760px;
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.08;
}

.ai-card a {
  color: var(--redwood);
  font-weight: 900;
  border-bottom: 2px solid rgba(148, 61, 45, 0.34);
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.before-after div {
  min-height: 190px;
  padding: clamp(22px, 3vw, 34px);
  background: #ffffff;
}

.before-after div:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(86, 124, 101, 0.12), transparent 44%),
    #ffffff;
}

.suiteprojects-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  color: #fffaf4;
  background:
    linear-gradient(125deg, rgba(185, 137, 66, 0.16), transparent 42%),
    #102838;
}

.suiteprojects-section h2,
.suiteprojects-section p {
  color: #fffaf4;
}

.suiteprojects-section p {
  color: rgba(255, 250, 244, 0.72);
}

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

.suiteprojects-map span {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 250, 244, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.07);
  font-weight: 900;
  text-align: center;
}

.dark-secondary {
  margin-top: 20px;
}

.proof-section {
  background: #fffaf4;
}

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

.proof-card {
  min-height: 270px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(17, 28, 36, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(239, 232, 220, 0.42), transparent 56%),
    #ffffff;
}

.proof-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--green);
  font-weight: 900;
}

.proof-card h3 {
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.12;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, 0.7fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: stretch;
  background: var(--sand);
}

.founder-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(17, 28, 36, 0.13);
  border-radius: var(--radius);
  background: #ffffff;
}

.founder-portrait {
  display: grid;
  place-items: center;
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 250, 244, 0.34);
  border-radius: var(--radius);
  color: #fffaf4;
  background:
    linear-gradient(145deg, rgba(47, 140, 255, 0.22), rgba(185, 137, 66, 0.18)),
    #071824;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 800;
}

.founder-card h2 {
  max-width: 760px;
}

.founder-facts {
  display: grid;
  gap: 10px;
}

.founder-facts span {
  display: grid;
  align-items: center;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid rgba(17, 28, 36, 0.13);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
}

.premium-insights {
  background:
    linear-gradient(145deg, rgba(47, 140, 255, 0.08), transparent 42%),
    #f8f9fa;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(47, 140, 255, 0.12), transparent 42%),
    linear-gradient(45deg, rgba(185, 137, 66, 0.12), transparent 40%),
    #071824;
}

@media (prefers-reduced-motion: no-preference) {
  .assistant-window {
    animation: mi-suite-soft-float 7s ease-in-out infinite;
  }

  .checklist-window {
    animation: mi-suite-soft-float 8s ease-in-out infinite reverse;
  }
}

@keyframes mi-suite-soft-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1180px) {
  .business-hero,
  .outcome-section,
  .suiteprojects-section,
  .founder-section {
    grid-template-columns: 1fr;
  }

  .hero-composition {
    min-height: 520px;
    max-width: 760px;
  }

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

  .decision-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text,
  .nav-links {
    display: none;
  }

  .site-header .button-small {
    margin-left: 0;
    min-height: 42px;
    padding-inline: 14px;
  }

  .business-hero {
    min-height: auto;
    padding-top: 52px;
  }

  .business-hero h1 {
    font-size: clamp(38px, 10.5vw, 54px);
  }

  .hero-metrics,
  .outcome-board,
  .before-after,
  .suiteprojects-map,
  .founder-card,
  .ai-card {
    grid-template-columns: 1fr;
  }

  .hero-composition {
    min-height: 560px;
  }

  .dashboard-window {
    inset: 52px 0 70px 0;
  }

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

  .primary-card {
    min-height: 220px;
  }

  .assistant-window,
  .checklist-window {
    right: 0;
    width: min(320px, 92%);
  }

  .assistant-window {
    top: 0;
  }

  .checklist-window {
    bottom: 0;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    min-height: 52px;
  }

  .founder-portrait {
    width: 118px;
  }
}

/* Premium product pages and knowledge hub - 2026-06-20 */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: var(--radius);
  color: #071824;
  background: #fffaf4;
  font-weight: 900;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

main:focus {
  outline: none;
}

section[id],
main[id] {
  scroll-margin-top: 96px;
}

.nav-links a[aria-current="page"] {
  color: #ffffff;
}

.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

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

.proof-placeholder {
  display: grid;
  place-items: center;
  min-height: 96px;
  margin-top: 18px;
  padding: 22px;
  border: 1px dashed rgba(17, 28, 36, 0.26);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  font-weight: 800;
  text-align: center;
}

.final-cta-section,
.product-cta-section,
.hub-cta-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  color: #fffaf4;
  background:
    linear-gradient(135deg, rgba(47, 140, 255, 0.16), transparent 42%),
    linear-gradient(42deg, rgba(185, 137, 66, 0.14), transparent 44%),
    #071824;
}

.final-cta-section .eyebrow,
.product-cta-section .eyebrow,
.hub-cta-section .eyebrow {
  color: #f1c7b7;
}

.final-cta-section h2,
.product-cta-section h2,
.hub-cta-section h2 {
  max-width: 820px;
  color: #fffaf4;
}

.final-cta-section p,
.product-cta-section p,
.hub-cta-section p {
  color: rgba(255, 250, 244, 0.74);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
}

.final-cta-actions,
.product-cta-actions,
.hub-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.product-page {
  background: #fffaf4;
}

.product-hero,
.insights-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: min(760px, calc(100vh - 78px));
  padding: clamp(68px, 7vw, 112px) clamp(20px, 5vw, 78px) clamp(54px, 6vw, 88px);
  color: #fffaf4;
  background:
    linear-gradient(115deg, rgba(3, 13, 20, 0.98) 0%, rgba(7, 24, 36, 0.95) 48%, rgba(14, 47, 65, 0.92) 100%),
    #071824;
}

.product-hero::before,
.insights-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 250, 244, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 244, 0.05) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.78;
}

.product-hero::after,
.insights-hero::after {
  position: absolute;
  right: -18vw;
  bottom: -30%;
  width: 62vw;
  height: 72%;
  content: "";
  background:
    radial-gradient(circle, rgba(47, 140, 255, 0.18), transparent 58%),
    radial-gradient(circle at 28% 58%, rgba(111, 92, 255, 0.16), transparent 44%);
}

.product-hero-copy,
.product-hero-media,
.suite-stack,
.insights-hero-copy,
.insights-hero-panel {
  position: relative;
  z-index: 1;
}

.product-hero h1,
.insights-hero h1 {
  max-width: 850px;
  color: #fffaf4;
  font-size: clamp(46px, 5.8vw, 82px);
  line-height: 0.98;
}

.product-hero .hero-lede,
.insights-hero .hero-lede {
  max-width: 730px;
  color: rgba(255, 250, 244, 0.77);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.58;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-badges span,
.topic-nav a,
.insight-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
}

.product-badges span,
.topic-nav a {
  border: 1px solid rgba(255, 250, 244, 0.2);
  color: #fffaf4;
  background: rgba(255, 250, 244, 0.08);
}

.product-hero-media {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 250, 244, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.08);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.34);
}

.product-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: top left;
  background: #ffffff;
}

.product-hero-media figcaption {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 250, 244, 0.16);
  color: rgba(255, 250, 244, 0.74);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  color: #fffaf4;
  background: #203542;
}

.product-strip span {
  display: grid;
  place-items: center;
  min-height: 64px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(47, 140, 255, 0.11), rgba(185, 137, 66, 0.08)),
    #0d2535;
  font-weight: 900;
  text-align: center;
}

.product-card-grid,
.feature-matrix,
.product-suite-grid,
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.feature-matrix article,
.product-suite-card,
.hub-card {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(17, 28, 36, 0.13);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 24, 36, 0.08);
}

.product-card span,
.product-suite-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 34px;
  color: var(--redwood);
  font-weight: 900;
}

.product-card h3,
.feature-matrix h3,
.product-suite-card h3,
.hub-card h3 {
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
}

.product-card p,
.feature-matrix p,
.product-suite-card p,
.hub-card p {
  color: var(--muted);
  line-height: 1.65;
}

.product-flow-section,
.product-suite-section {
  color: #fffaf4;
  background:
    linear-gradient(135deg, rgba(47, 140, 255, 0.12), transparent 36%),
    #071824;
}

.product-flow-section h2,
.product-suite-section h2 {
  color: #fffaf4;
}

.product-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  background: rgba(255, 250, 244, 0.14);
}

.product-flow article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 250, 244, 0.07);
}

.product-flow span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: var(--radius);
  color: #071824;
  background: #f1c7b7;
  font-weight: 900;
}

.product-flow h3 {
  color: #fffaf4;
}

.product-flow p {
  color: rgba(255, 250, 244, 0.72);
  line-height: 1.62;
}

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

.feature-matrix article {
  min-height: 210px;
  box-shadow: none;
}

.suite-stack {
  display: grid;
  gap: 14px;
}

.suite-stack a {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: var(--radius);
  color: #fffaf4;
  background: rgba(255, 250, 244, 0.08);
  box-shadow: 0 24px 66px rgba(0, 0, 0, 0.24);
}

.suite-stack span {
  color: #f1c7b7;
  font-weight: 900;
}

.suite-stack strong {
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.1;
}

.suite-stack small {
  color: rgba(255, 250, 244, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.product-suite-card {
  color: #fffaf4;
  background: rgba(255, 250, 244, 0.08);
  box-shadow: none;
}

.product-suite-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 250, 244, 0.16);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: top left;
  background: #ffffff;
}

.product-suite-card span {
  color: #f1c7b7;
}

.product-suite-card h3 {
  color: #fffaf4;
}

.product-suite-card p {
  color: rgba(255, 250, 244, 0.72);
}

.insights-hub {
  background: #fffaf4;
}

.insights-hero {
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.52fr);
}

.topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.insights-hero-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.08);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.26);
}

.insights-hero-panel span {
  color: #f1c7b7;
  font-weight: 900;
}

.insights-hero-panel strong {
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(25px, 2.8vw, 40px);
  line-height: 1.08;
}

.insights-hero-panel p {
  margin: 0;
  color: rgba(255, 250, 244, 0.72);
  line-height: 1.62;
}

.featured-insight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(17, 28, 36, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(47, 140, 255, 0.08), transparent 44%),
    #ffffff;
  box-shadow: 0 20px 48px rgba(7, 24, 36, 0.08);
}

.featured-insight h2 {
  max-width: 840px;
}

.featured-insight p,
.hub-section-heading p {
  color: var(--muted);
  line-height: 1.65;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.insight-meta span {
  color: var(--redwood);
  background: #f3e4da;
}

.hub-section {
  background:
    linear-gradient(180deg, #fffaf4 0%, #f7f3ed 100%);
}

.hub-section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

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

.hub-card {
  min-height: 310px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.hub-card:hover,
.product-suite-card:hover,
.suite-stack a:hover {
  border-color: rgba(47, 140, 255, 0.42);
  box-shadow: 0 24px 58px rgba(7, 24, 36, 0.14);
  transform: translateY(-2px);
}

.hub-card .insight-meta {
  margin: 0 0 28px;
}

.hub-card-wide {
  grid-column: span 2;
  min-height: 250px;
  background:
    linear-gradient(145deg, rgba(86, 124, 101, 0.12), transparent 42%),
    #ffffff;
}

@media (prefers-reduced-motion: no-preference) {
  .product-hero-media,
  .insights-hero-panel {
    animation: mi-suite-soft-float 8s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skip-link,
  .hub-card,
  .product-suite-card,
  .suite-stack a {
    transition: none;
  }

  .product-hero-media,
  .insights-hero-panel {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .process-timeline-four,
  .product-flow,
  .product-card-grid,
  .product-suite-grid,
  .hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-hero,
  .insights-hero,
  .final-cta-section,
  .product-cta-section,
  .hub-cta-section {
    grid-template-columns: 1fr;
  }

  .product-hero-media,
  .suite-stack,
  .insights-hero-panel {
    max-width: 760px;
  }

  .final-cta-actions,
  .product-cta-actions,
  .hub-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 1020px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    display: flex;
    flex: 1 0 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding: 6px 0 2px;
    scrollbar-width: thin;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .brand-text {
    display: none;
  }

  .nav-links {
    display: flex;
    font-size: 13px;
  }

  .product-hero,
  .insights-hero {
    min-height: auto;
    padding-top: 52px;
  }

  .product-hero h1,
  .insights-hero h1 {
    font-size: clamp(36px, 10.5vw, 54px);
  }

  .product-strip,
  .process-timeline-four,
  .product-flow,
  .product-card-grid,
  .feature-matrix,
  .product-suite-grid,
  .hub-grid,
  .featured-insight {
    grid-template-columns: 1fr;
  }

  .hub-card-wide {
    grid-column: auto;
  }

  .product-hero-media figcaption {
    font-size: 13px;
  }

  .product-flow article,
  .hub-card,
  .product-card {
    min-height: auto;
  }

  .product-badges span,
  .topic-nav a {
    min-height: 38px;
  }

  .final-cta-actions .button,
  .product-cta-actions .button,
  .hub-cta-actions .button {
    width: 100%;
  }
}

/* Control Room homepage direction - 2026-06-20 */
:root {
  --control-ink: #07131d;
  --control-panel: #101c27;
  --control-ivory: #fff9f1;
  --control-paper: #f8f3eb;
  --control-copper: #c85e42;
  --control-blue: #318dff;
  --control-green: #48b58a;
  --control-violet: #7a66ff;
}

.site-header {
  background:
    linear-gradient(180deg, rgba(5, 17, 26, 0.98), rgba(7, 20, 31, 0.94));
  border-bottom-color: rgba(255, 249, 241, 0.12);
}

.brand-mark {
  background:
    linear-gradient(145deg, rgba(49, 141, 255, 0.16), rgba(212, 154, 85, 0.14)),
    #0a1b29;
}

.brand-text small,
.business-hero .eyebrow,
.trust-strip span,
.plan-label,
.service-showcase .eyebrow,
.ai-section .eyebrow,
.proof-section .eyebrow {
  color: #f0a779;
}

.button {
  border-color: rgba(229, 126, 88, 0.88);
  background: linear-gradient(135deg, #d76648 0%, #9e3d2d 100%);
  box-shadow: 0 18px 42px rgba(158, 61, 45, 0.26);
}

.button:hover {
  background: linear-gradient(135deg, #e87655 0%, #863022 100%);
}

.business-hero {
  position: relative;
  grid-template-columns: minmax(420px, 0.84fr) minmax(560px, 1.16fr);
  gap: clamp(32px, 4.5vw, 70px);
  min-height: min(860px, calc(100vh - 76px));
  padding: clamp(72px, 7vw, 118px) clamp(22px, 4.8vw, 78px) clamp(62px, 6vw, 92px);
  overflow: hidden;
  color: var(--control-ivory);
  background:
    radial-gradient(circle at 76% 46%, rgba(49, 141, 255, 0.24), transparent 29%),
    radial-gradient(circle at 14% 90%, rgba(200, 94, 66, 0.16), transparent 32%),
    linear-gradient(116deg, #06121c 0%, #071723 46%, #0d2b3c 100%);
}

.business-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 249, 241, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 249, 241, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 76%, transparent 100%);
}

.business-hero::after {
  position: absolute;
  right: -12vw;
  bottom: -18%;
  left: -8vw;
  z-index: -1;
  height: 36%;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(49, 141, 255, 0.5) 9.2% 9.45%, transparent 9.65% 100%),
    linear-gradient(90deg, transparent 0 29%, rgba(200, 94, 66, 0.56) 29.2% 29.45%, transparent 29.65% 100%),
    linear-gradient(90deg, transparent 0 48%, rgba(49, 141, 255, 0.42) 48.2% 48.45%, transparent 48.65% 100%),
    linear-gradient(0deg, rgba(255, 249, 241, 0.12) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 42px;
  border-top: 1px solid rgba(255, 249, 241, 0.1);
  opacity: 0.9;
  transform: perspective(720px) rotateX(62deg);
  transform-origin: bottom center;
}

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

.business-hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  color: #fffaf4;
  font-size: clamp(48px, 5.8vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.business-hero .hero-lede {
  max-width: 650px;
  color: rgba(255, 249, 241, 0.76);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.62;
}

.business-hero .hero-actions {
  gap: 14px;
  margin-top: 30px;
}

.business-hero .button-secondary {
  border-color: rgba(255, 249, 241, 0.34);
  background: rgba(7, 19, 29, 0.58);
  box-shadow: none;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 680px;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 249, 241, 0.16);
}

.hero-metrics div {
  min-height: 94px;
  padding: 20px 20px 4px 0;
  border: 0;
  border-right: 1px solid rgba(255, 249, 241, 0.12);
  border-radius: 0;
  background: transparent;
}

.hero-metrics div + div {
  padding-left: 22px;
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics dt {
  color: #fffaf4;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 14px;
}

.hero-metrics dd {
  color: rgba(255, 249, 241, 0.62);
}

.hero-composition.control-room {
  min-height: 610px;
  perspective: 1200px;
}

.control-board {
  position: absolute;
  top: 10px;
  right: 4px;
  left: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 241, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.05), transparent 46%),
    #101a25;
  box-shadow:
    0 40px 92px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(49, 141, 255, 0.08);
  transform: rotateY(-7deg) rotateX(1deg);
  transform-origin: center right;
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 249, 241, 0.1);
  color: #fffaf4;
  background: rgba(255, 255, 255, 0.02);
}

.board-header strong {
  font-family: Sora, Manrope, sans-serif;
  font-size: 17px;
}

.board-header span {
  color: rgba(255, 249, 241, 0.56);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.board-layout {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
}

.board-nav {
  display: grid;
  align-content: start;
  gap: 10px;
  color: rgba(255, 249, 241, 0.48);
  font-size: 12px;
  font-weight: 800;
}

.board-nav span {
  padding: 11px 12px;
  border-radius: 6px;
}

.board-nav .active {
  color: #fffaf4;
  background: rgba(255, 249, 241, 0.08);
}

.board-main {
  display: grid;
  grid-template-columns: minmax(150px, 0.78fr) minmax(230px, 1.22fr);
  gap: 16px;
}

.control-tile {
  min-height: 158px;
  padding: 20px;
  border: 1px solid rgba(255, 249, 241, 0.12);
  border-radius: 8px;
  color: #fffaf4;
  background:
    linear-gradient(155deg, rgba(255, 249, 241, 0.08), rgba(255, 249, 241, 0.02)),
    #122231;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.control-tile span,
.actions-window > span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 249, 241, 0.66);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.score-tile strong {
  display: inline-block;
  margin-right: 8px;
  color: #fffaf4;
  font-family: Sora, Manrope, sans-serif;
  font-size: 52px;
  line-height: 1;
}

.score-tile small {
  color: var(--control-green);
  font-weight: 900;
}

.score-chart {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 54px;
  margin-top: 20px;
}

.score-chart i {
  display: block;
  width: 100%;
  min-width: 10px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #6db8ff, #256bff);
  box-shadow: 0 0 18px rgba(49, 141, 255, 0.22);
}

.score-chart i:nth-child(1) { height: 30%; }
.score-chart i:nth-child(2) { height: 42%; }
.score-chart i:nth-child(3) { height: 36%; }
.score-chart i:nth-child(4) { height: 56%; }
.score-chart i:nth-child(5) { height: 72%; }
.score-chart i:nth-child(6) { height: 92%; }

.approval-flow {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 28px 4px 18px;
}

.approval-flow::before {
  position: absolute;
  top: 50%;
  right: 18px;
  left: 18px;
  height: 1px;
  content: "";
  background: rgba(255, 249, 241, 0.2);
}

.approval-flow b {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 249, 241, 0.22);
  border-radius: 50%;
  background: #132635;
}

.approval-flow .done {
  border-color: rgba(72, 181, 138, 0.86);
  background: var(--control-green);
}

.approval-flow .live {
  border-color: rgba(49, 141, 255, 0.9);
  background: var(--control-blue);
  box-shadow: 0 0 0 8px rgba(49, 141, 255, 0.14), 0 0 24px rgba(49, 141, 255, 0.58);
}

.approval-tile p,
.risk-tile li,
.focus-tile li {
  color: rgba(255, 249, 241, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.risk-tile ul,
.focus-tile ul,
.actions-window ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.risk-tile li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.risk-tile b {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--control-copper);
  box-shadow: 0 0 18px rgba(200, 94, 66, 0.38);
}

.focus-tile {
  background:
    linear-gradient(155deg, rgba(49, 141, 255, 0.09), transparent 44%),
    #122231;
}

.assistant-window {
  top: auto;
  right: auto;
  bottom: 74px;
  left: 0;
  width: min(330px, 54%);
  padding: 20px;
  color: #fffaf4;
  background:
    linear-gradient(135deg, rgba(49, 141, 255, 0.18), rgba(122, 102, 255, 0.1)),
    rgba(12, 31, 45, 0.96);
}

.assistant-window a {
  display: inline-flex;
  margin-top: 16px;
  color: #80c3ff;
  font-size: 13px;
  font-weight: 900;
}

.actions-window {
  position: absolute;
  right: 24px;
  bottom: 0;
  width: min(380px, 58%);
  padding: 20px;
  color: #fffaf4;
  background:
    linear-gradient(155deg, rgba(255, 249, 241, 0.08), rgba(255, 249, 241, 0.03)),
    rgba(13, 29, 43, 0.96);
}

.actions-window li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 249, 241, 0.1);
  border-radius: 6px;
  color: rgba(255, 249, 241, 0.76);
}

.actions-window strong {
  font-size: 13px;
}

.actions-window em {
  display: inline-flex;
  min-width: 58px;
  justify-content: center;
  padding: 5px 8px;
  border-radius: 999px;
  color: #ffc0a8;
  background: rgba(200, 94, 66, 0.16);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.trust-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 0 clamp(22px, 4.8vw, 78px);
  border-top: 1px solid rgba(255, 249, 241, 0.12);
  border-bottom: 1px solid rgba(255, 249, 241, 0.12);
  background:
    linear-gradient(180deg, #081925, #07131d);
}

.trust-strip div {
  display: grid;
  align-content: center;
  min-height: 96px;
  padding: 22px clamp(16px, 2.2vw, 30px);
  border-right: 1px solid rgba(255, 249, 241, 0.11);
  color: #fffaf4;
}

.trust-strip div:first-child {
  border-left: 1px solid rgba(255, 249, 241, 0.11);
}

.trust-strip strong {
  display: block;
  margin-bottom: 7px;
  font-size: 15px;
  line-height: 1.2;
}

.trust-strip span {
  display: block;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 249, 241, 0.58);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.subscription-section,
.ai-section,
.proof-section {
  background:
    radial-gradient(circle at 16% 0%, rgba(200, 94, 66, 0.07), transparent 28%),
    var(--control-paper);
}

.decision-grid {
  gap: clamp(18px, 2vw, 28px);
}

.decision-card {
  min-height: 500px;
  border-color: rgba(7, 19, 29, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)),
    #ffffff;
  box-shadow: 0 24px 70px rgba(7, 19, 29, 0.08);
}

.decision-card h3 {
  max-width: 420px;
}

.decision-card.featured-plan {
  border-color: rgba(200, 94, 66, 0.35);
  background:
    linear-gradient(145deg, rgba(200, 94, 66, 0.08), transparent 52%),
    #ffffff;
}

.service-showcase {
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 52px);
  color: #fffaf4;
  background:
    linear-gradient(130deg, rgba(49, 141, 255, 0.11), transparent 38%),
    #07131d;
}

.showcase-intro {
  max-width: 760px;
}

.service-showcase h2,
.service-showcase .showcase-intro p {
  color: #fffaf4;
}

.process-timeline-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  min-width: 0;
}

.process-timeline .showcase-item {
  position: relative;
  min-width: 0;
  min-height: 250px;
  border-color: rgba(255, 249, 241, 0.12);
  background: rgba(255, 249, 241, 0.04);
}

.process-timeline .showcase-item span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  border: 1px solid rgba(240, 167, 121, 0.82);
  border-radius: 50%;
  color: #fffaf4;
  font-size: 13px;
}

.process-timeline .showcase-item h3 {
  color: #fffaf4;
  font-size: clamp(21px, 1.8vw, 28px);
  overflow-wrap: break-word;
}

.process-timeline .showcase-item p {
  overflow-wrap: break-word;
}

.ai-showcase {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ai-card {
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 430px;
  border-color: rgba(7, 19, 29, 0.12);
}

.ai-card img {
  aspect-ratio: 16 / 9;
}

.ai-card h3 {
  font-size: clamp(22px, 2vw, 30px);
}

.founder-section {
  color: #fffaf4;
  background:
    radial-gradient(circle at 70% 8%, rgba(49, 141, 255, 0.12), transparent 34%),
    #07131d;
}

.founder-card {
  border-color: rgba(255, 249, 241, 0.14);
  background: rgba(255, 249, 241, 0.05);
}

.founder-card h2,
.founder-card p {
  color: #fffaf4;
}

.founder-card p:not(.eyebrow) {
  color: rgba(255, 249, 241, 0.7);
}

.founder-facts span {
  border-color: rgba(255, 249, 241, 0.12);
  color: #fffaf4;
  background: rgba(255, 249, 241, 0.05);
}

.proof-card {
  min-height: 240px;
  background: #ffffff;
}

.final-cta-section,
.contact-section {
  background:
    linear-gradient(135deg, rgba(49, 141, 255, 0.12), transparent 44%),
    linear-gradient(38deg, rgba(200, 94, 66, 0.14), transparent 38%),
    #07131d;
}

@media (prefers-reduced-motion: no-preference) {
  .control-board {
    animation: control-room-board 9s ease-in-out infinite;
  }

  .approval-flow .live {
    animation: control-room-pulse 2.8s ease-in-out infinite;
  }
}

@keyframes control-room-board {
  0%,
  100% {
    transform: rotateY(-7deg) rotateX(1deg) translateY(0);
  }

  50% {
    transform: rotateY(-6deg) rotateX(1deg) translateY(-8px);
  }
}

@keyframes control-room-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(49, 141, 255, 0.14), 0 0 24px rgba(49, 141, 255, 0.58);
  }

  50% {
    box-shadow: 0 0 0 13px rgba(49, 141, 255, 0.08), 0 0 34px rgba(49, 141, 255, 0.7);
  }
}

@media (max-width: 1180px) {
  .business-hero {
    grid-template-columns: 1fr;
  }

  .hero-composition.control-room {
    max-width: 860px;
    min-height: 650px;
  }

  .control-board {
    left: 0;
  }

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

  .trust-strip div:first-child {
    border-left: 0;
  }

  .process-timeline-four,
  .ai-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .business-hero {
    padding-top: 54px;
  }

  .business-hero h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .hero-metrics,
  .board-layout,
  .board-main,
  .trust-strip,
  .process-timeline-four,
  .ai-showcase {
    grid-template-columns: 1fr;
  }

  .hero-metrics div,
  .hero-metrics div + div,
  .hero-metrics div:last-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 249, 241, 0.12);
  }

  .hero-composition.control-room {
    min-height: 760px;
  }

  .control-board {
    top: 0;
    right: 0;
    left: 0;
    transform: none;
  }

  .board-nav {
    display: none;
  }

  .control-tile {
    min-height: auto;
  }

  .assistant-window,
  .actions-window {
    right: 0;
    left: 0;
    width: auto;
  }

  .assistant-window {
    bottom: 130px;
  }

  .actions-window {
    bottom: 0;
  }

  .trust-strip {
    padding-inline: 0;
  }

  .trust-strip div {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 249, 241, 0.11);
  }

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

@media (max-width: 520px) {
  .hero-composition.control-room {
    min-height: 840px;
  }

  .score-tile strong {
    font-size: 42px;
  }

  .actions-window li {
    grid-template-columns: 1fr;
  }
}

/* Control Room polish pass - reduce oversized desktop scale and refine forms */
.business-hero {
  grid-template-columns: minmax(400px, 0.88fr) minmax(520px, 1.05fr);
  gap: clamp(28px, 4vw, 58px);
  min-height: min(760px, calc(100vh - 76px));
  padding-top: clamp(56px, 5.5vw, 84px);
  padding-bottom: clamp(48px, 5vw, 72px);
}

.business-hero .hero-stage {
  max-width: 660px;
}

.business-hero h1 {
  max-width: 660px;
  margin-bottom: 20px;
  font-size: clamp(42px, 4.05vw, 66px);
  line-height: 1.03;
  text-wrap: balance;
}

.business-hero .hero-lede {
  max-width: 600px;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.62;
}

.business-hero .hero-actions {
  margin-top: 24px;
}

.business-hero .hero-actions .button {
  min-height: 46px;
  padding-inline: 18px;
  font-size: 14px;
}

.hero-metrics {
  max-width: 610px;
  margin-top: 30px;
}

.hero-metrics div {
  min-height: 76px;
  padding-top: 15px;
}

.hero-metrics dt {
  margin-bottom: 6px;
}

.hero-composition.control-room {
  min-height: 520px;
  transform: scale(0.94);
  transform-origin: center right;
}

.control-board {
  top: 6px;
  right: 0;
  left: 18px;
}

.board-header {
  min-height: 60px;
  padding: 16px 20px;
}

.board-layout {
  gap: 18px;
  padding: 18px;
}

.board-main {
  gap: 14px;
}

.control-tile {
  min-height: 138px;
  padding: 16px;
}

.control-tile span,
.actions-window > span {
  margin-bottom: 12px;
}

.score-tile strong {
  font-size: 44px;
}

.score-chart {
  height: 44px;
  margin-top: 16px;
}

.approval-flow {
  margin: 22px 4px 16px;
}

.approval-flow b {
  width: 27px;
  height: 27px;
}

.assistant-window {
  bottom: 54px;
  width: min(300px, 50%);
  padding: 18px;
}

.actions-window {
  right: 18px;
  width: min(350px, 56%);
  padding: 18px;
}

.section-heading h2,
.outcome-section h2,
.founder-card h2,
.final-cta-section h2,
.contact-copy h2 {
  text-wrap: balance;
}

.contact-section {
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 0.58fr);
  align-items: start;
  gap: clamp(30px, 5vw, 64px);
  padding-top: clamp(62px, 7vw, 92px);
  padding-bottom: clamp(62px, 7vw, 92px);
}

.contact-copy h2 {
  max-width: 620px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
}

.contact-section .contact-copy > p {
  max-width: 620px;
  font-size: clamp(16px, 1.1vw, 18px);
}

.contact-details {
  gap: 12px;
  margin-top: 28px;
  max-width: 520px;
}

.contact-details span,
.contact-details a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 249, 241, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 249, 241, 0.055);
}

.contact-form {
  justify-self: end;
  width: min(100%, 520px);
  gap: 14px;
  padding: clamp(20px, 2.4vw, 26px);
  border-color: rgba(255, 249, 241, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 244, 0.98)),
    #fffaf4;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

label {
  gap: 7px;
  color: #1c2b38;
  font-size: 13px;
  line-height: 1.25;
}

input,
select,
textarea {
  min-height: 48px;
  border-color: #cfd9df;
  padding: 12px 13px;
  color: #152532;
  background: #fbf8f2;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input::placeholder,
textarea::placeholder {
  color: #7a8994;
  font-weight: 600;
}

textarea {
  min-height: 138px;
  line-height: 1.55;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #aebdc7;
  background: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #318dff;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(49, 141, 255, 0.14);
  outline: 0;
}

.contact-form .button {
  width: 100%;
  min-height: 48px;
  margin-top: 2px;
}

.form-note {
  color: #63717d;
  font-size: 12px;
  text-align: center;
}

.quick-contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(440px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(46px, 5.5vw, 74px) clamp(22px, 4.8vw, 78px);
  border-bottom: 1px solid rgba(7, 19, 29, 0.08);
  background:
    radial-gradient(circle at 78% 0%, rgba(49, 141, 255, 0.09), transparent 30%),
    linear-gradient(180deg, #fffaf4, #f6efe7);
}

.quick-contact-copy {
  max-width: 680px;
}

.quick-contact-copy h2 {
  max-width: 640px;
  margin-bottom: 16px;
  color: #0f202d;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.08;
  text-wrap: balance;
}

.quick-contact-copy > p {
  max-width: 620px;
  color: #536574;
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.65;
}

.quick-contact-points {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin-top: 26px;
}

.quick-contact-points span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(7, 19, 29, 0.11);
  border-radius: var(--radius);
  color: #1d3140;
  background: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.quick-contact-form.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-self: stretch;
  width: 100%;
  max-width: none;
  border-color: rgba(7, 19, 29, 0.12);
  box-shadow: 0 24px 70px rgba(7, 19, 29, 0.12);
}

.quick-contact-form .form-full {
  grid-column: 1 / -1;
}

.quick-contact-form textarea {
  min-height: 112px;
}

.service-showcase .showcase-intro {
  position: relative;
  top: auto;
  z-index: 1;
  max-width: 920px;
}

.service-showcase {
  overflow: hidden;
}

.process-timeline-four {
  align-items: stretch;
}

.process-timeline .showcase-item {
  min-height: 0;
  gap: 16px;
  padding: clamp(22px, 2.4vw, 30px);
}

.process-timeline .showcase-item span {
  width: fit-content;
  height: auto;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.process-timeline .showcase-item h3 {
  font-size: clamp(19px, 1.45vw, 24px);
  line-height: 1.18;
}

.process-timeline .showcase-item p {
  font-size: 15px;
  line-height: 1.62;
}

@media (min-width: 1500px) {
  .business-hero {
    grid-template-columns: minmax(560px, 0.82fr) minmax(680px, 1fr);
  }

  .business-hero h1 {
    max-width: 700px;
    font-size: clamp(54px, 3.6vw, 68px);
  }
}

@media (max-width: 1180px) {
  .business-hero {
    min-height: auto;
    padding-top: clamp(50px, 6vw, 72px);
  }

  .hero-composition.control-room {
    max-width: 820px;
    min-height: 610px;
    transform: none;
  }

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

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

  .contact-form {
    justify-self: stretch;
    width: 100%;
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 10px 14px;
    padding: 14px 20px 10px;
  }

  .site-header .button-small {
    width: auto;
    min-height: 42px;
    margin-left: auto;
    padding-inline: 14px;
  }

  .nav-links {
    order: 3;
    display: flex;
    flex: 1 0 100%;
    flex-wrap: wrap;
    gap: 3px 10px;
    justify-content: flex-start;
    overflow: visible;
    padding: 2px 0 0;
    font-size: 11.5px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    min-height: 34px;
    padding: 4px 0;
  }

  section[id],
  main[id] {
    scroll-margin-top: 122px;
  }

  .business-hero {
    padding-top: 46px;
  }

  .business-hero h1 {
    font-size: clamp(34px, 9.6vw, 48px);
    line-height: 1.07;
  }

  .business-hero .hero-lede {
    font-size: 16px;
  }

  .hero-composition.control-room {
    min-height: 720px;
  }

  .contact-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .quick-contact-section {
    grid-template-columns: 1fr;
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .quick-contact-copy h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

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

  .process-timeline .showcase-item h3 {
    font-size: 22px;
  }

  .contact-copy h2 {
    font-size: clamp(28px, 8vw, 38px);
  }
}

@media (max-width: 520px) {
  .business-hero .hero-actions .button {
    width: 100%;
  }

  .hero-composition.control-room {
    min-height: 790px;
  }

  .contact-form {
    padding: 18px;
  }
}
