:root {
  --ink: #08080a;
  --graphite: #1c1d21;
  --muted: #666a73;
  --orange: #ff7417;
  --orange-soft: #fff2e8;
  --amber: #ffb46f;
  --teal: #8ba2a6;
  --paper: #fffaf5;
  --white: #ffffff;
  --line: rgba(8, 8, 10, 0.12);
  --shadow: 0 18px 48px rgba(8, 8, 10, 0.1);
  --max: 1160px;
  --radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 18ch;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  font-weight: 900;
  line-height: 0.98;
}

h2 {
  max-width: 14ch;
  font-size: clamp(1.85rem, 3vw, 2.9rem);
  font-weight: 900;
  line-height: 1.04;
}

h3 {
  font-size: clamp(1.12rem, 1.45vw, 1.35rem);
  font-weight: 800;
  line-height: 1.18;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.section-anchor {
  scroll-margin-top: 88px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: clamp(158px, 17vw, 212px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  border-radius: 999px;
  padding: 0.68rem 0.95rem;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--orange-soft);
  outline: 0;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 8, 10, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.36rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

.hero {
  min-height: calc(82svh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 116, 23, 0.08), rgba(255, 250, 245, 0) 42%),
    var(--paper);
}

.hero-grid,
.about-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(2rem, 5vw, 4.25rem);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.18rem;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.72;
}

.button {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.05rem;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: 0;
}

.button.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 16px 36px rgba(255, 116, 23, 0.28);
}

.hero-dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.dashboard-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1rem;
  border-bottom: 1px solid var(--line);
  background: #fbfaf8;
}

.dashboard-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #d8d3cc;
}

.dashboard-top span:first-child {
  background: var(--orange);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.85rem;
  padding: 1rem;
}

.metric-card,
.channel-map {
  display: grid;
  gap: 0.55rem;
  min-height: 116px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdfb;
}

.metric-card.large {
  grid-row: span 2;
  min-height: 248px;
  align-content: space-between;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.metric-card span,
.channel-map span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-card.large span {
  color: var(--amber);
}

.metric-card strong {
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 1;
}

.mini-bars {
  height: 110px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 0.45rem;
}

.mini-bars i {
  display: block;
  min-height: 34px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--amber), var(--orange));
}

.mini-bars i:nth-child(2) { height: 52%; }
.mini-bars i:nth-child(3) { height: 68%; }
.mini-bars i:nth-child(4) { height: 84%; }
.mini-bars i:nth-child(5) { height: 100%; }

.channel-map {
  grid-column: 1 / -1;
  min-height: 170px;
}

.channel-map svg {
  width: 100%;
  height: auto;
}

.proof-strip {
  padding-top: 0;
  background: var(--paper);
}

.proof-grid,
.suite-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

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

.proof-grid article {
  display: grid;
  gap: 0.55rem;
  padding: 1.1rem;
  border-top: 1px solid var(--line);
}

.proof-grid span,
.process-grid span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-grid strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.proof-grid p,
.section-intro,
.suite-grid p,
.channel-list p,
.process-grid p,
.testimonial-grid blockquote,
.testimonial-grid span,
.faq-list p {
  color: var(--muted);
}

.section-head.wide h2 {
  max-width: 18ch;
}

.section-intro {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.75;
}

.service-suite {
  background: var(--white);
  border-block: 1px solid var(--line);
}

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

