:root {
  --orange: #ff6300;
  --orange-dark: #d94f00;
  --azure: #2db3f0;
  --charcoal: #1f2937;
  --ink: #0f1723;
  --muted: #5d6877;
  --soft: #e5e7eb;
  --pale: #f7f8fa;
  --white: #ffffff;
  --max: 1180px;
  color: var(--charcoal);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
}

body,
button,
input {
  font: inherit;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(31, 41, 55, 0.1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 900;
  color: var(--ink);
}

.brand-logo-img {
  width: clamp(180px, 18vw, 238px);
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(31, 41, 55, 0.16);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
}

.nav-toggle svg,
.feature-card svg,
.security-item svg,
.agency-points svg,
.pilot-cards svg,
.phone-card svg {
  width: 21px;
  height: 21px;
  stroke-width: 2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 650;
  color: #354153;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--orange-dark);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-links a[aria-current="true"]:not(.nav-cta) {
  color: var(--orange);
  font-weight: 850;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
}

.nav-cta:hover {
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 730px;
  display: flex;
  align-items: center;
  padding: 88px 0 72px;
  background: #0f1723;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(15, 23, 35, 0.78) 0%, rgba(15, 23, 35, 0.58) 46%, rgba(15, 23, 35, 0.9) 100%),
    url('/assets/signal-rings.png');
  background-size: cover;
  background-position: 48% center;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  gap: 48px;
  align-items: center;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.25;
}

h4 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.3;
}

.hero-text {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(255, 99, 0, 0.24);
}

.button.primary:hover {
  background: var(--orange-dark);
}

.button.secondary {
  border-color: rgba(31, 41, 55, 0.18);
  background: var(--white);
  color: var(--charcoal);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.strapline {
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.42rem;
  font-weight: 750;
}

.product-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 800;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 99, 0, 0.12);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.metric-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 16px 12px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 14px 28px rgba(15, 23, 35, 0.12);
}

.visits-card {
  background: linear-gradient(135deg, #0f9f6e 0%, #24c889 52%, #92e6bf 100%);
}

.attention-card {
  background: linear-gradient(135deg, #c94a00 0%, var(--orange) 58%, #ff9c4a 100%);
}

.completed-card {
  background: linear-gradient(135deg, #126f9b 0%, var(--azure) 56%, #94dcfb 100%);
}

.metric-bg-icon {
  position: absolute;
  right: -10px;
  bottom: -12px;
  width: 68px;
  height: 68px;
  color: rgba(255, 255, 255, 0.18);
  stroke-width: 1.7;
}

.metric-row strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
}

.metric-row span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
}

.schedule-list span,
.schedule-list em,
.phone-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.schedule-list {
  display: grid;
  gap: 10px;
}

.schedule-list div {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: var(--pale);
}

.schedule-list strong {
  min-width: 0;
  color: var(--ink);
  font-size: 0.9rem;
}

.schedule-list em {
  font-style: normal;
  color: var(--orange-dark);
  font-weight: 750;
}

.phone-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(45, 179, 240, 0.11);
  color: #126388;
}

.phone-card svg {
  flex: 0 0 auto;
  color: var(--azure);
}

.logo-band {
  padding: 32px 0;
  border-bottom: 1px solid var(--soft);
  background: var(--white);
}

.logo-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-showcase img {
  width: min(680px, 100%);
  filter: drop-shadow(0 14px 34px rgba(31, 41, 55, 0.1));
}

.section {
  padding: 92px 0;
}

.intro-section {
  background: var(--white);
}

.workflow-section {
  padding-top: 0;
  background: var(--white);
}

.workflow-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: start;
  padding: 42px;
  border: 1px solid rgba(31, 41, 55, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 62%, rgba(45, 179, 240, 0.08) 100%);
}

.workflow-panel > div:first-child p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.workflow-points article {
  min-height: 236px;
  padding: 24px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 8px;
  background: rgba(247, 248, 250, 0.86);
}

.workflow-points svg {
  width: 24px;
  height: 24px;
  margin-bottom: 20px;
  color: var(--orange);
  stroke-width: 2;
}

.workflow-points p {
  color: var(--muted);
  line-height: 1.62;
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: start;
}

.two-column p:not(.eyebrow),
.section-heading p,
.security-copy p,
.agency-panel p,
.pilot-grid p,
.contact-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.features-section {
  background: var(--pale);
}

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

.module-groups {
  display: grid;
  gap: 42px;
}

