:root {
  color-scheme: light;
  --ink: #102f2c;
  --muted: #4f625e;
  --soft: #ecf6f2;
  --paper: #f6faf8;
  --panel: #ffffff;
  --line: #dcebe7;
  --accent: #08766f;
  --accent-strong: #065b56;
  --deep: #0b302d;
  --deep-2: #123d39;
  --map-line: rgba(6, 91, 86, 0.12);
  --map-line-soft: rgba(6, 91, 86, 0.065);
  --white: #ffffff;
  --body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --heading-font: Georgia, "Times New Roman", serif;
  --shadow: 0 26px 72px rgba(16, 47, 44, 0.14);
  --shadow-soft: 0 1px 2px rgba(16, 47, 44, 0.04), 0 18px 44px rgba(16, 47, 44, 0.08);
  --shadow-card: 0 1px 1px rgba(16, 47, 44, 0.03), 0 18px 42px rgba(16, 47, 44, 0.075);
  --shadow-lift: 0 2px 6px rgba(16, 47, 44, 0.05), 0 24px 56px rgba(16, 47, 44, 0.12);
  --shadow-header: 0 14px 36px rgba(16, 47, 44, 0.08);
  --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.18);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

body.preview-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 8px clamp(18px, 4%, 54px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 62%),
    var(--deep);
  background-size: 68px 68px, auto, auto;
  box-shadow: 0 16px 42px rgba(5, 38, 35, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
  line-height: 1.05;
}

.brand-logo {
  width: auto;
  height: 64px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}

.brand-byline {
  display: inline-flex;
  padding-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: var(--radius);
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.site-nav .nav-demo {
  color: var(--deep);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.site-nav .nav-demo:hover,
.site-nav .nav-demo:focus-visible {
  color: var(--deep);
  background: #e7f6ef;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  color: var(--white);
  box-shadow: var(--shadow-lift);
  outline: 3px solid rgba(8, 118, 111, 0.16);
  outline-offset: 2px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(24px, 4%, 54px);
  align-items: center;
  max-width: 1320px;
  min-height: calc(82vh - 72px);
  margin: 0 auto;
  padding: clamp(44px, 6%, 78px) clamp(18px, 4%, 54px) 54px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -34px;
  left: 0;
  z-index: -2;
  width: 100%;
  background:
    linear-gradient(30deg, transparent 0 38%, var(--map-line-soft) 38% 38.25%, transparent 38.25% 100%),
    linear-gradient(152deg, transparent 0 58%, var(--map-line-soft) 58% 58.28%, transparent 58.28% 100%),
    linear-gradient(90deg, transparent 0 49%, var(--map-line) 49% 49.18%, transparent 49.18% 100%),
    linear-gradient(0deg, transparent 0 49%, var(--map-line-soft) 49% 49.18%, transparent 49.18% 100%),
    var(--soft);
  background-size: 440px 280px, 380px 260px, 132px 132px, 132px 132px, auto;
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 26px;
  z-index: -1;
  width: min(520px, 44vw);
  height: 150px;
  border-bottom: 2px dashed rgba(8, 118, 111, 0.34);
  border-radius: 0 0 54% 54%;
  transform: rotate(-3deg);
}

.hero-copy {
  min-width: 0;
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 750;
}

.hero h1,
.section h2,
.closing-cta h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(38px, 3.25rem, 52px);
}

.section h2,
.closing-cta h2 {
  color: var(--accent-strong);
}

.section h2,
.closing-cta h2 {
  max-width: 820px;
  font-size: clamp(30px, 3rem, 48px);
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hero-proof span {
  position: relative;
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 14px 14px 14px 42px;
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  line-height: 1.35;
}

.hero-proof span::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 14px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.hero-proof span::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 19px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-proof strong {
  color: var(--deep);
  font-size: 14px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 750;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
  outline: none;
}

.btn.primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 14px 32px rgba(8, 118, 111, 0.22);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--accent-strong);
  box-shadow: 0 18px 42px rgba(6, 91, 86, 0.25);
}

