@charset "UTF-8";
/* ============================================================
   Skysense redesign — shared design system
   Source of truth: Skysense Brand Kit v1 (June 2026)
   Colors:  Skysense Blue #2E87FA · Deep Navy #053568 · Sky Mist #EAF3FC
            Harvest Green #3D9B3D (ROI/results only) · Charcoal #323232
   Type:    Roboto (300/400/500/700/900) via Google Fonts
   ============================================================ */
:root {
  --blue:#2E87FA;
  --navy:#053568;
  --charcoal:#323232;
  --white:#FFFFFF;
  --green:#3D9B3D;
  --mist:#EAF3FC;
  --grey-mid:#6B6B6B;
  --grey-light:#F2F2F2;
  --hairline: rgba(5,53,104,0.12);
  --hairline-strong: rgba(5,53,104,0.22);
  --shadow: 0 12px 32px rgba(5,53,104,0.10);
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 300;
  font-size: 12.5px;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px 0;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--blue);
  display: inline-block;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  letter-spacing: -0.01em;
}

h1 {
  font-weight: 900;
  color: var(--navy);
}

h2 {
  font-weight: 900;
  color: var(--navy);
}

h3 {
  font-weight: 700;
  color: var(--navy);
}

p {
  line-height: 1.65;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: #1c6fe0;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(46, 135, 250, 0.35);
}

.btn-ghost {
  background: transparent;
  border-color: var(--hairline-strong);
  color: var(--navy);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--mist);
}

.btn-on-navy {
  background: var(--white);
  color: var(--navy);
}

.btn-on-navy:hover {
  background: var(--mist);
  transform: translateY(-1px);
}

.btn-ghost-on-navy {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-ghost-on-navy:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

header.site-header.scrolled {
  border-color: var(--hairline);
  box-shadow: 0 6px 20px rgba(5, 53, 104, 0.06);
}

/* Longhand on purpose: the shorthand would clobber .wrap's 28px horizontal padding. */
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

/* The logo PNG carries ~13px of transparent whitespace at 64px height —
   pull it back so the visible mark aligns with the wrap's 28px padding. */
.logo-mark {
  height: 64px;
  width: auto;
  margin-left: -13px;
}

.mobile-nav-top .logo-mark {
  margin-left: -6px;
}

nav.primary-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav.primary-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}

nav.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

