:root {
  --ink: #111820;
  --muted: #5d6a75;
  --line: #dce5ea;
  --soft: #f5f8fa;
  --paper: #ffffff;
  --dark: #05090d;
  --dark-2: #101820;
  --cyan: #02aeda;
  --cyan-dark: #007fa4;
  --max: 1160px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(17, 24, 32, .10);
}

* { box-sizing: border-box; }

html {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  line-height: 1.7;
}

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

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

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

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

h1 {
  max-width: 950px;
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 3.8vw, 4.05rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3vw, 3.35rem);
  font-weight: 720;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(220, 229, 234, .82);
  background: #fff;
}

.site-header.compact {
  position: relative;
}

.site-header.compact .site-nav {
  position: static;
  display: flex;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand img {
  width: 245px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #26323b;
  font-size: .95rem;
  font-weight: 620;
}

.site-nav a {
  padding-block: 8px;
  transition: color .18s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--cyan-dark);
}

.nav-cta {
  padding: 10px 16px !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 9px 13px;
  font: inherit;
  font-weight: 700;
}

.dark-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 174, 218, .18), transparent 36%),
    linear-gradient(180deg, var(--dark), var(--dark-2));
  color: #fff;
}

.hero {
  padding: 108px 0 90px;
}

.page-hero {
  padding: 96px 0 86px;
}

.about-hero {
  padding: 104px 0 92px;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 58px;
  align-items: end;
}

.about-signature {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, .065);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .20);
}

.about-signature span {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: .82rem;
  font-weight: 850;
}

.about-signature strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.15;
}

.about-signature p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 54px;
  align-items: end;
}

.lead {
  max-width: 760px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.13rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.page-hero .lead {
  max-width: 780px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 780;
  line-height: 1.1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  background: var(--cyan);
  color: #00141b;
  box-shadow: 0 16px 34px rgba(2, 174, 218, .24);
}

.primary:hover {
  background: #20c7ef;
}

.ghost {
  border: 1px solid rgba(255, 255, 255, .23);
  color: #fff;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .20);
}

.panel-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-weight: 800;
}

.hero-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
}

.orbital {
  position: absolute;
  right: -120px;
  top: 40px;
  width: 430px;
  aspect-ratio: 1;
  border: 1px solid rgba(2, 174, 218, .22);
  border-radius: 50%;
  opacity: .55;
}

.orbital::before,
.orbital::after {
  content: "";
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.orbital::after {
  inset: 31%;
  background: radial-gradient(circle, rgba(2, 174, 218, .32), transparent 62%);
}

.section {
  padding: 98px 0;
}

.soft-band {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow),
.text-stack p,
.narrow > p,
.card p,
.proof-grid p,
.timeline p,
.premium-timeline p,
.about-statement p,
.legal-page p {
  color: var(--muted);
}

.dark-band .section-heading p:not(.eyebrow),
.dark-band .proof-grid p,
.dark-band .lead {
  color: rgba(255, 255, 255, .76);
}

.cards {
  display: grid;
  gap: 18px;
}

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

.card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 24, 32, .04);
}

.card h3 {
  min-height: 1.35em;
}

.card:has(.service-icon) {
  text-align: center;
}

.icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--cyan-dark);
  font-size: .82rem;
  font-weight: 850;
}

.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 24px;
  border: 1px solid rgba(2, 174, 218, .24);
  border-radius: 50%;
  background: rgba(2, 174, 218, .07);
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.app-icon::before {
  width: 28px;
  height: 22px;
  border: 2px solid var(--cyan-dark);
  border-radius: 5px;
}

.app-icon::after {
  width: 18px;
  height: 2px;
  background: var(--cyan-dark);
  box-shadow: 0 7px 0 var(--cyan-dark);
}

.crm-icon::before {
  width: 14px;
  height: 14px;
  top: 15px;
  border: 2px solid var(--cyan-dark);
  border-radius: 50%;
}

.crm-icon::after {
  width: 30px;
  height: 16px;
  top: 33px;
  border: 2px solid var(--cyan-dark);
  border-radius: 16px 16px 5px 5px;
  border-bottom-color: transparent;
}