.btn.secondary {
  color: var(--deep);
  background: var(--panel);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  color: var(--accent-strong);
}

.trust-note {
  max-width: 560px;
  margin: 16px 0 0;
  padding: 14px 16px;
  color: var(--deep-2);
  border-left: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(16, 47, 44, 0.07);
  font-size: 15px;
  line-height: 1.7;
}

.section {
  padding: clamp(58px, 8%, 104px) clamp(18px, 4%, 54px);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 30px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.problem-section,
.screenshot-section,
.faq-section {
  background: var(--panel);
}

.modules-section,
.privacy-section,
.rollout-section {
  background: var(--paper);
}

.problem-grid,
.module-grid,
.privacy-grid,
.faq-grid {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  gap: 14px;
}

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

.privacy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
}

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

.module-grid article,
.split-panels article,
.privacy-grid article,
.faq-grid article {
  position: relative;
  min-width: 0;
  padding: 22px;
  border: 0;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-card);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.module-grid article {
  display: flex;
  flex-direction: column;
}

.module-grid article p {
  flex: 1 1 auto;
}

.module-grid article:hover,
.split-panels article:hover,
.privacy-grid article:hover,
.faq-grid article:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.problem-grid {
  counter-reset: problem;
  gap: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(8, 118, 111, 0.16);
  border-bottom: 1px solid rgba(8, 118, 111, 0.16);
}

.problem-grid article {
  position: relative;
  counter-increment: problem;
  min-width: 0;
  padding: 18px 22px;
  border-right: 1px solid rgba(8, 118, 111, 0.14);
}

.problem-grid article:last-child {
  border-right: 0;
}

.problem-grid article::before {
  content: "0" counter(problem);
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.module-grid article::before,
.split-panels article::before,
.privacy-grid article::before,
.faq-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--accent), rgba(8, 118, 111, 0.18));
}

.problem-grid article h3,
.module-grid article h3,
.split-panels article h3,
.privacy-grid article h3,
.faq-grid article h3 {
  margin: 0 0 10px;
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--deep);
  font-size: 19px;
  line-height: 1.25;
}

.problem-grid article p,
.module-grid article p,
.section-heading p,
.split-copy p,
.split-panels article p,
.gis-copy p,
.gis-copy li,
.privacy-grid article p,
.faq-grid article p,
.closing-cta p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.section-heading p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 16px;
  line-height: 1.72;
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.split-section::before {
  content: "";
  position: absolute;
  inset: 38px 54% 38px -40px;
  z-index: -1;
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, transparent 0 45%, var(--map-line-soft) 45% 45.35%, transparent 45.35% 100%),
    linear-gradient(0deg, transparent 0 49%, var(--map-line-soft) 49% 49.35%, transparent 49.35% 100%);
  background-size: 190px 150px, 76px 76px;
}

.split-copy {
  padding-top: 6px;
}

.split-copy h2 {
  margin-bottom: 18px;
}

.split-copy p:not(.eyebrow) {
  max-width: 560px;
  line-height: 1.72;
}

.route-strip {
  display: grid;
  grid-template-columns: max-content 72px max-content 72px max-content;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 600px;
  margin: 24px 0 0;
  padding: 18px 22px;
  list-style: none;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.route-strip li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0;
  text-align: center;
}

.route-strip li:nth-child(1) {
  grid-column: 1;
}

.route-strip li:nth-child(2) {
  grid-column: 3;
}

.route-strip li:nth-child(3) {
  grid-column: 5;
}

.route-strip li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  z-index: 2;
  width: 58px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 78 28' fill='none'%3E%3Cpath d='M2 15C14 5 24 24 36 15S51 8 59 14L68 14' stroke='%2308766F' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' stroke-dasharray='5 5'/%3E%3Cpath d='M64 7L76 14L64 21Z' fill='%2308766F'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: translateY(-50%);
}

.route-strip strong {
  font-size: 14px;
  line-height: 1.3;
}

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

