:root {
  --ink: #151515;
  --muted: #5f6268;
  --line: #e6e1db;
  --paper: #fffdf9;
  --soft: #f8f4ed;
  --orange: #ff8d24;
  --orange-dark: #d76f12;
  --mustard: #c88a1d;
  --mustard-soft: #e7b45a;
  --teal: #4f9990;
  --teal-dark: #287c74;
  --red: #a4141b;
  --red-dark: #7e0f16;
  --shadow: 0 18px 45px rgba(49, 40, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--paper);
  background-image:
    url("data:image/svg+xml,%3Csvg width='620' height='620' viewBox='0 0 620 620' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2377a99f' stroke-width='1.15' opacity='.13'%3E%3Cpath d='M74 122c51-72 149-79 210-38 78 53 42 144 119 185 52 28 101-1 136 41 39 47 8 132-49 170-65 43-126-2-199 28-79 32-98 111-151 99-49-11-83-91-66-150 21-72 98-74 112-143 15-74-76-104-112-192Z'/%3E%3Cpath d='M127 158c39-50 108-55 153-24 56 39 31 105 88 137 39 22 76 1 102 34 29 36 3 99-39 128-49 33-94-1-149 22-59 24-74 83-114 74-36-9-61-68-48-112 16-54 74-56 85-108 11-55-54-78-78-151Z'/%3E%3Cpath d='M180 196c27-30 68-33 96-13 35 24 20 66 56 87 25 14 48 1 64 22 18 23 2 63-25 81-31 21-60 0-95 14-37 15-47 52-72 46-23-6-39-43-31-72 10-34 47-36 54-69 7-35-33-49-47-96Z'/%3E%3C/g%3E%3Cg fill='none' stroke='%23f6a24d' stroke-width='1' opacity='.07'%3E%3Cpath d='M382 47c58 11 103 69 100 124-4 66-73 88-65 146 6 43 48 57 44 96-4 45-65 78-115 66-58-14-63-73-113-90-58-20-103 34-139 1-34-31-24-106 14-147 46-50 105-15 151-62 50-50 48-148 123-134Z'/%3E%3Cpath d='M399 100c40 8 70 47 68 85-3 45-50 60-44 100 4 29 33 39 30 66-3 31-44 53-79 45-40-10-43-50-78-62-40-14-70 23-95 1-23-21-16-73 10-101 32-35 72-10 104-42 34-35 32-102 84-92Z'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  background-position: center top;
  background-size: 620px 620px;
  color: var(--ink);
  font-family: "Spartan", system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

.site-header,
.hero,
.services,
.use-cases,
.about,
.contact-section,
.contact-bar {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 5;
}

.brand {
  width: 178px;
  display: block;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 18px);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 15px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 28px;
  font-weight: 700;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), #ff9c30);
  color: white;
  box-shadow: 0 12px 24px rgba(255, 141, 36, 0.22);
}

.button-dark {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  box-shadow: 0 12px 24px rgba(164, 20, 27, 0.18);
}

.button-outline {
  border-color: var(--red);
  color: var(--red);
  background: white;
}

@media (hover: hover) {
  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(119, 169, 159, 0.3);
    color: var(--teal-dark);
    transform: translateY(-1px);
  }

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

  .button-primary:hover {
    box-shadow: 0 18px 34px rgba(255, 141, 36, 0.3);
  }

  .button-dark:hover {
    box-shadow: 0 18px 34px rgba(164, 20, 27, 0.26);
  }

  .button-outline:hover {
    background: rgba(164, 20, 27, 0.06);
    border-color: var(--red-dark);
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(560px, 1.14fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(224, 216, 205, 0.78);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 18px 40px rgba(31, 25, 19, 0.06);
  backdrop-filter: blur(3px);
}

.hero-copy {
  min-width: 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.75rem, 4vw, 3.6rem);
  line-height: 1.16;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero h1 span {
  color: var(--orange);
}

.lead {
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 600px;
}

.hero-copy .lead {
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.analysis-window {
  min-height: 520px;
  display: grid;
  grid-template-columns: 158px minmax(0, 1fr) 172px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.layers {
  border-right: 1px solid var(--line);
  display: grid;
  align-content: start;
  background: rgba(255, 255, 255, 0.8);
}

.layers strong {
  padding: 22px 18px 20px;
  font-size: 0.88rem;
}

.layer {
  min-height: 58px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  color: #222;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.68rem;
  text-align: left;
}

.layer svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex: 0 0 auto;
}

.layer.active svg,
.layer.active {
  color: var(--red);
}

.map-panel {
  display: grid;
  grid-template-rows: 58px 1fr 58px;
  min-width: 0;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.search {
  width: min(260px, 100%);
  height: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.75rem;
  padding: 0 12px;
  background: white;
}

.search svg,
.toolbar-actions svg {
  width: 17px;
  height: 17px;
}

.toolbar-actions {
  display: flex;
  gap: 18px;
}

.map-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 58% 36%, rgba(164, 20, 27, 0.82), rgba(164, 20, 27, 0) 24%),
    radial-gradient(circle at 46% 56%, rgba(255, 141, 36, 0.85), rgba(255, 141, 36, 0) 35%),
    radial-gradient(circle at 28% 30%, rgba(255, 179, 87, 0.7), rgba(255, 179, 87, 0) 30%),
    radial-gradient(circle at 18% 78%, rgba(79, 153, 144, 0.88), rgba(79, 153, 144, 0) 35%),
    radial-gradient(circle at 84% 20%, rgba(111, 171, 162, 0.7), rgba(111, 171, 162, 0) 28%),
    #f9ead2;
}

.map-visual::before,
.map-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.35) 1px, transparent 1px);
  background-size: 24px 24px;
  mix-blend-mode: soft-light;
}

