:root {
  --ink: #0a0a0a;
  --panel: #141414;
  --panel-2: #101010;
  --paper: #fbfaf6;
  --paper-2: #f1ede4;
  --text: #111318;
  --text-muted: #5f6670;
  --light-line: #ded8ca;
  --cream: #f5f2ec;
  --muted: rgb(245 242 236 / 62%);
  --faint: rgb(245 242 236 / 12%);
  --hairline: rgb(245 242 236 / 10%);
  --accent: #e8541a;
  --accent-dark: #d44a13;
  --danger: #ff6b5d;
  --radius: 10px;
  --font-display: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
}

a {
  color: inherit;
}

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

h1,
h2 {
  font-family: var(--font-display);
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.5rem;
  color: var(--cream);
  font-size: clamp(3rem, 5.8vw, 5.55rem);
  font-weight: 800;
  line-height: 0.98;
}

h1 em {
  color: var(--accent);
  font-style: normal;
}

h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  color: var(--cream);
  font-size: clamp(2.3rem, 4.4vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.68;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border: 1px solid var(--accent);
  background: var(--panel);
  color: var(--cream);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem);
  border-bottom: 0.5px solid var(--hairline);
  background: rgb(10 10 10 / 88%);
  color: var(--cream);
  backdrop-filter: blur(18px);
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header {
    background: var(--ink);
  }
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.brand-text {
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: rgb(245 242 236 / 55%);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.desktop-nav a,
.header-link,
.site-footer a {
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.header-link:hover,
.site-footer a:hover {
  color: var(--cream);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.header-link {
  color: rgb(245 242 236 / 60%);
  font-size: 0.82rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  padding: 0.8rem 1.55rem;
  background: var(--accent);
  color: var(--cream);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button-secondary {
  gap: 0.45rem;
  border: 0;
  background: transparent;
  color: rgb(245 242 236 / 70%);
  padding-right: 0;
  padding-left: 0;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: transparent;
  color: var(--cream);
}

.button-small {
  min-height: 36px;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 78% 24%, rgb(232 84 26 / 10%), transparent 28%),
    linear-gradient(180deg, #0a0a0a 0%, #0a0a0a 100%);
}

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

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 2.1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.6rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  align-items: center;
}

.hero-proof > div:not([aria-hidden]) {
  display: grid;
  gap: 0.25rem;
}

.hero-proof > div[aria-hidden] {
  width: 0.5px;
  height: 28px;
  background: rgb(245 242 236 / 15%);
}

.hero-proof strong {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.hero-proof span {
  color: rgb(245 242 236 / 45%);
  font-size: 0.78rem;
}

.system-preview {
  min-width: 0;
  margin-top: 0.5rem;
  padding: 1.5rem;
  border: 0.5px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--cream);
}

.preview-label {
  margin-bottom: 1rem;
  color: rgb(245 242 236 / 35%);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 0.5px solid rgb(245 242 236 / 7%);
}

.service-item:last-child {
  border-bottom: 0;
}

.service-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 6px;
  background: rgb(232 84 26 / 12%);
}

.service-icon svg,
.service-check svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-item strong {
  display: block;
  color: var(--cream);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.2;
}

.service-item p {
  margin: 0.15rem 0 0;
  color: rgb(245 242 236 / 40%);
  font-size: 0.72rem;
  line-height: 1.35;
}

.service-check {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  background: rgb(232 84 26 / 15%);
}

.service-check svg {
  width: 10px;
  height: 10px;
  stroke-width: 2.5;
}

.proof-band {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  overflow: hidden;
  padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem);
  border-top: 0.5px solid rgb(245 242 236 / 8%);
  background: var(--ink);
}

.proof-band p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-band p::after {
  display: inline-block;
  width: 0.5px;
  height: 14px;
  margin-left: 0.8rem;
  background: rgb(245 242 236 / 15%);
  content: "";
  vertical-align: middle;
}

.proof-band div {
  display: flex;
  gap: 2rem;
  min-width: 0;
  overflow: hidden;
}

.proof-band span {
  flex: 0 0 auto;
  color: rgb(245 242 236 / 42%);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.proof-band span::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 0.6rem;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  vertical-align: middle;
}

.section,
.audit-section,
.site-footer {
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  background: var(--paper);
  color: var(--text);
}

.services-section,
.faq-section {
  background: var(--paper-2);
}

.process-section {
  background: var(--paper);
}

.section h2,
.section h3,
.audit-section h2,
.audit-section h3 {
  color: var(--text);
}

.section p,
.audit-section p {
  color: var(--text-muted);
}

.section .eyebrow,
.audit-section .eyebrow {
  color: var(--accent);
}

.section-heading {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin: 0 auto 2rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading p,
.work-card p,
.audit-copy p {
  max-width: 620px;
}

.system-steps,
.service-grid,
.timeline {
  display: grid;
  max-width: 1180px;
  gap: 1rem;
  margin: 0 auto;
}

.system-steps {
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  list-style: none;
}

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

.system-steps li,
.service-card,
.timeline article,
details,
.audit-form,
.form-success {
  border: 0.5px solid var(--light-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgb(17 19 24 / 7%);
}

.mini-browser {
  border: 0.5px solid var(--hairline);
  border-radius: var(--radius);
  background: #101010;
}

.system-steps li,
.service-card,
.timeline article {
  padding: 1.25rem;
}

.system-steps span,
.service-card span,
.timeline span {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 1.1rem;
  border: 0.5px solid rgb(232 84 26 / 20%);
  border-radius: 8px;
  background: rgb(232 84 26 / 9%);
}

.timeline-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.system-steps p,
.service-card p,
.timeline p,
details p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.service-card-featured {
  border-color: rgb(232 84 26 / 32%);
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgb(232 84 26 / 24%);
}

.service-card-featured h3 {
  color: var(--cream);
}

.service-card-featured p {
  color: rgb(245 242 236 / 62%);
}

.work-section {
  background: var(--ink);
  color: var(--cream);
}

.work-section h2,
.work-section h3 {
  color: var(--cream);
}

.work-section p {
  color: var(--muted);
}

.work-card {
  display: grid;
  max-width: 1180px;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin: 0 auto;
}

.mini-browser {
  overflow: hidden;
  background: #101010;
}

.mini-browser-bar {
  display: flex;
  gap: 0.4rem;
  padding: 0.8rem;
  background: rgb(245 242 236 / 5%);
}

.mini-browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgb(245 242 236 / 28%);
}

.mini-browser-body {
  min-height: 280px;
  padding: 1.35rem;
  background:
    linear-gradient(90deg, rgb(245 242 236 / 5%) 1px, transparent 1px),
    linear-gradient(180deg, rgb(245 242 236 / 5%) 1px, transparent 1px);
  background-size: 40px 40px;
}

.mini-browser-body span {
  display: inline-flex;
  margin-bottom: 3rem;
  padding: 0.35rem 0.55rem;
  border-radius: 3px;
  background: rgb(232 84 26 / 14%);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
}

.mini-browser-body strong {
  display: block;
  max-width: 380px;
  margin-bottom: 0.8rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.02;
}

.faq-grid {
  display: grid;
  max-width: 880px;
  gap: 0.75rem;
  margin: 0 auto;
}

details {
  padding: 1rem 1.1rem;
}

summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin-top: 0.75rem;
}

.audit-section {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(2rem, 5vw, 4rem);
  background: #f4fbf7;
  color: var(--text);
}

.reassurance {
  padding: 1rem;
  border-left: 3px solid var(--accent);
  background: #fff;
}

.audit-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  border: 0.5px solid var(--light-line);
  border-radius: 4px;
  padding: 0.72rem 0.8rem;
  background: #fff;
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

.field-help {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.35;
}

.span-2 {
  grid-column: 1 / -1;
}

.hidden,
.form-honeypot,
.form-gotcha {
  display: none !important;
}

.form-success {
  padding: 2rem;
  border-color: rgb(232 84 26 / 34%);
  text-align: center;
}

.form-success strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.form-error {
  grid-column: 1 / -1;
  color: var(--danger);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.7fr 1fr;
  gap: 2rem;
  border-top: 0.5px solid var(--hairline);
  background: var(--ink);
  color: rgb(245 242 236 / 55%);
}

.footer-brand {
  margin-bottom: 1rem;
  color: var(--cream);
}

.site-footer strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 0.35rem 0;
  color: rgb(245 242 236 / 55%);
  text-decoration: none;
}