.site-icon::before {
  width: 30px;
  height: 24px;
  border: 2px solid var(--cyan-dark);
  border-radius: 5px;
}

.site-icon::after {
  width: 13px;
  height: 13px;
  right: 14px;
  bottom: 14px;
  border-right: 2px solid var(--cyan-dark);
  border-bottom: 2px solid var(--cyan-dark);
  transform: rotate(-45deg);
}

.saas-icon::before {
  width: 30px;
  height: 18px;
  border: 2px solid var(--cyan-dark);
  border-radius: 14px;
}

.saas-icon::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-dark);
  box-shadow: -11px 0 0 var(--cyan-dark), 11px 0 0 var(--cyan-dark);
}

.dashboard-icon::before {
  width: 30px;
  height: 24px;
  border: 2px solid var(--cyan-dark);
  border-radius: 5px;
}

.dashboard-icon::after {
  width: 4px;
  height: 14px;
  bottom: 17px;
  background: var(--cyan-dark);
  box-shadow: -9px 5px 0 var(--cyan-dark), 9px -3px 0 var(--cyan-dark);
}

.form-icon::before {
  width: 28px;
  height: 32px;
  border: 2px solid var(--cyan-dark);
  border-radius: 5px;
}

.form-icon::after {
  width: 16px;
  height: 2px;
  background: var(--cyan-dark);
  box-shadow: 0 7px 0 var(--cyan-dark), 0 14px 0 var(--cyan-dark);
}

.automation-icon::before {
  width: 28px;
  height: 28px;
  border: 2px solid var(--cyan-dark);
  border-radius: 50%;
  border-right-color: transparent;
}

.automation-icon::after {
  right: 13px;
  top: 16px;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--cyan-dark);
  border-right: 2px solid var(--cyan-dark);
  transform: rotate(45deg);
}

.client-icon::before {
  width: 26px;
  height: 20px;
  border: 2px solid var(--cyan-dark);
  border-radius: 5px;
}

.client-icon::after {
  top: 18px;
  right: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--cyan-dark);
}

.clarity-icon::before {
  width: 28px;
  height: 20px;
  border: 2px solid var(--cyan-dark);
  border-radius: 5px;
}

.clarity-icon::after {
  width: 16px;
  height: 2px;
  background: var(--cyan-dark);
  box-shadow: 0 7px 0 var(--cyan-dark);
}

.trust-icon::before {
  width: 26px;
  height: 30px;
  border: 2px solid var(--cyan-dark);
  border-radius: 14px 14px 10px 10px;
}

.trust-icon::after {
  width: 8px;
  height: 14px;
  border-right: 2px solid var(--cyan-dark);
  border-bottom: 2px solid var(--cyan-dark);
  transform: rotate(42deg);
}

.local-icon::before {
  top: 12px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--cyan-dark);
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
}

.local-icon::after {
  top: 20px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--cyan-dark);
  border-radius: 50%;
  background: #fff;
}

.conversion-icon::before {
  width: 30px;
  height: 20px;
  border: 2px solid var(--cyan-dark);
  border-radius: 5px;
}

.conversion-icon::after {
  width: 14px;
  height: 14px;
  right: 12px;
  bottom: 13px;
  border-right: 2px solid var(--cyan-dark);
  border-bottom: 2px solid var(--cyan-dark);
  transform: rotate(-45deg);
}

.speed-icon::before {
  top: 15px;
  width: 31px;
  height: 23px;
  border: 2px solid var(--cyan-dark);
  border-radius: 20px 20px 6px 6px;
  border-bottom: 0;
}

.speed-icon::after {
  top: 29px;
  left: 29px;
  width: 15px;
  height: 2px;
  background: var(--cyan-dark);
  transform-origin: left center;
  transform: rotate(-38deg);
}

.refresh-icon::before {
  width: 28px;
  height: 30px;
  border: 2px solid var(--cyan-dark);
  border-radius: 5px;
}

.refresh-icon::after {
  top: 20px;
  left: 21px;
  width: 16px;
  height: 12px;
  border: 2px solid var(--cyan-dark);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 70px;
}

.text-stack {
  max-width: 760px;
  font-size: 1.08rem;
}

.text-stack p {
  margin-bottom: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--cyan-dark);
  font-weight: 780;
}

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