.suite-grid article {
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.suite-grid span {
  color: var(--ink);
  font-weight: 900;
}

.suite-grid p,
.channel-list p,
.process-grid p,
.faq-list p {
  font-size: 0.96rem;
  line-height: 1.7;
}

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

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

.channel-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.channel-list,
.faq-list {
  display: grid;
  gap: 0.85rem;
}

.channel-list article {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.channel-list strong {
  color: var(--amber);
  font-size: 1.05rem;
}

.channel-list p {
  color: rgba(255, 255, 255, 0.68);
}

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

.process-grid article {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1.1rem 1rem 0;
  border-top: 1px solid var(--line);
}

.testimonials {
  background: var(--white);
  border-block: 1px solid var(--line);
}

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

.testimonial-grid figure {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 1.5rem;
  margin: 0;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.testimonial-grid blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
}

.testimonial-grid figcaption {
  display: grid;
  gap: 0.15rem;
}

.testimonial-grid strong {
  color: var(--ink);
}

.testimonial-grid span {
  font-size: 0.9rem;
}

.faq-list article {
  display: grid;
  gap: 0.45rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.about {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.about-grid {
  align-items: start;
}

.rich-copy {
  max-width: 720px;
  display: grid;
  gap: 1rem;
  color: var(--graphite);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.85;
}

.section-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

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

.service-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding: clamp(1.2rem, 2.2vw, 1.55rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 8, 10, 0.04);
}

.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 116, 23, 0.28);
  border-radius: var(--radius);
  color: var(--orange);
  background: var(--orange-soft);
}

.service-icon svg {
  width: 34px;
  height: 34px;
}

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

.contact-grid {
  align-items: start;
}

.contact h2 {
  color: var(--white);
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.contact-copy > p {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.72;
}

.contact-list,
.footer-contact {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  font-style: normal;
}

.contact-list a,
.contact-list p {
  display: grid;
  gap: 0.1rem;
  color: var(--white);
}

.contact-list span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.contact-panel {
  display: grid;
}

.contact-form label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  padding: 0.9rem 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(255, 116, 23, 0.22);
}

.contact-form .button {
  margin-top: 0.35rem;
}

.contact-form .button[disabled] {
  cursor: wait;
  opacity: 0.74;
  transform: none;
}

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

.form-status {
  min-height: 1.4rem;
  color: var(--amber);
  font-size: 0.92rem;
}

.privacy-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.55;
}

.form-status.is-error {
  color: #ffb4a8;
}

.thank-you-banner {
  display: grid;
  gap: 0.7rem;
  padding: clamp(1.25rem, 3vw, 1.7rem);
  border: 1px solid rgba(255, 116, 23, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 116, 23, 0.12);
}

.thank-you-banner[hidden] {
  display: none;
}

.thank-you-banner span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.thank-you-banner h3 {
  color: var(--white);
}

.thank-you-banner p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 2.2rem 0 1.2rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.footer-contact {
  justify-self: end;
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.footer-contact a:hover {
  color: var(--orange);
}

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

.legal-wrap {
  max-width: 820px;
  display: grid;
  gap: 1.4rem;
}

.legal-wrap h1 {
  max-width: 12ch;
}

.legal-wrap h2 {
  margin-top: 1.4rem;
  max-width: none;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-wrap p,
.legal-wrap li {
  color: var(--muted);
}

.legal-wrap ul {
  margin: 0;
  padding-left: 1.2rem;
}

.footer-bottom {
  padding-top: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 70;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    z-index: 60;
    width: auto;
    display: grid;
    flex-direction: column;
    gap: 0;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
    background: rgba(255, 250, 245, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .site-nav a {
    border-radius: 10px;
    padding: 0.9rem 0.95rem;
    font-size: 1rem;
    line-height: 1.2;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .channel-grid,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .service-card,
  .service-card:nth-child(2) {
    min-height: auto;
  }

  .footer-contact {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .nav-wrap {
    min-height: 74px;
  }

  .section-anchor {
    scroll-margin-top: 78px;
  }

  .hero-grid {
    gap: 1.35rem;
    padding: 2.6rem 0 3.2rem;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.15rem);
  }

  .lead {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .button {
    width: 100%;
  }

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

  .metric-card.large {
    min-height: 190px;
  }

  .channel-map {
    grid-column: auto;
    min-height: 140px;
  }

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

  .suite-grid article,
  .testimonial-grid figure {
    min-height: auto;
  }

  .contact-form {
    margin-inline: -0.1rem;
  }
}