.module-group > h3 {
  margin-bottom: 18px;
  color: var(--charcoal);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.feature-card {
  min-height: 242px;
  padding: 26px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 8px;
  background: var(--white);
}

.feature-card svg {
  margin-bottom: 24px;
  color: var(--orange);
}

.feature-card p {
  color: var(--muted);
  line-height: 1.62;
}

.dark-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.dark-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: url('/assets/signal-rings.png');
  background-size: 760px auto;
  background-repeat: no-repeat;
  background-position: right -120px center;
  pointer-events: none;
}

.security-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 54px;
  align-items: center;
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.security-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.security-list {
  display: grid;
  gap: 12px;
}

.security-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  line-height: 1.55;
}

.security-item svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--orange);
}

.security-item strong,
.agency-points strong {
  color: var(--white);
  font-weight: 850;
}

.security-note {
  margin: 8px 0 0;
  padding: 18px;
  border-left: 3px solid var(--orange);
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.agency-section {
  background: var(--white);
}

.agency-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 52px;
  align-items: center;
}

.agency-panel {
  padding: 34px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
}

.agency-logo-badge {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  margin-bottom: 32px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.agency-logo-badge img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

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

.agency-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.agency-points {
  display: grid;
  gap: 18px;
}

.agency-points div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--soft);
  color: #394455;
  font-size: 1.04rem;
  line-height: 1.58;
}

.agency-points svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--orange);
}

.agency-points strong {
  color: var(--ink);
}

.pilot-section {
  background: var(--pale);
}

.pilot-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.pilot-cards {
  display: grid;
  gap: 14px;
}

.pilot-cards div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 14px;
  row-gap: 5px;
  padding: 20px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 8px;
  background: var(--white);
}

.pilot-cards svg {
  grid-row: span 2;
  margin-top: 2px;
  color: var(--orange);
}

.pilot-cards strong {
  color: var(--ink);
}

.pilot-cards span {
  color: var(--muted);
  line-height: 1.55;
}

.pilot-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.pilot-cta p {
  flex: 1 1 320px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.contact-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1fr);
  align-items: start;
  gap: 42px;
  padding: 42px;
  border: 1px solid rgba(31, 41, 55, 0.09);
  border-radius: 8px;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 68%, rgba(255, 99, 0, 0.08) 100%);
}

.contact-copy {
  max-width: 610px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 760;
}

.contact-form label span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.contact-form em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(31, 41, 55, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 99, 0, 0.12);
}

.contact-form .button {
  justify-self: start;
  min-width: 178px;
  cursor: pointer;
}

.site-footer {
  padding: 42px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(360px, auto) minmax(280px, 1fr);
  gap: 48px;
  align-items: center;
}

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

.footer-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.footer-logo-icon-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-logo-copy {
  display: grid;
  gap: 5px;
}

.footer-logo-word {
  display: inline-flex;
  align-items: baseline;
  color: var(--white);
  font-size: 1.52rem;
  font-weight: 700;
  line-height: 0.96;
}

.footer-logo-word strong {
  color: var(--orange);
  font-weight: 760;
}

.footer-logo-strap {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 450;
  line-height: 1;
}

.footer-logo-strap strong {
  color: var(--orange);
  font-weight: 500;
}

.footer-grid p {
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  font-weight: 700;
  color: var(--white);
}

.footer-note {
  max-width: 330px;
  justify-self: end;
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  text-align: right;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.98rem;
  line-height: 1.55;
}

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

  .nav-links {
    position: absolute;
    inset: 72px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(31, 41, 55, 0.1);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 20px 50px rgba(31, 41, 55, 0.16);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    min-height: 44px;
    padding: 12px;
  }

  .nav-cta {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-grid,
  .two-column,
  .workflow-panel,
  .security-grid,
  .agency-layout,
  .pilot-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .footer-note {
    justify-self: start;
    padding-left: 0;
    border-left: 0;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .site-header {
    padding-inline: 14px;
  }

  .hero {
    padding: 54px 0 46px;
  }

  .hero-bg {
    background-position: 36% center;
  }

  h1 {
    font-size: clamp(2.55rem, 16vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 11vw, 2.7rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .product-panel {
    padding: 16px;
  }

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

  .schedule-list div {
    grid-template-columns: 48px 1fr;
  }

  .schedule-list em {
    grid-column: 2;
  }

  .logo-band {
    padding: 22px 0;
  }

  .section {
    padding: 66px 0;
  }

  .workflow-panel {
    padding: 24px;
  }

  .workflow-points {
    grid-template-columns: 1fr;
  }

  .workflow-points article {
    min-height: auto;
  }

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

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

  .agency-panel,
  .contact-card {
    padding: 24px;
  }

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

  .pilot-cards div {
    grid-template-columns: 1fr;
  }

  .pilot-cards svg {
    grid-row: auto;
  }
}