.proof-grid article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
}

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

.process-list article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 32, .04);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(2, 174, 218, .24);
  border-radius: 50%;
  background: rgba(2, 174, 218, .07);
  color: var(--cyan-dark);
  font-size: .78rem;
  font-weight: 850;
}

.process-list h3 {
  margin-bottom: 8px;
}

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

.client-proof {
  margin-top: 42px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(2, 174, 218, .09), transparent 40%),
    #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 32, .055);
}

.client-proof h3 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.client-proof a {
  color: var(--cyan-dark);
}

.client-proof p:last-child {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.vitals-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(2, 174, 218, .08), transparent 34%),
    #fff;
  box-shadow: 0 10px 30px rgba(17, 24, 32, .045);
}

.vitals-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 820;
}

.vitals-grid strong {
  display: block;
  margin-bottom: 16px;
  color: #18a323;
  font-size: clamp(2.35rem, 4vw, 4.4rem);
  font-weight: 430;
  line-height: 1;
}

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

.vitals-grid b {
  color: var(--ink);
}

.final-cta {
  text-align: center;
}

.final-cta .button {
  margin-top: 18px;
}

.timeline {
  display: grid;
  gap: 26px;
}

.timeline article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  color: var(--cyan-dark);
  font-weight: 850;
}

.timeline h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
}

.about-intro {
  padding-bottom: 78px;
}

.premium-timeline {
  display: grid;
  gap: 16px;
}

.premium-timeline article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 34px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 32, .045);
}

.premium-timeline span {
  align-self: start;
  display: inline-flex;
  width: fit-content;
  min-width: 86px;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(2, 174, 218, .24);
  border-radius: var(--radius);
  background: rgba(2, 174, 218, .08);
  color: var(--cyan-dark);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.premium-timeline h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 1.8vw, 1.72rem);
}

.premium-timeline p {
  margin-bottom: 0;
}

.about-statement {
  max-width: 980px;
  margin-inline: auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(2, 174, 218, .08), transparent 34%),
    #fff;
  box-shadow: var(--shadow);
}

.about-statement h2 {
  max-width: 860px;
}

.about-statement p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.form-shell {
  max-width: 940px;
}

.contact-form {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(2, 174, 218, .045), transparent 34%),
    #fff;
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 6px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  color: #33414d;
  font-weight: 400;
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #354551;
  font-size: .93rem;
  font-weight: 500;
}

.field-label.required::after {
  content: "*";
  color: var(--cyan-dark);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.required-note {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: .92rem;
}

.required-note span {
  color: var(--cyan-dark);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8e2e7;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  padding: 14px 15px;
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

textarea {
  resize: vertical;
  min-height: 132px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(2, 174, 218, .18);
  background: #fff;
}

input::placeholder,
textarea::placeholder {
  color: #8a98a3;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-note {
  color: var(--muted);
  font-size: .95rem;
  max-width: 680px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 8px;
}

.form-footer .form-note {
  margin: 0;
}

.form-footer .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.legal-page {
  padding: 72px 0;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.thanks img {
  margin: 0 auto 34px;
}

.thanks p {
  color: rgba(255, 255, 255, .78);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    min-height: 76px;
  }

  .brand img {
    width: 210px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-top: 6px;
  }

  .site-nav {
    position: absolute;
    inset: 76px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .about-hero-grid,
  .split,
  .cards.three,
  .proof-grid,
  .vitals-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 84px 0 70px;
  }

  .section,
  .page-hero {
    padding: 72px 0;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .premium-timeline article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-hero {
    padding: 82px 0 70px;
  }
}

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

  .brand img {
    width: 180px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero,
  .page-hero,
  .about-hero,
  .section {
    padding: 60px 0;
  }

  .hero-actions {
    gap: 10px;
  }

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

  .hero-panel,
  .card,
  .proof-grid article,
  .process-list article,
  .client-proof,
  .vitals-grid article,
  .premium-timeline article {
    padding: 22px;
  }

  .service-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
  }

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

  .lead,
  .text-stack {
    font-size: 1.02rem;
  }

  .contact-form {
    padding: 22px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .about-statement {
    padding: 26px;
  }

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