:root {
  --ink: #111316;
  --ink-2: #1b2023;
  --paper: #f6f4ef;
  --paper-2: #e9e4d8;
  --line: rgba(17, 19, 22, 0.14);
  --muted: #6d7275;
  --white: #ffffff;
  --orange: #ff7a1a;
  --orange-dark: #d85d08;
  --teal: #1aa6a2;
  --steel: #547184;
  --gold: #cda348;
  --shadow: 0 18px 50px rgba(8, 10, 12, 0.18);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 4vw, 48px);
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  min-height: 68px;
  background: rgba(17, 19, 22, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(192px, 18vw, 232px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span:not(.sr-only) + span {
  margin-top: -10px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 86svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 10, 11, 0.94) 0%, rgba(9, 10, 11, 0.78) 35%, rgba(9, 10, 11, 0.24) 72%),
    linear-gradient(0deg, rgba(17, 19, 22, 0.92) 0%, rgba(17, 19, 22, 0.06) 38%),
    rgba(17, 19, 22, 0.08);
}

.hero-grid {
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 68%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 128px 0 54px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--orange-dark);
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.65rem, 9vw, 8.5rem);
  font-weight: 950;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.55rem);
  font-weight: 900;
}

h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-lede {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(255, 122, 26, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ff8d3b;
}

.btn-quiet {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.hero-stats div {
  min-height: 94px;
  padding: 18px;
  background: rgba(17, 19, 22, 0.64);
  backdrop-filter: blur(8px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1;
}

.hero-stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.proof-band {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-track {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.proof-track::-webkit-scrollbar {
  display: none;
}

.proof-track span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(72px, 9vw, 120px) 0;
}

.intro {
  background:
    linear-gradient(rgba(17, 19, 22, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 22, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
}

.intro-grid,
.edge-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.intro-copy {
  max-width: 660px;
  color: #3d4245;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.intro-copy p,
.edge-panel p,
.contact p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 18px;
}

.services {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 260px;
  padding: clamp(22px, 3vw, 32px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-card svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
  stroke-width: 2.1;
}

.service-card h3 {
  margin-top: 36px;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.accent-card {
  background: var(--ink);
  color: var(--white);
}

.accent-card p {
  color: rgba(255, 255, 255, 0.72);
}

.accent-card svg {
  color: var(--orange);
}

.edge {
  background: var(--ink);
  color: var(--white);
}

.edge-panel {
  position: sticky;
  top: 104px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 32px 32px;
}

.edge-panel p:not(.eyebrow) {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

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

.signal-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.signal-item > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--orange);
  font-weight: 950;
}

.signal-item p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.method {
  background: var(--paper);
}

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

.method-grid article,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 36px rgba(17, 19, 22, 0.06);
}

.method-grid article {
  min-height: 240px;
  padding: clamp(22px, 3vw, 32px);
}

.method-grid span,
.price-kicker {
  display: inline-block;
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.method-grid h3 {
  margin-top: 48px;
}

.method-grid p,
.price-card li {
  color: var(--muted);
}

.method-grid p {
  margin: 12px 0 0;
}

.pricing {
  background: var(--white);
}

.pricing-wrap {
  position: relative;
}

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

.price-card {
  position: relative;
  min-height: 360px;
  padding: clamp(22px, 3vw, 32px);
}

.price-card.featured {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-10px);
}

.price-card.featured .price-kicker {
  color: var(--orange);
}

.price-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.price-card h3 {
  margin-top: 22px;
}

.price {
  margin: 10px 0 26px;
  color: var(--steel);
  font-weight: 900;
}

.featured .price {
  color: rgba(255, 255, 255, 0.86);
}

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

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--orange);
}

.contact {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(26, 166, 162, 0.24), transparent 38%),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 34px 34px, 34px 34px, auto;
}

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

.contact p {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.email-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--orange);
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
}

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

.lead-form span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 900;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
  min-height: 128px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.24);
}

.lead-form .btn {
  width: 100%;
}

.lead-form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.site-footer {
  padding: 30px 0;
  background: #08090a;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

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

.site-footer p {
  margin: 0;
}

.site-footer a:last-child {
  font-weight: 900;
  color: var(--orange);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 68px 16px auto;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(17, 19, 22, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    padding: 14px;
    border-radius: 6px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: 84svh;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 10, 11, 0.95) 0%, rgba(9, 10, 11, 0.78) 48%, rgba(9, 10, 11, 0.3) 100%),
      linear-gradient(0deg, rgba(17, 19, 22, 0.94) 0%, rgba(17, 19, 22, 0.14) 48%);
  }

  .hero-content {
    padding-top: 116px;
  }

  .intro-grid,
  .edge-grid,
  .contact-grid,
  .service-grid,
  .method-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    border-left: 0;
  }

  .service-card {
    min-height: 220px;
    border-left: 1px solid var(--line);
  }

  .edge-panel {
    position: static;
  }

  .price-card.featured {
    transform: none;
  }

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

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1160px);
  }

  .site-header {
    min-height: 66px;
    padding: 12px 14px;
  }

  .brand-logo {
    width: min(184px, 56vw);
  }

  .hero {
    min-height: 82svh;
  }

  .hero-content {
    padding: 104px 0 32px;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(2.75rem, 12.8vw, 3.25rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 26px;
  }

  .hero-stats div {
    min-height: 76px;
    padding: 12px;
  }

  .hero-stats strong {
    font-size: 1.22rem;
  }

  .hero-stats span {
    font-size: 0.74rem;
  }

  .section-pad {
    padding: 58px 0;
  }

  .signal-item {
    grid-template-columns: 1fr;
  }

  .signal-item > span {
    width: 48px;
    height: 48px;
  }
}