.mobile-cta {
  display: none;
}

#top,
#system,
#services,
#guarantees,
#faq,
#audit {
  scroll-margin-top: 78px;
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .section-heading,
  .work-card,
  .audit-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .desktop-nav,
  .header-link {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .site-header .button {
    justify-self: end;
  }

  .hero {
    padding: 3rem 1.25rem 2.5rem;
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

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

  .hero-proof {
    gap: 0.9rem;
  }

  .system-steps,
  .service-grid,
  .timeline,
  .audit-form {
    grid-template-columns: 1fr;
  }

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

  .section,
  .audit-section,
  .site-footer {
    padding: 3.8rem 1.25rem;
  }

  .span-2 {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 58px;
  }

  .site-header {
    padding: 1rem;
  }

  .site-header .button {
    display: none;
  }

  .brand-logo {
    width: 24px;
    height: 24px;
  }

  .brand-text {
    font-size: 0.82rem;
  }

  .hero {
    gap: 2rem;
  }

  .hero-proof > div[aria-hidden] {
    display: none;
  }

  .system-preview {
    padding: 1.1rem;
  }

  .proof-band {
    display: grid;
  }

  .proof-band div {
    gap: 1.2rem;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    border-top: 0.5px solid var(--hairline);
    box-shadow: 0 -14px 28px rgb(0 0 0 / 28%);
  }

  .mobile-nav-pills {
    display: none;
  }

  .mobile-cta-actions {
    display: contents;
  }

  .mobile-cta-actions a {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    background: var(--panel);
    color: var(--cream);
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-cta-actions a + a {
    background: var(--accent);
  }

  .audit-section {
    padding-bottom: 5.5rem;
  }
}

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