.compliance-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(32deg, transparent 0 42%, rgba(255, 255, 255, 0.06) 42% 42.2%, transparent 42.2% 100%),
    linear-gradient(0deg, transparent 0 49%, rgba(255, 255, 255, 0.045) 49% 49.2%, transparent 49.2% 100%),
    var(--deep);
  background-size: 340px 220px, 92px 92px, auto;
}

.compliance-section .section-heading h2,
.compliance-section .section-heading .eyebrow {
  color: var(--white);
}

.compliance-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1160px;
  margin: 0 auto;
}

.compliance-grid article {
  min-width: 0;
  padding: 22px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-dark);
}

.compliance-grid span,
.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.compliance-grid h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 19px;
}

.compliance-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}

.legal-note {
  max-width: 1160px;
  margin: 18px auto 0;
  padding: 16px 18px;
  border: 0;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-dark);
  font-size: 15px;
  line-height: 1.65;
}

.legal-note a,
.content-callout a {
  color: inherit;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.module-grid h3 a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.module-grid h3 a:hover,
.module-grid h3 a:focus-visible {
  color: var(--accent);
  text-decoration-color: currentColor;
  outline: none;
}

.module-grid .module-link {
  align-self: flex-start;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(8, 118, 111, 0.18);
  border-radius: 10px;
  color: var(--accent-strong);
  background: rgba(8, 118, 111, 0.06);
  font-size: 14px;
  font-weight: 800;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.module-grid .module-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.module-grid .module-link:hover,
.module-grid .module-link:focus-visible {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
  outline: none;
  transform: translateY(-1px);
}

.module-grid .module-link:hover::after,
.module-grid .module-link:focus-visible::after {
  transform: translateX(3px);
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}

.screenshot-card {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

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

.hero-preview {
  position: relative;
  min-width: 0;
  align-self: center;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.hero-preview .image-button {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-preview figcaption {
  margin-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-soft);
}

.map-callout,
.gis-badge {
  position: absolute;
  z-index: 2;
  box-shadow: var(--shadow-lift);
}

.map-callout {
  left: 28px;
  bottom: 74px;
  display: grid;
  gap: 3px;
  max-width: 245px;
  padding: 14px 16px 14px 48px;
  border-radius: var(--radius);
  color: var(--deep);
  background: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  line-height: 1.28;
}

.map-callout small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.map-pin {
  position: absolute;
  top: 18px;
  left: 17px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.gis-badge {
  right: -24px;
  bottom: 112px;
  display: grid;
  place-items: center;
  gap: 4px;
  width: 132px;
  height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    var(--deep);
  background-size: 18px 18px, 18px 18px, auto;
  text-align: center;
}

.gis-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  font-weight: 850;
}

.gis-badge strong {
  font-size: 13px;
  line-height: 1.2;
}

.image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.image-button img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.screenshot-card figcaption {
  padding: 14px 16px 16px;
  color: var(--deep-2);
  background: rgba(236, 246, 242, 0.86);
  font-size: 14px;
  line-height: 1.55;
}

.screenshot-card.hero-preview figcaption {
  margin-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-soft);
}

.gis-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(26px, 5%, 72px);
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(122deg, transparent 0 54%, rgba(255, 255, 255, 0.055) 54% 54.2%, transparent 54.2% 100%),
    linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.045) 49% 49.2%, transparent 49.2% 100%),
    var(--deep);
  background-size: 420px 280px, 90px 90px, auto;
}

.gis-section::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 34px;
  height: 76px;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.32);
  border-radius: 0 0 50% 50%;
  pointer-events: none;
}

.gis-section h2,
.gis-section .eyebrow {
  color: var(--white);
}

.gis-copy {
  position: relative;
  padding: 24px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow-dark);
}

.gis-copy::before {
  content: "navigacija";
  position: absolute;
  top: -13px;
  right: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--white);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.gis-copy p,
.gis-copy li {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.72;
}

.gis-copy ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1160px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 39px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(8, 118, 111, 0.18));
}

.timeline article,
.pilot-box {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 22px;
  border: 0;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-card);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.timeline article:hover,
.pilot-box:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.timeline h3,
.pilot-box h3 {
  margin: 0 0 10px;
  color: var(--deep);
  font-size: 19px;
}

