:root {
  color-scheme: light;
  --ink: #3a3a3a;
  --muted: #808285;
  --line: #eaeaea;
  --surface: #ffffff;
  --surface-soft: #f2f5f7;
  --surface-deep: #3a3a3a;
  --accent: #901913;
  --accent-strong: #ff5151;
  --accent-soft: #fecda5;
  --gold: #f4be28;
  --shadow: 0 24px 80px rgba(58, 58, 58, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

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

img,
picture,
svg {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 226, 234, 0.78);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  width: min(324px, 50vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 800;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: white;
  padding: 0 10px 0 12px;
  min-height: 40px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switch select {
  min-width: 86px;
  min-height: 38px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0;
  outline: 0;
}

.language-switch:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(40, 164, 173, 0.14);
}

.header-cta,
.button.primary {
  background: var(--ink);
  color: white;
}

.button.secondary {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--accent);
}

.button.secondary:hover {
  border-color: var(--ink);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section {
  width: 100%;
  max-width: 100%;
  padding: clamp(70px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-height: calc(100vh - 79px);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
  padding-top: clamp(54px, 8vw, 96px);
  background:
    linear-gradient(90deg, rgba(244, 247, 249, 0.9) 1px, transparent 1px),
    linear-gradient(rgba(244, 247, 249, 0.9) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-copy,
.audit-hero-copy,
.contact-page-hero > div,
.system-visual,
.flow-card,
.metric-strip span,
.section-heading,
.section-heading > *,
.contact-copy,
.audit-intake-copy {
  min-width: 0;
}

.eyebrow {
  max-width: 100%;
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

h1 {
  width: 100%;
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

h2 {
  width: 100%;
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.hero-text {
  width: 100%;
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

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

.proof-row div {
  border-left: 3px solid var(--accent-strong);
  padding-left: 14px;
}

.proof-row dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-row dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.system-visual {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--surface-deep);
  box-shadow: var(--shadow);
  color: white;
}

.visual-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #88a0ad;
}

.visual-topbar span:first-child {
  background: var(--accent-strong);
}

.visual-topbar strong {
  min-width: 0;
  margin-left: auto;
  color: #cfdae2;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px;
}

.flow-card {
  position: relative;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.flow-card::after {
  content: "";
  position: absolute;
  right: -17px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--gold);
}

.flow-card:nth-child(3)::after,
.flow-card.wide::after {
  display: none;
}

.flow-card.active {
  border-color: rgba(15, 139, 141, 0.8);
  background: rgba(15, 139, 141, 0.2);
}

.flow-card.wide {
  grid-column: 1 / -1;
  min-height: 120px;
}

.flow-card small,
.flow-card span {
  display: block;
  color: #b6c5ce;
  overflow-wrap: anywhere;
}

.flow-card strong {
  display: block;
  margin: 8px 0;
  font-size: 20px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-strip span {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #c8d3da;
  font-size: 14px;
}

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

.metric-strip strong {
  display: block;
  color: white;
  font-size: 25px;
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 56px);
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  flex: 0 0 auto;
  border-bottom: 2px solid var(--accent-strong);
  color: var(--ink);
  font-weight: 800;
}

.section-note {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.positioning,
.audience,
.founder,
.privacy,
.managed-services,
.live
{
  background: var(--surface-soft);
}

.positioning-grid,
.audience-grid,
.launch-grid,
.privacy-grid,
.service-list,
.case-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.positioning-grid article,
.audience-grid article,
.launch-grid article,
.privacy-grid article,
.service-card,
.case-grid article,
.pricing-grid article,
.founder-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(22px, 3vw, 34px);
}

.case-link {
  display: inline-flex;
  margin-top: 10px;
  border-bottom: 2px solid var(--accent);
  color: var(--ink);
  font-weight: 800;
}

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

.case-link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.positioning-grid span,
.audience-grid span,
.launch-grid span,
.privacy-grid span,
.service-icon,
.case-label {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.positioning-grid p,
.audience-grid p,
.launch-grid p,
.privacy-grid p,
.service-card p,
.case-grid p,
.case-deep-dive p,
.case-outcomes p,
.testimonial-grid p,
.testimonial-feature p,
.pricing-grid p,
.founder-copy p,
.contact p {
  color: var(--muted);
}

.service-card ul,
.founder-panel ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.founder-panel li {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
}

.service-card li::before,
.founder-panel li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  background: var(--accent);
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: 32px;
  margin-bottom: 18px;
  padding: clamp(28px, 5vw, 56px);
  background: var(--ink);
  color: white;
}

.case-media {
  display: grid;
  place-items: center;
  margin: 0;
  width: 100%;
  max-height: 320px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #f2f5f7;
}

.case-media.app-media {
  display: inline-grid;
  width: fit-content;
  min-height: 542px;
  height: auto;
  justify-self: center;
}

.case-media img {
  display: block;
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.case-media picture {
  display: grid;
  place-items: center;
  max-width: 100%;
}

.case-media .app-screenshot {
  width: auto;
  max-width: 220px;
  max-height: 500px;
}

.case-slider {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  padding: 12px;
}

.case-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.case-tab {
  min-height: 48px;
  border: 1px solid var(--line);
  background: white;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.case-tab:hover,
.case-tab.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.case-panel {
  animation: caseFade 180ms ease-out;
}

.case-panel .case-feature {
  margin-bottom: 12px;
}

.slider-narrative,
.slider-outcomes {
  margin-bottom: 12px;
}

@keyframes caseFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

.case-feature p {
  color: #c6d0d8;
}

.case-feature h3 {
  font-size: clamp(30px, 4vw, 52px);
}

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

.case-meta div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.case-meta dt {
  color: #c6d0d8;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-meta dd {
  margin: 4px 0 0;
  color: white;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.case-feature + .case-deep-dive {
  margin-top: 18px;
}

.case-details {
  display: grid;
  gap: 12px;
}

.case-details div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.case-details strong,
.case-details span {
  display: block;
}

.case-details span {
  margin-top: 6px;
  color: #c6d0d8;
}

.case-deep-dive {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.case-narrative,
.case-system-map article,
.case-outcomes article {
  border: 1px solid var(--line);
  background: white;
  padding: clamp(22px, 3vw, 34px);
}

.case-narrative h3 {
  max-width: 620px;
  font-size: clamp(28px, 4vw, 46px);
}

.case-system-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.case-system-map.compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.case-system-map.compact article {
  padding: 22px;
}

.case-system-map span,
.case-outcomes small {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-system-map strong,
.case-outcomes strong {
  display: block;
  margin: 8px 0;
  font-size: 19px;
  line-height: 1.2;
}

.case-system-map p,
.case-outcomes p {
  margin-bottom: 0;
}

.case-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.platform-case {
  margin-bottom: 18px;
}

.testimonials {
  background: var(--surface-soft);
}

.testimonial-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 18px;
  margin-bottom: 18px;
}

.testimonial-feature blockquote,
.testimonial-grid blockquote {
  margin: 0;
  border: 1px solid var(--line);
  background: white;
  padding: clamp(24px, 4vw, 42px);
}

.testimonial-feature blockquote {
  background: var(--ink);
  color: white;
}

.testimonial-feature p {
  max-width: 980px;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.08;
}

.testimonial-feature footer,
.testimonial-grid footer {
  display: grid;
  gap: 4px;
  margin-top: 22px;
}

.testimonial-feature span {
  color: #c6d0d8;
}

.testimonial-grid span {
  color: var(--muted);
}

.review-points {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.review-points span {
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 20px;
  background: white;
  color: var(--ink);
  font-weight: 800;
}

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

.testimonial-grid p {
  font-size: 18px;
}

.timeline {
  display: grid;
  gap: 1px;
  max-width: 980px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 28px;
  background: white;
}

.timeline span {
  color: var(--accent-strong);
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.founder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.founder-copy p {
  max-width: 780px;
  margin-top: 22px;
  font-size: 18px;
}

.founder-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.founder-proof article {
  border-top: 3px solid var(--accent);
  background: var(--surface-soft);
  padding: 22px;
}

.founder-proof span,
.builder-label,
.builder-card dt,
.stack-strip span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-proof strong {
  display: block;
  margin: 8px 0;
  font-size: 18px;
  line-height: 1.2;
}

.founder-proof p {
  margin: 0;
  font-size: 15px;
}

.founder-sidebar {
  display: grid;
  gap: 14px;
}

.founder-panel strong {
  display: block;
  font-size: 18px;
}

.builder-card {
  border: 1px solid var(--line);
  background: var(--ink);
  color: white;
  padding: clamp(24px, 3vw, 34px);
}

.builder-card h3 {
  margin-top: 10px;
  font-size: clamp(28px, 3vw, 38px);
}

.builder-card p {
  color: #c6d0d8;
}

.builder-card dl {
  display: grid;
  gap: 1px;
  margin: 24px 0 0;
  background: rgba(255, 255, 255, 0.12);
}

.builder-card div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.builder-card dd {
  margin: 0;
  color: white;
  font-weight: 800;
}

.stack-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stack-strip span {
  border: 1px solid var(--line);
  background: white;
  padding: 9px 11px;
  color: var(--ink);
}

.pricing-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 24px;
}

.pricing-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--ink);
  box-shadow: 0 18px 50px rgba(58, 58, 58, 0.12);
}

.pricing-label {
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
}

.pricing-card li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  background: var(--accent);
}

.pricing-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  border-bottom: 2px solid var(--accent-strong);
  font-weight: 900;
}

.pricing-footnote {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
  border-left: 4px solid var(--accent);
  background: white;
  padding: 20px 24px;
}

.pricing-footnote span {
  color: var(--muted);
}

.mrr-pricing {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
  border: 1px solid var(--line);
  background: white;
  padding: clamp(22px, 3vw, 34px);
}

.mrr-pricing h3 {
  font-size: clamp(26px, 3vw, 38px);
}

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

.mrr-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.mrr-pricing-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  background: var(--surface-soft);
  padding: 22px;
}

.mrr-pricing-grid strong {
  font-size: 20px;
}

.mrr-pricing-grid span {
  color: var(--accent);
  font-weight: 900;
}

.mrr-pricing-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.managed-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
}

.managed-intro,
.managed-grid article,
.managed-funnel article {
  border: 1px solid var(--line);
  background: white;
  padding: clamp(22px, 3vw, 34px);
}

.managed-intro {
  display: grid;
  align-content: start;
  gap: 14px;
}

.managed-intro h3 {
  font-size: clamp(28px, 4vw, 44px);
}

.managed-intro p,
.managed-grid p,
.managed-funnel p {
  color: var(--muted);
}

.managed-intro .button {
  width: fit-content;
  margin-top: 8px;
}

.managed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.managed-grid span,
.managed-funnel small {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.managed-funnel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
}

.managed-funnel article {
  display: grid;
  gap: 8px;
}

.managed-funnel strong {
  font-size: 20px;
}

.managed-funnel p {
  margin-bottom: 0;
}

.launch-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

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

.launch-card li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
}

.launch-card li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  background: var(--accent);
}

.launch-handover {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1fr);
  gap: 28px;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 42px);
  background: white;
}

.launch-handover h3 {
  max-width: 700px;
  font-size: clamp(28px, 4vw, 44px);
}

.launch-handover p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
}

.aftercare-system {
  display: grid;
  gap: 14px;
}

.handover-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  align-self: stretch;
  background: var(--ink);
}