nav.primary-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-actions .btn {
  padding: 11px 22px;
  font-size: 14px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.2s;
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.mobile-nav a {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}

.mobile-nav a.btn {
  border-bottom: none;
  padding: 15px 30px;
}

.mobile-nav a.btn-primary {
  color: var(--white);
}

.mobile-nav .btn {
  margin-top: 24px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1100px 500px at 78% -10%, rgba(46, 135, 250, 0.1), transparent 60%), linear-gradient(180deg, #ffffff 0%, var(--mist) 100%);
  padding: 76px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.06;
}

.hero .tagline {
  display: inline-block;
  font-weight: 700;
  color: var(--blue);
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.hero p.lede {
  font-size: 18px;
  color: var(--charcoal);
  margin: 22px 0 32px;
  max-width: 52ch;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero visual: portrait video card (drone dock landing footage) */
.hero-visual {
  position: relative;
  aspect-ratio: 4/3.1;
  border-radius: 6px;
  background: var(--navy);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual--video {
  background: none;
  box-shadow: none;
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3/4;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Ambient cover mode: oversize a 16:9 YouTube embed so it fills the portrait
   frame edge-to-edge (center crop, no letterbox bars). pointer-events off so
   the player chrome never appears — the clip is decorative. */
.video-frame--cover iframe {
  inset: auto;
  top: 50%;
  left: 50%;
  height: 102%;
  width: auto;
  aspect-ratio: 16/9; /* exact 16:9 player, larger than the frame */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-visual-caption--static {
  position: static;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b3a4a;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-visual-caption--static .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
  margin-right: 6px;
  box-shadow: 0 0 0 4px rgba(46, 135, 250, 0.15);
}

/* ---------- Section shells ---------- */
section {
  padding: 88px 0;
}

.section-mist {
  background: var(--mist);
}

.section-head {
  max-width: 640px;
  margin: 0 0 46px;
}

.section-head h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
}

.section-head p {
  margin-top: 16px;
  font-size: 16.5px;
  color: #42505d;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

/* ---------- Problem section ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-card .icon {
  width: 34px;
  height: 34px;
}

.problem-card h3 {
  font-size: 15.5px;
}

.problem-card p {
  font-size: 14.5px;
  color: #42505d;
}

.stat-strip {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
}

.stat-strip div {
  background: var(--white);
  padding: 28px 24px;
}

.stat-strip b {
  display: block;
  font-size: 30px;
  color: var(--navy);
  font-weight: 900;
}

.stat-strip span {
  font-size: 13.5px;
  color: #5c6b7a;
}

.stat-source {
  margin-top: 14px;
  font-size: 12px;
  color: #8a97a3;
}

.stat-source a {
  color: #5c6b7a;
  text-decoration: underline;
}

.stat-source a:hover {
  color: var(--navy);
}

.damage-compare {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.compare-item {
  position: relative;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.compare-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  margin: 0;
  padding: 6px 13px;
  border-radius: 3px;
  background: rgba(5, 53, 104, 0.88);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ---------- How it works ---------- */
.steps {
  position: relative;
}

.steps-line {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  height: 2px;
  background-image: linear-gradient(90deg, var(--hairline-strong) 0 10px, transparent 10px 20px);
  background-size: 20px 2px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-node {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  position: relative;
  z-index: 2;
}

.step h3 {
  font-size: 17px;
}

.step p {
  font-size: 14.5px;
  color: #42505d;
}

/* ---------- Service-area map ---------- */
.how-it-works-map {
  margin: 56px auto 0;
  max-width: 460px;
  text-align: center;
}

.how-it-works-map svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.proof-map-caption {
  margin-top: 6px;
  text-align: center;
  font-size: 12.5px;
  color: #5c6b7a;
}

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  padding: 28px 24px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--hairline);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.benefit-card .icon {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: #42505d;
}

/* ---------- ROI calculator panel ---------- */
.roi-panel {
  background: var(--navy);
  border-radius: 10px;
  padding: 52px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.roi-panel .section-head {
  margin: 0;
  max-width: none;
}

.roi-panel .eyebrow {
  color: #9CC7F5;
}

.roi-panel .eyebrow::before {
  background: #9CC7F5;
}

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

.roi-panel > div > p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 14px;
  font-size: 15px;
}

.roi-form label {
  display: block;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.roi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.roi-field input, .roi-field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 15px;
}

.roi-field select option {
  color: var(--charcoal);
}

.roi-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.roi-field input:focus, .roi-field select:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.roi-result {
  margin-top: 6px;
  padding: 22px 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.roi-result .num {
  font-size: 34px;
  font-weight: 900;
  color: #8FE39B;
}

.roi-result .lbl {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
}

.roi-fine {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.roi-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
}

/* ---------- Testimonial ---------- */
.testimonial-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--hairline);
  position: relative;
}

.testimonial-card .mark {
  font-size: 64px;
  color: var(--blue);
  opacity: 0.25;
  line-height: 1;
  font-weight: 900;
}

.testimonial-card blockquote {
  margin: 8px 0 26px;
  font-size: 21px;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 500;
  font-style: italic;
}

.testimonial-card .attribution {
  font-size: 14px;
  color: #5c6b7a;
}

.testimonial-card .attribution b {
  color: var(--charcoal);
  font-weight: 700;
}

/* ---------- Secondary modules ---------- */
.modules-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.module-card {
  display: flex;
  gap: 20px;
  padding: 26px;
  border-radius: 6px;
  background: var(--mist);
  border: 1px solid var(--hairline);
}

.module-card .icon-wrap {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-card .icon-wrap svg {
  width: 22px;
  height: 22px;
}

.module-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.module-card p {
  font-size: 14px;
  color: #42505d;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(120deg, var(--navy) 0%, #0a4a8a 100%);
  border-radius: 10px;
  padding: 64px 56px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(24px, 3.4vw, 36px);
  max-width: 26ch;
  margin: 0 auto 28px;
}

.final-cta .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  height: 64px;
  margin-bottom: 16px;
  margin-left: -13px;
}

.footer-grid p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 34ch;
}

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact li {
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-legal a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  opacity: 0.6;
  transition: opacity 0.15s;
}

.footer-social a:hover {
  opacity: 1;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Company page
   ============================================================ */
.mission-hero {
  background: radial-gradient(1100px 500px at 78% -10%, rgba(46, 135, 250, 0.1), transparent 60%), linear-gradient(180deg, #ffffff 0%, var(--mist) 100%);
  padding: 76px 0 84px;
}

.mission-hero .wrap {
  max-width: 760px;
  text-align: center;
}

.mission-hero .tagline {
  display: inline-block;
  font-weight: 700;
  color: var(--blue);
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.mission-hero h1 {
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.1;
}

.mission-hero p.lede {
  font-size: 18px;
  color: #42505d;
  margin: 22px auto 0;
  max-width: 60ch;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.founder-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.founder-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.founder-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 2px solid var(--mist);
}

.founder-card h3 {
  font-size: 16.5px;
}

.founder-card .role {
  display: block;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  font-weight: 700;
  margin: 4px 0 14px;
}

.founder-card p {
  font-size: 13.5px;
  color: #42505d;
  text-align: left;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
}

.team-card {
  text-align: center;
  width: 130px;
}

.team-card img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 2px solid var(--hairline);
}

.team-card h3 {
  font-size: 14.5px;
}

.team-card .role {
  display: block;
  font-size: 12px;
  color: #5c6b7a;
  margin-top: 3px;
}

#partners {
  padding: 72px 0 0;
}

.partner-strip-title {
  text-align: center;
  font-size: 14px;
  color: #5c6b7a;
  margin: 0 0 32px;
}

.partner-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 48px;
}

.partner-strip img {
  height: 34px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.partner-strip img:hover {
  filter: none;
  opacity: 1;
}

.contact-info-panel {
  background: var(--navy);
  border-radius: 10px;
  padding: 48px 52px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.contact-info-panel > div:first-child p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 14px;
  font-size: 15px;
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-list li {
  font-size: 15.5px;
}

.contact-info-list span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9CC7F5;
  font-weight: 300;
  margin-bottom: 4px;
}

.contact-info-list a {
  font-weight: 500;
}

.contact-info-list a:hover {
  text-decoration: underline;
}

/* ============================================================
   Subpage hero (news, careers, contact, referral, legal, …)
   ============================================================ */
.page-hero {
  background: radial-gradient(1100px 500px at 78% -10%, rgba(46, 135, 250, 0.1), transparent 60%), linear-gradient(180deg, #ffffff 0%, var(--mist) 100%);
  padding: 64px 0 64px;
}

.page-hero .wrap {
  max-width: 760px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

.page-hero p.lede {
  font-size: 17.5px;
  color: #42505d;
  margin: 20px auto 0;
  max-width: 60ch;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero .eyebrow::before {
  display: none;
}

.page-hero .hero-cta-row {
  justify-content: center;
  margin-top: 30px;
}

/* ============================================================
   News / blog
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 28px 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.news-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.news-card .news-thumb {
  display: block;
  margin: -28px -24px 6px;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--mist);
}

.news-card .news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card .news-thumb.contain img {
  object-fit: contain;
}

.news-card .news-meta {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5c6b7a;
  font-weight: 300;
}

.news-card h3 {
  font-size: 18px;
  line-height: 1.35;
}

.news-card p {
  font-size: 14px;
  color: #42505d;
}

.news-card .news-more {
  margin-top: auto;
  padding-top: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
}

.news-empty {
  border: 1px dashed var(--hairline-strong);
  border-radius: 6px;
  padding: 48px;
  text-align: center;
  color: #5c6b7a;
}

.post-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 28px 88px;
}

.post-article h1 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
}

.post-article .post-meta {
  margin: 16px 0 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5c6b7a;
  font-weight: 300;
}

.post-article .post-meta .tag {
  color: var(--blue);
  font-weight: 500;
}

.post-hero {
  margin-top: 36px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--mist);
}

.post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-hero.contain img {
  object-fit: contain;
}

.post-body {
  margin-top: 36px;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 44px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}

/* ---------- Markdown / long-form content ---------- */
.prose {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
}

.prose h1, .prose h2, .prose h3, .prose h4 {
  color: var(--navy);
  margin: 1.6em 0 0.6em;
  line-height: 1.25;
}

.prose h1 {
  font-size: 32px;
  font-weight: 700;
}

.prose h2 {
  font-size: 24px;
  font-weight: 700;
}

.prose h3 {
  font-size: 19px;
  font-weight: 500;
}

.prose h4 {
  font-size: 16px;
  font-weight: 500;
}

.prose h1:first-child, .prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin: 0 0 1.1em;
}

.prose a {
  color: var(--blue);
  font-weight: 500;
}

.prose a:hover {
  text-decoration: underline;
}

.prose ul, .prose ol {
  margin: 0 0 1.1em;
  padding-left: 1.4em;
}

.prose li {
  margin-bottom: 0.45em;
}

.prose blockquote {
  margin: 1.4em 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--blue);
  color: #42505d;
  font-style: italic;
}

.prose img {
  border-radius: 6px;
  margin: 1.4em 0;
}

.prose hr {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 2em 0;
}

.prose table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.4em 0;
  font-size: 14.5px;
}

.prose th, .prose td {
  border: 1px solid var(--hairline);
  padding: 9px 12px;
  text-align: left;
}

.prose th {
  background: var(--mist);
  color: var(--navy);
  font-weight: 500;
}

.prose code {
  background: var(--grey-light);
  border-radius: 3px;
  padding: 2px 5px;
  font-size: 0.9em;
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 0 88px;
}

/* ============================================================
   Careers
   ============================================================ */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 24px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.job-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--hairline-strong);
}

.job-card h3 {
  font-size: 17px;
}

.job-card .job-location {
  display: block;
  font-size: 13.5px;
  color: #5c6b7a;
  margin-top: 4px;
}

.job-card .job-arrow {
  color: var(--blue);
  font-weight: 700;
  white-space: nowrap;
}

.career-header {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 28px 0;
}

.career-header h1 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
}

.career-header .job-location {
  display: block;
  font-size: 15px;
  color: #5c6b7a;
  margin-top: 10px;
}

.career-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.career-tags span {
  font-size: 12.5px;
  background: var(--mist);
  border: 1px solid var(--hairline);
  color: var(--navy);
  border-radius: 3px;
  padding: 5px 10px;
  font-weight: 500;
}

.career-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 36px 28px 0;
}

/* ---------- Solution / case study media ---------- */
.solution-media {
  max-width: 820px;
  margin: 32px auto 0;
  padding: 0 28px;
}

.solution-media .video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.solution-media .video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.solution-media > img {
  border-radius: 8px;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.career-apply {
  max-width: 820px;
  margin: 56px auto 88px;
  padding: 44px 28px;
  border-radius: 10px;
  background: var(--mist);
  border: 1px solid var(--hairline);
  text-align: center;
}

.career-apply h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

/* ============================================================
   Forms on light backgrounds (contact, referral)
   ============================================================ */
.form-panel {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 44px 40px;
  box-shadow: var(--shadow);
}

.form-panel fieldset {
  border: none;
  margin: 0 0 26px;
  padding: 0;
}

.form-panel legend {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 14px;
  padding: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid .full, .form-panel textarea {
  grid-column: 1/-1;
}

.form-panel input, .form-panel select, .form-panel textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 4px;
  border: 1px solid var(--hairline-strong);
  background: var(--white);
  color: var(--charcoal);
  font-family: "Roboto", sans-serif;
  font-size: 15px;
}

.form-panel input::placeholder, .form-panel textarea::placeholder {
  color: #8a97a3;
}

.form-panel input:focus, .form-panel select:focus, .form-panel textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.form-panel textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

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

.form-fine {
  font-size: 12px;
  color: #5c6b7a;
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.faq-list h3 {
  font-size: 16.5px;
  margin-bottom: 6px;
}

.faq-list p {
  font-size: 14.5px;
  color: #42505d;
}

.fine-print {
  max-width: 760px;
  margin: 40px auto 0;
  font-size: 11.5px;
  color: #8a97a3;
  line-height: 1.6;
}

.fine-print b {
  display: block;
  text-align: center;
  color: #5c6b7a;
  font-size: 12.5px;
  margin-bottom: 8px;
}

/* ---------- Reward cards (referral) ---------- */
.reward-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.reward-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 32px 28px;
}

.reward-card .eyebrow {
  margin-bottom: 10px;
}

.reward-card .reward-amount {
  font-size: 34px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}

.reward-card p {
  font-size: 14.5px;
  color: #42505d;
}

/* ---------- Thank you ---------- */
.thanks-panel {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 96px 28px 120px;
}

.thanks-panel .thanks-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thanks-panel h1 {
  font-size: clamp(30px, 4vw, 42px);
}

.thanks-panel p {
  margin-top: 16px;
  font-size: 16.5px;
  color: #42505d;
}

.thanks-panel .btn {
  margin-top: 30px;
}

/* ============================================================
   Motion & responsive
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .damage-compare {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
  .steps-line {
    display: none;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .roi-panel {
    grid-template-columns: 1fr;
    padding: 36px;
  }
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
  .founders-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-info-panel {
    grid-template-columns: 1fr;
    padding: 36px;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* The full nav row (logo + links + both buttons) needs ~820px — switch to
   the hamburger before it can crowd the right edge. */
@media (max-width: 920px) {
  nav.primary-nav, .header-actions .btn-ghost {
    display: none;
  }
  .hamburger {
    display: block;
  }
}
@media (max-width: 720px) {
  .stat-strip {
    grid-template-columns: 1fr;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .damage-compare {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .roi-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 64px 0;
  }
  .final-cta {
    padding: 48px 26px;
  }
  .founders-grid {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .reward-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-panel {
    padding: 32px 22px;
  }
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*# sourceMappingURL=main.css.map */