.timeline p,
.pilot-box p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.pilot-box {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 22px auto 0;
  text-align: center;
}

.pilot-box .btn {
  justify-self: center;
}

.closing-cta {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.closing-cta .eyebrow,
.closing-cta h2,
.closing-cta p,
.closing-cta .hero-actions {
  margin-left: auto;
  margin-right: auto;
}

.closing-cta p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 18px;
  line-height: 1.75;
}

.closing-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: start;
  gap: 32px;
  padding: 42px clamp(18px, 4%, 54px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--deep);
}

.footer-brand {
  display: grid;
  gap: 16px;
  max-width: 680px;
}

.site-footer img {
  width: auto;
  height: 82px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

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

.footer-contact {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.65;
}

.footer-contact a {
  display: inline;
  min-height: 0;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 3px;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  background: transparent;
  box-shadow: none;
  text-decoration-color: currentColor;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--white);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  outline: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 660px;
  justify-self: end;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
}

.form-heading {
  display: grid;
  gap: 8px;
}

.form-heading .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.form-heading h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 31px;
  line-height: 1.12;
}

.form-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

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

.contact-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.contact-field.full {
  grid-column: 1 / -1;
}

.contact-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-field span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 750;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  font: inherit;
  font-size: 15px;
}

.contact-field textarea {
  min-height: 126px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: 3px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 2px var(--accent);
}

.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form .btn {
  border: 0;
  cursor: pointer;
  font-family: var(--body-font);
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.74;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.form-status.is-success {
  color: #c5fff2;
}

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

.form-privacy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 13px;
  line-height: 1.55 !important;
}

.form-privacy a {
  display: inline;
  min-height: 0;
  padding: 0;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-page {
  min-height: 70vh;
  padding-bottom: clamp(60px, 8vw, 104px);
}

.content-hero {
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5%, 72px) clamp(34px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(8, 118, 111, 0.24), transparent 58%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--deep);
  background-size: auto, 72px 72px, auto;
}

.content-hero-inner,
.content-layout {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-hero .eyebrow {
  color: #a7e3dd;
}

.content-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.content-hero .lead {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 3vw, 34px) 0;
}

.content-body {
  min-width: 0;
}

.content-body > :first-child {
  margin-top: 0;
}

.content-body h2 {
  margin: 46px 0 14px;
  font-family: var(--heading-font);
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.content-body h3 {
  margin: 30px 0 10px;
  font-size: 21px;
}

.content-body p,
.content-body li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.content-body a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-body ul,
.content-body ol {
  display: grid;
  gap: 9px;
  padding-left: 24px;
}

.content-callout {
  margin: 34px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  color: var(--deep);
  background: var(--soft);
  box-shadow: var(--shadow-soft);
}

.content-callout p {
  margin: 0;
  color: inherit;
}

.content-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-card);
}

.content-aside h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 24px;
}

.content-aside p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.content-aside nav {
  display: grid;
  gap: 8px;
}

.content-aside nav a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--accent-strong);
  font-weight: 700;
}

.content-aside .btn {
  width: 100%;
  text-align: center;
}

.compact-footer {
  grid-template-columns: minmax(0, 1fr) auto;
}

.compact-footer .footer-brand {
  max-width: 760px;
}

.compact-footer .footer-links {
  align-content: start;
  justify-content: flex-end;
  max-width: 420px;
}

.contact-result {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--paper);
}

.preview-dialog[hidden] {
  display: none;
}

.preview-dialog {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(11, 48, 45, 0.82);
}

.preview-dialog img {
  max-width: min(1180px, 94%);
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.preview-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(11, 48, 45, 0.9);
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  box-shadow: var(--shadow-dark);
  cursor: pointer;
}

