:root {
  --bg: #f3f7fc;
  --bg-2: #eef4fb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-soft: #f8fbff;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(37, 99, 235, 0.14);
  --text: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-soft: rgba(37, 99, 235, 0.1);
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 34px 90px rgba(15, 23, 42, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.07), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7fc 42%, #eef4fb 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

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

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

h1 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.9rem, 6.2vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 10.5ch;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.hero-backdrop {
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(1200px, 120vw);
  height: 760px;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(circle at 65% 30%, rgba(37, 99, 235, 0.16), transparent 24%),
    radial-gradient(circle at 52% 20%, rgba(14, 165, 233, 0.1), transparent 18%),
    radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.74), transparent 46%);
  filter: blur(10px);
  z-index: 0;
}

.site-header,
.section,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-text strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.brand-text span {
  color: var(--muted-2);
  font-size: 0.84rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.nav-link {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.04);
}

.section {
  padding: 5.1rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: 3rem;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-text,
.section-intro {
  max-width: 44rem;
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--muted);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #0f62fe);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
}

.button-small {
  min-height: 2.8rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.micro-proof span {
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--muted-2);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.8rem;
  max-width: 760px;
}

.proof-item {
  padding: 1rem 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.proof-value {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.proof-label {
  display: block;
  color: var(--muted-2);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 252, 255, 0.9));
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.window-topbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 1rem 1.15rem 0.8rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.window-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
}

.app-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.toolbar-pill {
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.toolbar-pill.active {
  background: rgba(37, 99, 235, 0.12);
  color: var(--accent-dark);
}

.app-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 1rem;
  padding: 1rem;
}

.map-panel {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(119, 198, 255, 0.18), rgba(174, 228, 177, 0.08)),
    linear-gradient(135deg, #e9f5ea, #dff2ea 45%, #eef6dc);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.42;
}

.map-water {
  position: absolute;
  left: -8%;
  top: 58%;
  width: 74%;
  height: 24%;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.28), rgba(37, 99, 235, 0.14));
  border-radius: 120px;
  transform: rotate(-8deg);
}

.map-road {
  position: absolute;
  background: rgba(71, 85, 105, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.road-one {
  left: -8%;
  top: 24%;
  width: 62%;
  height: 16px;
  transform: rotate(14deg);
}

.road-two {
  right: -4%;
  top: 18%;
  width: 44%;
  height: 14px;
  transform: rotate(-34deg);
}

.road-three {
  left: 18%;
  bottom: 17%;
  width: 56%;
  height: 18px;
  transform: rotate(-4deg);
}

.map-site {
  position: absolute;
  left: 40%;
  top: 30%;
  width: 24%;
  height: 23%;
  border: 3px solid #ef4444;
  border-radius: 18px;
  background: rgba(239, 68, 68, 0.09);
  box-shadow: 0 0 0 10px rgba(239, 68, 68, 0.05);
  transform: rotate(-6deg);
}

.map-chip {
  position: absolute;
  padding: 0.48rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.chip-top-left {
  left: 1rem;
  top: 1rem;
}

.chip-top-right {
  right: 1rem;
  top: 1rem;
}

.chip-bottom-left {
  left: 1rem;
  bottom: 1rem;
}

.north-arrow {
  position: absolute;
  right: 1.15rem;
  bottom: 3.5rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

.scale-bar {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.35rem;
  justify-items: end;
}

.scale-bar span {
  display: inline-block;
  width: 18px;
  height: 8px;
  margin-left: -4px;
  background: #111827;
}

.scale-bar span:nth-child(2n) {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.2);
}

.scale-bar small {
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 700;
}

.side-panel {
  display: grid;
  gap: 0.85rem;
}

.side-card {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.side-label,
.deliverable-tag,
.floating-kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.layer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0.42rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.layer-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.layer-row strong {
  color: var(--text);
  font-size: 0.84rem;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 0.45rem;
  border-radius: 999px;
}

.dot-blue { background: #2563eb; }
.dot-cyan { background: #0ea5e9; }
.dot-green { background: #16a34a; }
.dot-gold { background: #f59e0b; }

.mini-layout {
  padding-top: 0.25rem;
}

.mini-sheet {
  padding: 0.5rem;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.mini-map {
  height: 76px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(14, 165, 233, 0.08)),
    linear-gradient(180deg, #edf7ee, #e4f1e7);
  margin-bottom: 0.5rem;
}

.mini-titleblock {
  height: 26px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.08);
}

.export-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.96rem;
}

.export-card span {
  color: var(--muted-2);
  font-size: 0.86rem;
  line-height: 1.45;
}

.floating-card {
  position: absolute;
  z-index: 2;
  max-width: 230px;
  padding: 1rem 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.floating-card strong {
  display: block;
  color: var(--text);
  line-height: 1.35;
}

.floating-card-one {
  left: -10px;
  bottom: 88px;
}

.floating-card-two {
  right: -16px;
  top: 74px;
}

.trust-strip {
  padding-top: 0;
  padding-bottom: 1.4rem;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.trust-strip-inner span {
  text-align: center;
  color: var(--muted-2);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.benefits-grid,
.deliverables-grid,
.steps-grid {
  display: grid;
  gap: 1.15rem;
}

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

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

.deliverables-shell {
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 255, 0.94));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.deliverables-copy {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

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

.feature-card,
.step-card,
.deliverable-card,
.cta-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.feature-card,
.step-card,
.deliverable-card {
  padding: 1.5rem;
  border-radius: 22px;
}

.feature-icon,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 0.9rem;
  padding: 0 0.75rem;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
}

.final-cta-section {
  padding-bottom: 5.5rem;
}

.cta-card {
  padding: 2.6rem 2rem;
  border-radius: 28px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(37, 99, 235, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.cta-card h2,
.cta-card p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

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

.site-footer {
  padding: 0 0 2.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-brand strong {
  font-size: 0.95rem;
}

.footer-brand span,
.site-footer p {
  color: var(--muted-2);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
  max-width: 34rem;
  text-align: right;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .floating-card-one {
    left: 10px;
    bottom: 12px;
  }

  .floating-card-two {
    right: 10px;
    top: 12px;
  }

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

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

  .site-nav,
  .hero-proof,
  .benefits-grid,
  .steps-grid,
  .deliverables-grid,
  .trust-strip-inner,
  .app-body {
    grid-template-columns: 1fr;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    border-radius: 22px;
  }

  .site-footer,
  .footer-inner {
    text-align: left;
  }

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

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .site-footer {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 1.5rem;
    gap: 2rem;
  }

  .site-nav {
    display: grid;
    gap: 0.45rem;
    padding: 0.75rem;
  }

  .nav-link,
  .site-nav .button {
    justify-content: center;
    width: 100%;
  }

  .hero-app-window,
  .deliverables-shell,
  .cta-card {
    border-radius: 22px;
  }

  .hero-proof {
    gap: 0.7rem;
  }

  .proof-item,
  .feature-card,
  .step-card,
  .deliverable-card,
  .side-card {
    border-radius: 18px;
  }

  .app-body,
  .app-toolbar {
    padding: 0.85rem;
  }

  .map-panel {
    min-height: 320px;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 0.85rem;
  }

  .micro-proof {
    gap: 0.6rem;
  }
}