.map-visual::after {
  background-image: radial-gradient(circle, rgba(255,255,255,0.42) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.5;
}

.region {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 45% 55% 52% 48%;
  opacity: 0.8;
}

.region.one { inset: 12% 42% 38% 14%; }
.region.two { inset: 24% 22% 20% 34%; transform: rotate(16deg); }
.region.three { inset: 48% 58% 8% 6%; transform: rotate(-22deg); }
.region.four { inset: 8% 8% 48% 62%; transform: rotate(10deg); }

.map-pin {
  position: absolute;
  z-index: 3;
  left: 53%;
  top: 35%;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 10px 14px rgba(89, 38, 22, 0.25));
}

.map-pin svg {
  width: 44px;
  height: 44px;
  fill: #e44d35;
  stroke: white;
  stroke-width: 1.8;
}

.legend {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  font-size: 0.76rem;
}

.gradient {
  width: 96px;
  height: 12px;
  background: linear-gradient(90deg, var(--teal), #eadcb8, var(--orange), var(--red));
}

.scale {
  margin-left: auto;
  border-bottom: 2px solid #111;
  padding-inline: 8px;
}

.insights {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.55);
}

.insights article {
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 16px;
  background: white;
  box-shadow: 0 10px 22px rgba(36, 28, 19, 0.06);
}

.insights span,
.insights strong {
  display: block;
}

.insights span {
  font-size: 0.72rem;
  font-weight: 700;
}

.insights strong {
  margin-top: 6px;
  font-size: 0.92rem;
}

.red { color: var(--red); }
.teal { color: var(--teal-dark); }
.mustard { color: var(--mustard); }

.bars {
  height: 44px;
  display: flex;
  align-items: end;
  gap: 5px;
  margin-top: 8px;
}

.bars i {
  width: 8px;
  background: var(--orange);
}

.bars i:nth-child(2n) { background: var(--teal); }
.bars i:nth-child(3n) { background: var(--red); }
.bars i:nth-child(1) { height: 16px; }
.bars i:nth-child(2) { height: 25px; }
.bars i:nth-child(3) { height: 35px; }
.bars i:nth-child(4) { height: 19px; }
.bars i:nth-child(5) { height: 33px; }
.bars i:nth-child(6) { height: 44px; }
.bars i:nth-child(7) { height: 38px; }

.trend-chart {
  height: 46px;
  margin-top: 12px;
  padding: 6px 4px 0;
  display: flex;
  align-items: end;
  gap: 7px;
  border-bottom: 10px solid rgba(79, 153, 144, 0.12);
}

.trend-chart span {
  width: 13px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--mustard-soft), var(--mustard));
}

.trend-chart span:nth-child(1) { height: 12px; }
.trend-chart span:nth-child(2) { height: 18px; }
.trend-chart span:nth-child(3) { height: 24px; }
.trend-chart span:nth-child(4) { height: 31px; }
.trend-chart span:nth-child(5) { height: 38px; }

.dots {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(6, 12px);
  gap: 8px;
}

.dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e3dfd9;
}

.dots i:nth-child(-n+6) {
  background: var(--teal-dark);
}