.preview-close:hover,
.preview-close:focus-visible {
  background: var(--accent);
  outline: none;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 66px;
  }

  .brand {
    font-size: 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    color: var(--white);
    background: var(--deep);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    justify-content: center;
  }

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

  .hero,
  .split-section,
  .gis-section {
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .problem-grid,
  .module-grid,
  .privacy-grid,
  .faq-grid,
  .compliance-grid,
  .timeline,
  .screenshots {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    gap: 12px;
    padding: 0;
    border: 0;
  }

  .problem-grid article {
    padding: 18px;
    border-right: 0;
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow-card);
  }

  .split-section {
    grid-template-areas: none;
    max-width: none;
    gap: 28px;
  }

  .split-copy,
  .route-strip,
  .split-panels {
    grid-area: auto;
  }

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

  .content-layout {
    grid-template-columns: 1fr;
  }

  .content-aside {
    position: static;
  }

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

  .contact-form {
    max-width: none;
    justify-self: stretch;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 8px 14px;
  }

  .brand {
    gap: 6px;
  }

  .brand-logo {
    height: 46px;
  }

  .brand-byline {
    display: none;
  }

  .hero,
  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    gap: 22px;
    padding-top: 32px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.14;
  }

  .section h2,
  .closing-cta h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 18px;
    line-height: 1.62;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
    margin-top: 20px;
  }

  .btn {
    width: 100%;
  }

  .map-callout {
    left: 14px;
    right: 14px;
    bottom: 84px;
    max-width: none;
  }

  .gis-badge {
    display: none;
  }

  .route-strip {
    grid-template-columns: 1fr;
    gap: 62px;
    max-width: 286px;
    margin-left: auto;
    margin-right: auto;
    padding: 22px 22px 24px;
  }

  .route-strip li,
  .route-strip li:nth-child(1),
  .route-strip li:nth-child(2),
  .route-strip li:nth-child(3) {
    grid-column: auto;
  }

  .route-strip li {
    padding: 0;
    text-align: center;
  }

  .route-strip li:not(:last-child)::after {
    top: calc(100% + 12px);
    right: auto;
    bottom: auto;
    left: 50%;
    width: 26px;
    height: 38px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 78' fill='none'%3E%3Cpath d='M14 2C4 14 24 25 14 36S7 52 14 59L14 68' stroke='%2308766F' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' stroke-dasharray='5 5'/%3E%3Cpath d='M7 63L14 76L21 63Z' fill='%2308766F'/%3E%3C/svg%3E") center / contain no-repeat;
    clip-path: none;
    transform: translateX(-50%);
  }

  .route-strip strong {
    font-size: 16px;
    line-height: 1.35;
  }

  .timeline::before {
    top: 30px;
    bottom: 30px;
    left: 39px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .problem-grid article,
  .module-grid article,
  .split-panels article,
  .privacy-grid article,
  .faq-grid article,
  .timeline article,
  .pilot-box,
  .gis-copy {
    padding: 18px;
  }

  .problem-grid article p,
  .module-grid article p,
  .section-heading p:not(.eyebrow),
  .split-copy p:not(.eyebrow),
  .split-panels article p,
  .gis-copy p,
  .gis-copy li,
  .privacy-grid article p,
  .faq-grid article p,
  .closing-cta p:not(.eyebrow),
  .site-footer p,
  .legal-note,
  .screenshot-card figcaption {
    font-size: 17px;
    line-height: 1.68;
  }

  .site-footer {
    align-items: flex-start;
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .site-footer img {
    height: 70px;
  }

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

  .form-heading h2 {
    font-size: 30px;
  }

  .form-heading p:not(.eyebrow),
  .form-status {
    font-size: 16px;
  }

  .contact-field span {
    font-size: 14px;
  }

  .contact-field input,
  .contact-field textarea,
  .contact-form .btn {
    font-size: 16px;
  }

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

  .hero-proof span {
    min-height: 88px;
    padding: 14px 8px;
    text-align: center;
    font-size: 13px;
    line-height: 1.34;
  }

  .hero-proof span::before,
  .hero-proof span::after {
    display: none;
  }

  .hero-proof strong {
    font-size: 14px;
    line-height: 1.24;
  }

  .trust-note {
    margin-top: 14px;
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.62;
  }

  .site-footer nav {
    width: 100%;
  }

  .site-footer a {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
  }

  .preview-dialog {
    padding: 14px;
  }
}