.handover-list span {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 18px;
  background: white;
  color: var(--ink);
  font-weight: 800;
}

.aftercare-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.aftercare-phases article {
  background: var(--ink);
  padding: 20px;
  color: white;
}

.aftercare-phases small {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.aftercare-phases strong {
  display: block;
  margin: 8px 0;
  font-size: 18px;
}

.aftercare-phases p {
  margin: 0;
  color: #c6d0d8;
  font-size: 14px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  background: var(--ink);
  color: white;
}

.contact-page-hero {
  display: grid;
  min-height: calc(72vh - 79px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(244, 247, 249, 0.9) 1px, transparent 1px),
    linear-gradient(rgba(244, 247, 249, 0.9) 1px, transparent 1px);
  background-size: 44px 44px;
}

.contact-page-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 42px);
}

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

.contact-page-card a {
  width: fit-content;
  border-bottom: 2px solid var(--accent-strong);
  color: var(--ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

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

.company-details {
  background: var(--surface-soft);
}

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

.company-details-grid article {
  border: 1px solid var(--line);
  background: white;
  padding: clamp(22px, 3vw, 34px);
}

.company-details-grid span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.company-details-grid strong {
  display: block;
  margin: 8px 0;
  font-size: 20px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.company-details-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.company-details-grid a {
  border-bottom: 2px solid var(--accent-strong);
}

.contact p {
  max-width: 680px;
  color: #c6d0d8;
  font-size: 18px;
}

.contact-copy {
  display: grid;
  align-content: start;
}

.contact-route {
  display: grid;
  gap: 1px;
  max-width: 720px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.14);
}

.contact-route article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-route span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.contact-route strong {
  display: block;
  color: white;
  font-size: 18px;
}

.contact-route p {
  grid-column: 2;
  margin: -8px 0 0;
  font-size: 15px;
}

.contact-fit {
  max-width: 720px;
  margin-top: 18px;
  border-left: 4px solid var(--accent-strong);
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-fit strong {
  display: block;
  color: white;
}

.contact-fit ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.contact-fit li {
  color: #c6d0d8;
}

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

.form-intro {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.form-intro strong {
  font-size: 22px;
}

.form-intro span,
.form-note {
  color: var(--muted);
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.contact-form .checkbox-label input {
  width: auto;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
}

.contact-form .checkbox-label span {
  color: var(--muted);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: 3px solid var(--accent-soft);
}

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

.form-status {
  min-height: 22px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.form-status.success {
  color: #1d6f42;
}

.form-status.error {
  color: var(--accent-strong);
}

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

.privacy-page {
  min-height: calc(100vh - 79px);
}

.privacy-page h1 {
  font-size: clamp(44px, 7vw, 84px);
}

.audit-hero {
  display: grid;
  min-height: calc(80vh - 79px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(244, 247, 249, 0.9) 1px, transparent 1px),
    linear-gradient(rgba(244, 247, 249, 0.9) 1px, transparent 1px);
  background-size: 44px 44px;
}

.audit-summary,
.audit-grid article,
.audit-output-grid article,
.audit-cta {
  border: 1px solid var(--line);
  background: white;
  padding: clamp(22px, 3vw, 34px);
}

.audit-summary {
  box-shadow: var(--shadow);
}

.audit-summary strong {
  display: block;
  margin-bottom: 18px;
  font-size: 22px;
}

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

.audit-summary li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.audit-summary li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  background: var(--accent);
}

.audit-template {
  background: white;
}

.audit-risks {
  background: var(--surface-soft);
  color: var(--ink);
}

.audit-output {
  background: var(--surface-soft);
}

.audit-risks .section-note {
  color: var(--muted);
}

.audit-risk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.audit-risk-grid article {
  display: grid;
  gap: 10px;
  min-height: 230px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--surface-soft);
}

.audit-risk-grid span,
.audit-transition span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.audit-risk-grid strong {
  font-size: 22px;
  line-height: 1.15;
}

.audit-risk-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.audit-intake {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 6vw, 84px);
  background: var(--ink);
  color: white;
}

.audit-intake-copy p {
  max-width: 720px;
  color: #c6d0d8;
  font-size: 18px;
}

.audit-intake-panel {
  max-width: 720px;
  margin-top: 28px;
  border-left: 4px solid var(--accent-strong);
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
}

.audit-intake-panel strong {
  display: block;
  margin-bottom: 14px;
}

.audit-intake-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audit-intake-panel li {
  display: flex;
  gap: 10px;
  color: #c6d0d8;
}

.audit-intake-panel li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  background: var(--accent-strong);
}

.audit-form {
  align-self: start;
}

.audit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.audit-grid span,
.audit-output-grid small {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.audit-grid p,
.audit-output-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.audit-output-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.audit-output-grid article {
  display: grid;
  gap: 8px;
}

.audit-output-grid strong {
  font-size: 20px;
}

.audit-transition {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
}

.audit-transition div {
  display: grid;
  gap: 8px;
  background: white;
  padding: clamp(20px, 3vw, 28px);
}

.audit-transition strong {
  font-size: 19px;
}

.audit-transition p {
  margin-bottom: 0;
  color: var(--muted);
}

.audit-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
}

.audit-cta h3 {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 44px);
}

.privacy-content {
  display: grid;
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
}

.privacy-content article {
  background: white;
  padding: clamp(22px, 3vw, 34px);
}

.privacy-content h2 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.privacy-content p {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.privacy-content a {
  border-bottom: 2px solid var(--accent-strong);
  color: var(--ink);
  font-weight: 800;
}

.privacy-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
  border-left: 4px solid var(--accent);
  background: white;
  padding: 20px 24px;
}

.privacy-note span {
  color: var(--muted);
}

.privacy-note a {
  border-bottom: 2px solid var(--accent-strong);
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #0d1116;
  color: #c6d0d8;
  font-size: 14px;
}

.site-footer p {
  margin-bottom: 0;
}

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

.footer-links a:hover,
.footer-cookie-button:hover {
  color: white;
}

.footer-cookie-button.active {
  color: white;
  font-weight: 900;
}

.footer-cookie-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.cookie-banner {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  width: min(760px, calc(100vw - 32px));
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
  padding: 22px;
}

.cookie-banner__copy {
  display: grid;
  gap: 8px;
}

.cookie-banner__copy strong {
  font-size: 18px;
}

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

.cookie-banner__copy a {
  width: fit-content;
  border-bottom: 2px solid var(--accent-strong);
  color: var(--ink);
  font-weight: 800;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-content: end;
  justify-content: end;
  gap: 10px;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 55;
  display: inline-flex;
  min-width: 52px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--ink);
  box-shadow: 0 18px 48px rgba(58, 58, 58, 0.18);
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--accent);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 3px;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.has-cookie-banner .back-to-top {
  bottom: calc(var(--cookie-banner-height, 0px) + clamp(16px, 3vw, 32px) + 16px);
}

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

  .brand {
    width: min(294px, 38vw);
  }

  .nav {
    gap: 18px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.86fr);
    gap: clamp(28px, 4vw, 56px);
  }

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

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

  .flow-card::after {
    display: none;
  }

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

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

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

  .case-feature {
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
    gap: 22px;
  }

  .case-details {
    grid-column: 1 / -1;
  }

  .case-system-map.compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .audit-risk-grid,
  .audit-grid,
  .audit-output-grid,
  .audit-transition,
  .privacy-grid,
  .company-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 14px clamp(16px, 4vw, 32px);
  }

  .nav,
  .language-switch,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.menu-open .nav {
    grid-column: 1 / -1;
    position: static;
    display: grid;
    justify-content: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: white;
  }

  .site-header.menu-open .nav a {
    padding: 18px 24px;
    border-top: 1px solid var(--line);
  }

  .site-header.menu-open .language-switch {
    display: inline-flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
    margin-top: -1px;
    padding-inline: 18px 12px;
  }

  .site-header.menu-open .language-switch select {
    width: auto;
  }

  .section {
    padding: clamp(58px, 8vw, 86px) clamp(18px, 5vw, 44px);
  }

  .case-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero,
  .contact-page-hero,
  .audit-hero,
  .audit-intake,
  .case-feature,
  .case-deep-dive,
  .testimonial-feature,
  .founder,
  .mrr-pricing,
  .managed-layout,
  .launch-handover,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero,
  .audit-hero,
  .contact-page-hero {
    min-height: auto;
    align-items: start;
  }

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

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

  .positioning-grid,
  .audience-grid,
  .launch-grid,
  .privacy-grid,
  .service-list,
  .company-details-grid,
  .audit-grid,
  .audit-risk-grid,
  .audit-output-grid,
  .audit-transition,
  .case-grid,
  .case-outcomes,
  .case-system-map.compact,
  .case-meta,
  .founder-proof,
  .testimonial-grid,
  .mrr-pricing-grid,
  .managed-grid,
  .managed-funnel,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .case-feature {
    padding: clamp(22px, 5vw, 36px);
  }

  .case-media {
    max-height: none;
    min-height: 0;
  }

  .case-media.app-media {
    width: 100%;
    min-height: auto;
    padding: 20px;
  }

  .case-media .app-screenshot {
    max-width: min(260px, 72vw);
  }

  .case-deep-dive {
    grid-template-columns: 1fr;
  }

  .mrr-pricing,
  .managed-layout,
  .launch-handover,
  .audit-intake {
    gap: 22px;
  }

  .contact-form {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .brand {
    width: min(250px, 68vw);
  }

  .section {
    padding: 52px 16px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(36px, 10.6vw, 46px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(29px, 9vw, 42px);
    line-height: 1.06;
  }

  h3 {
    font-size: 20px;
  }

  .hero-text {
    margin-bottom: 22px;
    font-size: 17px;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 28px;
  }

  .header-cta,
  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    text-align: center;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .proof-row,
  .metric-strip,
  .flow-grid,
  .handover-list,
  .aftercare-phases,
  .case-system-map {
    grid-template-columns: 1fr;
  }

  .case-slider {
    padding: 8px;
  }

  .case-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .case-tab {
    flex: 0 0 190px;
    scroll-snap-align: start;
    font-size: 13px;
  }

  .flow-card::after {
    display: none;
  }

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

  .section-heading.split {
    align-items: start;
    flex-direction: column;
  }

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

  .hero-actions .button,
  .audit-cta .button,
  .managed-intro .button,
  .contact-form .button {
    width: 100%;
  }

  .system-visual {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .visual-topbar {
    min-height: 46px;
    padding: 0 14px;
  }

  .visual-topbar strong {
    max-width: 58%;
    font-size: 12px;
  }

  .flow-grid {
    padding: 14px;
  }

  .flow-card {
    min-height: 0;
    padding: 16px;
  }

  .flow-card strong {
    font-size: 17px;
  }

  .metric-strip span {
    padding: 14px;
  }

  .case-feature {
    gap: 20px;
    padding: 18px;
  }

  .case-feature h3 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .case-media {
    padding: 14px;
  }

  .case-meta {
    gap: 1px;
  }

  .case-meta div {
    padding: 11px;
  }

  .case-narrative,
  .case-system-map article,
  .case-outcomes article,
  .pricing-grid article,
  .positioning-grid article,
  .audience-grid article,
  .launch-grid article,
  .privacy-grid article,
  .service-card,
  .company-details-grid article,
  .audit-summary,
  .audit-grid article,
  .audit-output-grid article,
  .audit-cta,
  .founder-panel,
  .builder-card,
  .managed-intro,
  .managed-grid article,
  .managed-funnel article {
    padding: 20px;
  }

  .testimonial-feature p {
    font-size: clamp(24px, 8vw, 34px);
  }

  .contact {
    gap: 26px;
  }

  .contact-route article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .contact-route p {
    grid-column: auto;
    margin: 0;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 12px;
  }

  .contact-page-card {
    padding: 22px;
  }

  .mrr-pricing,
  .launch-handover {
    padding: 20px;
  }

  .pricing-footnote,
  .privacy-note {
    padding: 18px;
  }

  .audit-risk-grid article {
    min-height: auto;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100vw - 24px);
    padding: 18px;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    min-width: 48px;
    min-height: 48px;
  }

  body.has-cookie-banner .back-to-top {
    bottom: calc(var(--cookie-banner-height, 0px) + 24px);
  }

  .cookie-banner__actions,
  .cookie-banner__actions .button {
    width: 100%;
  }

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

@media (max-width: 420px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand {
    width: min(218px, 70vw);
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .section {
    padding-inline: 14px;
  }

  h1 {
    font-size: clamp(32px, 10vw, 40px);
  }

  h2 {
    font-size: clamp(27px, 8.5vw, 36px);
  }

  .case-tab {
    flex-basis: 170px;
  }

  .case-feature,
  .case-slider {
    margin-inline: -6px;
  }

  .case-media .app-screenshot {
    max-width: min(230px, 76vw);
  }

  .company-details-grid strong,
  .contact-page-card a {
    font-size: 18px;
  }
}