.icon-badge {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.icon-badge svg {
  width: 40px;
  height: 40px;
}

.icon-badge.orange { background: linear-gradient(135deg, var(--orange), #ffad39); }
.icon-badge.teal { background: linear-gradient(135deg, var(--teal), #8ab9ae); }
.icon-badge.red { background: linear-gradient(135deg, var(--red), #c43a2f); }

.service-card p,
.use-cases p,
.about p {
  margin: 0;
  color: #3e4147;
  font-size: 0.82rem;
}

.use-cases {
  margin-top: 24px;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(224, 216, 205, 0.78);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 18px 40px rgba(31, 25, 19, 0.06);
  backdrop-filter: blur(3px);
}

.use-cases .section-heading {
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 30px;
}

.use-cases .eyebrow,
.services .eyebrow,
.hero .eyebrow {
  font-size: 0.92rem;
}

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

.use-case-grid article {
  min-width: 0;
  min-height: 238px;
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 16px;
  padding: 26px;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(31, 25, 19, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.use-case-grid article::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(246, 162, 77, 0.12), transparent 34%, rgba(119, 169, 159, 0.1));
  opacity: 0;
  transition: opacity 180ms ease;
}

.case-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.case-icon svg {
  width: 30px;
  height: 30px;
}

.case-icon.orange { background: linear-gradient(135deg, var(--orange), #ffad39); }
.case-icon.teal { background: linear-gradient(135deg, var(--teal), #8ab9ae); }
.case-icon.red { background: linear-gradient(135deg, var(--red), #c43a2f); }
.case-icon.mustard { background: linear-gradient(135deg, var(--mustard), #f2bf62); }

.use-case-grid h3 {
  width: min(100%, 24ch);
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.use-case-grid p {
  width: min(100%, 30ch);
  max-width: 30ch;
  overflow-wrap: anywhere;
}

.services {
  margin-top: 24px;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(224, 216, 205, 0.78);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 18px 40px rgba(31, 25, 19, 0.06);
  backdrop-filter: blur(3px);
}

.section-heading {
  text-align: center;
  margin-bottom: 22px;
  width: fit-content;
  max-width: min(920px, 100%);
  margin-inline: auto;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.15;
}

.section-heading .eyebrow::after {
  content: "";
  width: 42px;
  height: 2px;
  display: block;
  margin: 10px auto 0;
  background: var(--orange);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 220px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 28px rgba(31, 25, 19, 0.06);
  padding: 28px;
  display: grid;
  grid-template-columns: 92px 1fr;
  column-gap: 18px;
  align-items: start;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card > *,
.use-case-grid article > * {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin: 8px 0 16px;
  font-size: 1.24rem;
  line-height: 1.3;
}

.service-card p {
  grid-column: 2;
}

@media (hover: hover) {
  .use-case-grid article:hover,
  .service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(119, 169, 159, 0.36);
    box-shadow: 0 20px 38px rgba(31, 25, 19, 0.11);
  }

  .use-case-grid article:hover::before,
  .service-card:hover::before {
    opacity: 1;
  }

  .use-case-grid article:hover .case-icon,
  .service-card:hover .icon-badge {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 14px 24px rgba(31, 25, 19, 0.14);
  }
}

.use-case-grid article:active,
.service-card:active {
  transform: translateY(-2px);
}

.orange-text { color: var(--orange-dark); }
.teal-text { color: var(--teal-dark); }
.red-text { color: var(--red); }

.about {
  display: grid;
  grid-template-columns: minmax(360px, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
  padding: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(224, 216, 205, 0.78);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 18px 40px rgba(31, 25, 19, 0.06);
  backdrop-filter: blur(3px);
}

.about > * {
  min-width: 0;
}

.about p {
  font-size: 1rem;
}

.about h1 {
  margin: 0;
  font-size: clamp(3.25rem, 5vw, 4.75rem);
  line-height: 1.08;
  letter-spacing: 0;
  max-width: 720px;
}

.about-slogan {
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.35vw, 1.32rem);
  font-weight: 600;
  line-height: 1.35;
}

.about-intro > p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1rem, 1.24vw, 1.14rem);
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  margin-top: 36px;
  margin-bottom: 24px;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 141, 36, 0.08), rgba(79, 153, 144, 0.06)),
    #fffdf9;
  box-shadow: 0 16px 36px rgba(31, 25, 19, 0.06);
}

.contact-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.12;
}

.contact-copy p {
  margin: 0;
  max-width: 560px;
  color: #4f535b;
  line-height: 1.75;
}

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

.bot-field {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-form label:nth-last-of-type(1),
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dfd8ce;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 15px;
  outline: none;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(79, 153, 144, 0.14);
}

.contact-bar {
  min-height: 76px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 28px rgba(31, 25, 19, 0.05);
  padding: 14px 20px;
}

.contact-bar a:not(.button) {
  min-height: 34px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: #3f4146;
  font-size: 0.9rem;
  text-align: center;
}

.contact-bar svg {
  width: 24px;
  height: 24px;
  color: var(--ink);
}

.contact-bar small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}

.footer-logo img {
  width: 124px;
  height: auto;
  display: block;
  margin-inline: auto;
}

.linkedin-mark {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: #0a66c2;
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thanks-card {
  width: min(680px, 100%);
  padding: clamp(32px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 42px rgba(31, 25, 19, 0.08);
}

.thanks-card h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.08;
}

.thanks-card p:not(.eyebrow) {
  margin: 0 0 28px;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 1060px) {
  .site-header {
    flex-wrap: wrap;
    padding-top: 22px;
  }

  .brand {
    width: 150px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }

  .analysis-window {
    grid-template-columns: 150px minmax(0, 1fr) 170px;
  }

  .service-grid,
  .use-case-grid,
  .about,
  .contact-section,
  .contact-bar {
    grid-template-columns: 1fr;
  }

  .contact-bar a:not(.button) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  html,
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  body {
    background-attachment: scroll;
    background-size: 520px 520px;
  }

  .site-header,
  .hero,
  .services,
  .use-cases,
  .about,
  .contact-section,
  .contact-bar {
    width: calc(100vw - 24px);
    max-width: none;
    margin-inline: auto;
  }

  .site-header {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    align-items: center;
    padding-top: 20px;
  }

  .site-header > .button {
    width: min(220px, 100%);
    min-height: 44px;
    flex: none;
    padding-inline: 18px;
    font-size: 0.9rem;
  }

  .main-nav {
    display: none;
  }

  .brand {
    width: 126px;
    flex: none;
  }

  .about h1 {
    font-size: clamp(2.15rem, 10vw, 2.75rem);
    line-height: 1.08;
    max-width: 8.8ch;
  }

  .section-heading {
    width: auto;
  }

  .about,
  .use-cases,
  .services,
  .hero {
    padding: 22px;
  }

  .about-slogan {
    width: min(100%, 25ch);
    font-size: 0.92rem;
    line-height: 1.4;
    overflow-wrap: break-word;
  }

  .about-intro > p {
    width: min(100%, 34ch);
    font-size: 0.9rem;
  }

  .use-cases {
    padding-top: 24px;
  }

  .use-cases .section-heading h2 {
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(1.75rem, 8vw, 2.05rem);
    text-wrap: balance;
  }

  .use-case-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .use-case-grid article {
    min-height: auto;
    padding: 22px;
  }

  .contact-section {
    padding: 24px;
  }

  .contact-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.25rem);
  }

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

  .hero h1 {
    font-size: clamp(2.15rem, 9vw, 2.65rem);
    line-height: 1.18;
  }

  .lead {
    font-size: 0.94rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .analysis-window {
    grid-template-columns: 1fr;
    min-width: 0;
    min-height: 0;
    border-radius: 10px;
    box-shadow: 0 16px 34px rgba(31, 25, 19, 0.08);
  }

  .layers {
    display: none;
  }

  .map-panel {
    grid-template-rows: auto minmax(280px, 58vh) 52px;
  }

  .map-visual {
    min-height: 280px;
    background:
      radial-gradient(circle at 58% 36%, rgba(164, 20, 27, 0.86), rgba(164, 20, 27, 0) 27%),
      radial-gradient(circle at 45% 54%, rgba(255, 141, 36, 0.9), rgba(255, 141, 36, 0) 38%),
      radial-gradient(circle at 22% 76%, rgba(79, 153, 144, 0.95), rgba(79, 153, 144, 0) 36%),
      radial-gradient(circle at 86% 22%, rgba(79, 153, 144, 0.75), rgba(79, 153, 144, 0) 30%),
      #f4dfbd;
  }

  .map-visual::before {
    background-size: 20px 20px;
    opacity: 0.45;
  }

  .map-visual::after {
    opacity: 0.22;
  }

  .toolbar {
    align-items: center;
    flex-direction: row;
    padding: 12px;
  }

  .toolbar-actions {
    width: auto;
    margin-left: auto;
    gap: 14px;
  }

  .toolbar-actions svg:nth-child(n+3) {
    display: none;
  }

  .search {
    width: 150px;
  }

  .insights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    background: #fffaf2;
  }

  .insights article {
    min-height: 104px;
    padding: 12px 10px;
  }

  .insights span {
    font-size: 0.58rem;
  }

  .insights strong {
    font-size: 0.78rem;
  }

  .bars {
    gap: 3px;
    height: 34px;
  }

  .bars i {
    width: 5px;
  }

  .trend-chart {
    height: 34px;
    gap: 4px;
    border-bottom-width: 8px;
  }

  .trend-chart span {
    width: 8px;
  }

  .dots {
    grid-template-columns: repeat(4, 9px);
    gap: 6px;
  }

  .dots i {
    width: 9px;
    height: 9px;
  }

  .legend {
    padding-inline: 12px;
    gap: 8px;
    font-size: 0.68rem;
  }

  .gradient {
    width: 70px;
  }

  .scale {
    padding-inline: 4px;
  }

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

  .service-card p {
    max-width: 30ch;
  }

  .service-card p {
    grid-column: 1;
  }

  .contact-bar .button {
    width: 100%;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .contact-bar small {
    text-align: center;
  }
}
