:root {
  --bg: #fbf8f1;
  --bg-soft: #f3efe5;
  --surface: rgba(255, 253, 248, 0.9);
  --surface-strong: #fffdf8;
  --text: #252a2c;
  --muted: #6d746f;
  --line: rgba(37, 42, 44, 0.12);
  --primary: #0d3f2f;
  --primary-strong: #092d23;
  --sage: #dce8d6;
  --sage-strong: #b9cdb0;
  --accent: #b07b3b;
  --shadow: 0 20px 56px rgba(45, 52, 48, 0.12);
  --soft-shadow: 0 10px 30px rgba(45, 52, 48, 0.08);
  --radius: 20px;
  --radius-sm: 16px;
  --nav-height: 78px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root.dark {
  --bg: #111512;
  --bg-soft: #171d19;
  --surface: rgba(28, 34, 30, 0.9);
  --surface-strong: #202821;
  --text: #f5f2ea;
  --muted: #b5beb4;
  --line: rgba(245, 242, 234, 0.13);
  --primary: #a8d5bd;
  --primary-strong: #d8f0e2;
  --sage: #26372d;
  --sage-strong: #375043;
  --accent: #e3b46f;
  --shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
  --soft-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(135deg, rgba(220, 232, 214, 0.55), transparent 36rem),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  color: var(--text);
}

button,
input,
select,
textarea {
  font: inherit;
}

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

svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.app-shell {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 14px 16px calc(var(--nav-height) + 30px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 16px;
  backdrop-filter: blur(18px);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-status {
  display: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.compact-action {
  min-height: 42px;
  padding: 0 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  background: var(--primary);
  color: #fffdf8;
  font-size: 0.74rem;
  box-shadow: var(--soft-shadow);
}

.icon-button,
.chip,
.primary-action,
.secondary-action,
.submit-button,
.ghost-button,
.danger-action,
.method-button,
.upload-tile,
.offer-button {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.icon-button:hover,
.chip:hover,
.primary-action:hover,
.secondary-action:hover,
.submit-button:hover,
.ghost-button:hover,
.upload-tile:hover,
.offer-button:hover {
  transform: translateY(-1px);
}

.icon-button:focus-visible,
.chip:focus-visible,
.primary-action:focus-visible,
.secondary-action:focus-visible,
.submit-button:focus-visible,
.ghost-button:focus-visible,
.upload-tile:focus-visible,
.offer-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--primary), transparent 72%);
  outline-offset: 2px;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--surface);
  color: var(--primary-strong);
  box-shadow: var(--soft-shadow);
}

.hero {
  position: relative;
  display: grid;
  grid-template-areas:
    "copy"
    "visual"
    "actions"
    "proof";
  gap: 22px;
  overflow: visible;
  padding: 44px 0 56px;
}

.hero-visual {
  position: relative;
  grid-area: visual;
  width: 100%;
  min-height: 280px;
  aspect-ratio: 1.18;
  margin: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--primary), transparent 86%);
  border-radius: 24px;
  background: color-mix(in srgb, var(--sage), transparent 58%);
  opacity: 1;
  pointer-events: none;
  box-shadow: 0 26px 64px rgba(37, 42, 44, 0.13);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.04), rgba(251, 248, 241, 0.18)),
    radial-gradient(circle at 72% 20%, rgba(255, 253, 248, 0.24), transparent 34%);
}

:root.dark .hero-visual::before {
  background:
    linear-gradient(180deg, rgba(17, 21, 18, 0.06), rgba(17, 21, 18, 0.24)),
    radial-gradient(circle at 72% 20%, rgba(255, 253, 248, 0.1), transparent 34%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 18px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.route-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary), transparent 42%);
  transform-origin: left center;
}

.line-one {
  top: 47%;
  left: 18%;
  width: 54%;
  transform: rotate(-18deg);
}

.line-two {
  top: 60%;
  left: 30%;
  width: 44%;
  transform: rotate(22deg);
}

.hero-radius {
  position: absolute;
  top: 36%;
  left: 48%;
  width: 190px;
  height: 190px;
  border: 1px solid color-mix(in srgb, var(--primary), transparent 54%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--sage), transparent 34%);
}

.node {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.node-main {
  top: 49%;
  left: 54%;
  width: 26px;
  height: 26px;
  border: 7px solid var(--primary);
}

.node-a,
.node-b,
.node-c {
  width: 14px;
  height: 14px;
  border: 4px solid var(--sage-strong);
}

.node-a {
  top: 38%;
  left: 26%;
}

.node-b {
  top: 30%;
  right: 19%;
}

.node-c {
  right: 27%;
  bottom: 21%;
}

.hero-copy {
  position: relative;
  grid-area: copy;
  z-index: 3;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary-strong);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 9vw, 4.65rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 6vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 590px;
  color: color-mix(in srgb, var(--text), var(--muted) 36%);
  font-size: clamp(1rem, 2.4vw, 1.16rem);
  line-height: 1.7;
}

.hero-actions {
  position: relative;
  grid-area: actions;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action,
.submit-button,
.ghost-button,
.offer-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 850;
}

.primary-action,
.submit-button {
  border-color: transparent;
  background: var(--primary);
  color: #fffdf8;
  box-shadow: 0 16px 34px rgba(13, 63, 47, 0.22);
}

.secondary-action,
.ghost-button {
  background: color-mix(in srgb, var(--surface-strong), transparent 8%);
  color: var(--primary-strong);
}

.hero-proof {
  position: relative;
  grid-area: proof;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
}

.hero-proof span,
.live-pill,
.score-pill,
.local-badge,
.offer-meta span {
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-proof span {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong), transparent 10%);
  color: var(--muted);
  padding: 8px 11px;
}

.workflow,
.request-grid,
.company-dashboard,
.eco-benefits {
  display: grid;
  gap: 14px;
}

.workflow {
  grid-template-columns: 1fr;
  margin: 18px 0 72px;
}

.workflow article,
.panel,
.company-dashboard article,
.offer-card,
.eco-benefits article,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.workflow article {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.workflow-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-number {
  color: color-mix(in srgb, var(--primary), transparent 28%);
  font-size: 0.88rem;
  font-weight: 900;
}

.workflow-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 16px;
  background: var(--sage);
  color: var(--primary-strong);
}

.workflow strong,
.company-dashboard strong,
.eco-benefits strong {
  display: block;
  font-size: 1.12rem;
}

.workflow p,
.company-dashboard p,
.eco-benefits p,
.company-hero p,
.pricing-card p,
.pricing-card small,
.map-copy {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.request-grid {
  align-items: start;
  margin: 0 0 78px;
}

.panel {
  padding: 20px;
}

.account-section {
  margin: 42px 0 34px;
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.8fr);
  gap: 18px;
}

.account-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface-strong), transparent 8%);
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-state {
  align-content: start;
}

.offer-composer {
  margin-top: 16px;
}

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

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

.section-heading {
  margin-bottom: 6px;
}

.progress {
  display: grid;
  gap: 9px;
}

.progress-bar {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--sage), transparent 32%);
}

.progress-bar span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
  transition: width 180ms ease;
}

.progress p,
.step-title {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.form-step {
  display: none;
  gap: 15px;
}

.form-step.active {
  display: grid;
  animation: rise 220ms ease both;
}

label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  color: var(--text);
  outline: none;
}

input,
select {
  min-height: 52px;
  padding: 0 14px;
}

textarea {
  min-height: 132px;
  resize: vertical;
  padding: 13px 14px;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus {
  border-color: color-mix(in srgb, var(--primary), white 18%);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary), transparent 86%);
}

input[type="range"] {
  accent-color: var(--primary);
  padding: 0;
}

.range-value {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 900;
}

.privacy-note,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--sage), transparent 48%);
  color: var(--muted);
  line-height: 1.5;
  padding: 14px;
}

.review-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.review-card strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
}

.upload-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.upload-tile,
.photo-tile {
  aspect-ratio: 1;
  min-width: 0;
}

.upload-tile {
  background: var(--surface-strong);
  color: var(--primary-strong);
  font-size: 1.35rem;
  font-weight: 900;
}

.photo-tile {
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
}

.tile-a {
  background-image: linear-gradient(135deg, #dce8d6, #8ba98d);
}

.tile-b {
  background-image: linear-gradient(135deg, #f2dcc2, #b07b3b);
}

.tile-c {
  background-image: linear-gradient(135deg, #e8efe1, #94a699);
}

.form-actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
}

.location-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.method-button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  color: var(--text);
  cursor: pointer;
  font-weight: 820;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.method-button.active,
.method-button:hover {
  border-color: color-mix(in srgb, var(--primary), transparent 58%);
  background: color-mix(in srgb, var(--sage), transparent 28%);
  transform: translateY(-1px);
}

.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.map-panel {
  display: grid;
  gap: 16px;
}

.map-topline,
.offer-main,
.offer-meta,
.bottom-nav,
.offer-actions {
  display: flex;
  align-items: center;
}

.map-topline,
.offer-main,
.bottom-nav {
  justify-content: space-between;
}

.live-pill,
.score-pill,
.local-badge {
  background: color-mix(in srgb, var(--sage), transparent 16%);
  color: var(--primary-strong);
  padding: 8px 11px;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(220, 232, 214, 0.9), transparent 65%),
    linear-gradient(160deg, #eef2e8, #d9e4d1);
}

.leaflet-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 180ms ease;
}

.map-card.leaflet-ready .leaflet-map {
  z-index: 2;
  opacity: 1;
}

.map-card.leaflet-ready .map-grid,
.map-card.leaflet-ready .map-road,
.map-card.leaflet-ready .map-radius,
.map-card.leaflet-ready .map-pin,
.map-card.leaflet-ready .area-label,
.map-card.leaflet-ready .company-dot,
.map-card.leaflet-ready .map-trust-pin {
  display: none;
}

.leaflet-container {
  font: inherit;
}

:root.dark .map-card {
  background:
    linear-gradient(135deg, rgba(38, 55, 45, 0.9), transparent 65%),
    linear-gradient(160deg, #1f2a22, #162018);
}

.map-grid {
  position: absolute;
  inset: -22%;
  background-image:
    linear-gradient(rgba(13, 63, 47, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 63, 47, 0.1) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: rotate(-10deg);
}

.map-road {
  position: absolute;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: inset 0 0 0 1px rgba(13, 63, 47, 0.08);
}

.road-a {
  top: 42%;
  left: -12%;
  width: 80%;
  transform: rotate(-18deg);
}

.road-b {
  right: -8%;
  bottom: 31%;
  width: 68%;
  transform: rotate(23deg);
}

.map-radius {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 190px;
  height: 190px;
  border: 1px solid color-mix(in srgb, var(--primary), transparent 42%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary), transparent 88%);
  transform: translate(-50%, -50%);
  transition: width 180ms ease, height 180ms ease;
}

.map-pin {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.map-pin span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--primary);
}

.area-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: #26322c;
  font-size: 0.78rem;
  font-weight: 850;
  padding: 9px 12px;
}

.company-dot {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid var(--surface-strong);
  border-radius: 999px;
  background: var(--accent);
  box-shadow: var(--soft-shadow);
}

.dot-one {
  left: 27%;
  top: 38%;
}

.dot-two {
  right: 24%;
  top: 33%;
}

.dot-three {
  right: 35%;
  bottom: 24%;
}

.radius-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.radius-options legend {
  width: 100%;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.radius-options label {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--text);
  padding: 0 12px;
}

.category-multiselect {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.category-multiselect legend {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.category-multiselect label {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  color: var(--text);
  padding: 0 11px;
}

.category-multiselect input {
  width: auto;
  min-height: auto;
  accent-color: var(--primary);
}

.radius-options input {
  width: auto;
  min-height: auto;
  accent-color: var(--primary);
}

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

.matching div {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.matching span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.matching strong {
  display: block;
  margin-top: 5px;
  font-size: 0.88rem;
}

.offers-section,
.company-section,
.eco-section {
  margin: 74px 0;
}

.offer-controls {
  display: flex;
  gap: 8px;
  margin: 18px 0;
  overflow-x: auto;
  padding-bottom: 5px;
}

.chip {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  background: var(--surface);
  color: var(--text);
  font-weight: 850;
}

.chip.active {
  border-color: transparent;
  background: var(--primary);
  color: #fffdf8;
}

@media (max-width: 640px) {
  .offer-controls {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .offer-controls .chip {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    min-width: 0;
  }
}

.offers-list {
  display: grid;
  gap: 14px;
}

.offer-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  animation: rise 300ms ease both;
}

.offer-card.recommended {
  border-color: color-mix(in srgb, var(--primary), transparent 54%);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--sage), transparent 45%), transparent 62%),
    var(--surface);
}

.offer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.recommended-label {
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 900;
}

.company-name {
  min-width: 0;
}

.company-name strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 1.1rem;
}

.company-name span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
}

.price {
  flex: 0 0 auto;
  font-size: 1.45rem;
  font-weight: 950;
}

.offer-meta {
  flex-wrap: wrap;
  gap: 8px;
}

.offer-meta span {
  background: color-mix(in srgb, var(--surface-strong), var(--text) 4%);
  color: var(--muted);
  padding: 8px 10px;
}

.offer-actions {
  flex-wrap: wrap;
  gap: 9px;
}

.offer-button {
  min-height: 44px;
  padding: 0 14px;
  background: var(--surface-strong);
  color: var(--primary-strong);
}

.offer-button.primary {
  border-color: transparent;
  background: var(--primary);
  color: #fffdf8;
}

.eco-benefits {
  margin-top: 18px;
}

.eco-benefits article {
  padding: 20px;
}

.company-hero {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--sage), transparent 12%), transparent),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  padding: 22px;
}

.company-profile {
  margin-bottom: 16px;
}

.company-settings {
  display: grid;
  gap: 14px;
}

.company-hero .primary-action {
  margin-top: 18px;
}

.pricing-card {
  padding: 20px;
}

.pricing-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.pricing-card strong {
  display: block;
  margin: 6px 0;
  font-size: clamp(2.4rem, 12vw, 4rem);
  line-height: 1;
}

.pricing-card small {
  display: block;
  margin-top: 12px;
}

.hidden {
  display: none !important;
}

.founder-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(176, 123, 59, 0.34);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff3c9, #d7a84a);
  color: #3f2b08;
  font-size: 0.74rem;
  font-weight: 950;
  padding: 0 10px;
  box-shadow: 0 8px 20px rgba(176, 123, 59, 0.16);
}

.founder-list {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.founder-list li {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 780;
}

.founder-list li::before {
  content: "OK";
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--primary-strong);
  font-size: 0.62rem;
  font-weight: 950;
}

.danger-action {
  min-height: 50px;
  border: 1px solid color-mix(in srgb, #8a2d2d, transparent 52%);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, #8a2d2d, transparent 92%);
  color: color-mix(in srgb, #8a2d2d, var(--text) 8%);
  cursor: pointer;
  font-weight: 850;
}

:root.dark .danger-action {
  color: #f1c4bd;
}

.status-line {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.company-dashboard {
  grid-template-columns: 1fr;
}

.company-dashboard article {
  padding: 20px;
}

.company-dashboard span {
  color: var(--primary-strong);
  font-size: 0.76rem;
  font-weight: 900;
}

.company-dashboard strong {
  margin: 8px 0;
  font-size: 2rem;
}

.bottom-nav {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  max-width: 520px;
  min-height: 60px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface-strong), transparent 7%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.bottom-nav a {
  display: grid;
  min-width: 0;
  min-height: 60px;
  place-items: center;
  padding: 0 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
}

.bottom-nav a.active {
  color: var(--primary-strong);
}

.map-trust-pin {
  position: absolute;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 2px solid var(--surface-strong);
  border-radius: 999px;
  background: var(--primary);
  color: #fffdf8;
  font-size: 0.64rem;
  font-weight: 950;
  box-shadow: var(--soft-shadow);
}

.pin-one {
  left: 29%;
  top: 31%;
}

.pin-two {
  right: 20%;
  bottom: 30%;
}

.verified-filter {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  padding: 0 14px;
}

.verified-filter input {
  width: auto;
  min-height: auto;
  accent-color: var(--primary);
}

.trust-section {
  margin: 74px 0;
}

.trust-levels {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.trust-levels article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  padding: 20px;
}

.trust-levels p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.trust-badge,
.recommended-label {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 0.74rem;
  font-weight: 900;
}

.trust-badge.basic {
  background: color-mix(in srgb, var(--surface-strong), var(--sage) 48%);
  color: var(--muted);
}

.trust-badge.verified {
  background: var(--sage);
  color: var(--primary-strong);
}

.trust-badge.recommended {
  background: color-mix(in srgb, var(--primary), transparent 86%);
  color: var(--primary-strong);
}

.offer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.trust-checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.trust-checks span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
}

.profile-showcase {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}

.profile-showcase h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.35rem, 5vw, 2rem);
}

.profile-intro {
  color: var(--muted);
  line-height: 1.58;
}

.trust-stats,
.profile-grid {
  display: grid;
  gap: 8px;
}

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

.trust-stats div,
.profile-grid div,
.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface-strong), transparent 14%);
  padding: 14px;
}

.trust-stats span,
.profile-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
}

.trust-stats strong,
.profile-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
}

.profile-grid p,
.admin-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.work-image {
  min-height: 120px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
}

.work-one {
  background-image: linear-gradient(135deg, #d6c3aa, #8fa08b);
}

.work-two {
  background-image: linear-gradient(135deg, #e5eadc, #9c7b54);
}

.work-three {
  background-image: linear-gradient(135deg, #cbd8c2, #476453);
}

.admin-verification {
  margin-bottom: 16px;
}

.admin-card {
  display: grid;
  gap: 14px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-actions .secondary-action,
.admin-actions .danger-action {
  min-height: 46px;
  padding: 0 16px;
}

.intro-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.intro-capabilities span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--sage), transparent 28%);
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 850;
  padding: 8px 11px;
}

.meeting-section {
  margin: 74px 0;
}

.meeting-layout {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.calendar-header span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 820;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-day {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-strong);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.calendar-day.has-meeting {
  border-color: color-mix(in srgb, var(--primary), transparent 48%);
  background: var(--sage);
  color: var(--primary-strong);
}

.meeting-list,
.notification-list {
  display: grid;
  gap: 10px;
}

.meeting-card,
.notification-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface-strong), transparent 8%);
  padding: 14px;
}

.notification-card {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.notification-actions {
  display: flex;
  justify-content: flex-end;
}

.meeting-card strong,
.notification-card strong {
  display: block;
}

.meeting-card p,
.notification-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.meeting-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 560px) {
  .notification-card {
    grid-template-columns: 1fr;
  }

  .notification-card .danger-action,
  .notification-actions .offer-button {
    width: 100%;
  }
}

.intro-action-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 780;
}

.meeting-dialog {
  width: min(560px, calc(100% - 24px));
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-strong);
  color: var(--text);
  box-shadow: var(--shadow);
  padding: 0;
}

.meeting-dialog::backdrop {
  background: rgba(17, 21, 18, 0.42);
  backdrop-filter: blur(4px);
}

.meeting-form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.meeting-mode-options,
.quote-type-options {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.meeting-mode-options legend,
.quote-type-options legend {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.meeting-mode-options label,
.quote-type-options label {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 0 12px;
}

.meeting-mode-options input,
.quote-type-options input {
  width: auto;
  min-height: auto;
  accent-color: var(--primary);
}

.quote-guidance {
  border: 1px solid color-mix(in srgb, var(--primary), transparent 72%);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--sage), transparent 36%);
  color: var(--primary-strong);
  line-height: 1.5;
  padding: 14px;
}

.company-visit-options {
  grid-template-columns: 1fr;
}

.availability-options,
.emergency-options {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.shift-editor {
  background: color-mix(in srgb, var(--sage), transparent 54%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
}

.compact-heading {
  margin-bottom: 12px;
}

.compact-heading h2 {
  font-size: 1rem;
}

.shift-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr auto;
}

.shift-list,
.availability-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.shift-pill,
.availability-badges span,
.now-badge {
  align-items: center;
  background: color-mix(in srgb, var(--sage), transparent 28%);
  border: 1px solid color-mix(in srgb, var(--primary), transparent 82%);
  border-radius: 999px;
  color: var(--primary-strong);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 760;
  gap: 8px;
  padding: 7px 10px;
}

.shift-pill button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  min-height: 24px;
}

#availabilityAdminJson {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  min-height: 160px;
}

.automation-section {
  margin: 74px 0;
}

.privacy-section {
  margin: 74px 0;
}

.privacy-layout {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.privacy-card {
  display: grid;
  gap: 16px;
}

.privacy-card p {
  color: var(--muted);
  line-height: 1.6;
}

.privacy-consents {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.legal-documents {
  display: grid;
  gap: 12px;
}

.legal-documents article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-strong), transparent 6%);
  padding: 16px;
}

.legal-documents h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.legal-documents p {
  margin-bottom: 8px;
}

.retention-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.retention-grid div {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--sage), transparent 54%);
  padding: 12px;
}

.retention-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.retention-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--primary-strong);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 92px;
  left: 18px;
  z-index: 20;
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface-strong), transparent 2%);
  box-shadow: 0 24px 70px rgba(37, 42, 44, 0.18);
  padding: 18px;
}

.cookie-banner p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.automation-layout {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.automation-topline {
  display: grid;
  gap: 14px;
}

.automation-summary,
.exception-list,
.report-list {
  display: grid;
  gap: 10px;
}

.automation-summary {
  margin-top: 14px;
}

.automation-summary p,
.exception-card p,
.report-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.automation-metrics div,
.exception-card,
.report-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface-strong), transparent 10%);
  padding: 13px;
}

.automation-metrics span,
.exception-card span,
.report-card span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
}

.automation-metrics strong,
.exception-card strong,
.report-card strong {
  display: block;
  margin-top: 4px;
}

.exception-card.high {
  border-color: color-mix(in srgb, #8a2d2d, transparent 52%);
}

.exception-card.medium {
  border-color: color-mix(in srgb, var(--accent), transparent 44%);
}

.dashboards-section,
.platform-section {
  margin: 74px 0;
}

.dashboard-tabs {
  display: flex;
  gap: 8px;
  margin: 18px 0;
}

.dashboard-grid,
.platform-grid {
  display: grid;
  gap: 12px;
}

.dashboard-card,
.platform-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  padding: 18px;
}

.dashboard-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.dashboard-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: clamp(1.35rem, 6vw, 2.2rem);
  line-height: 1;
}

.platform-grid strong {
  display: block;
  margin-bottom: 8px;
}

.platform-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 430px) {
  .topbar-actions {
    gap: 6px;
  }

  .compact-action {
    display: none;
  }

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

  .app-shell {
    padding-inline: 14px;
  }

  .hero {
    gap: 18px;
    padding-top: 30px;
  }

  .hero-visual {
    min-height: 244px;
    border-radius: 20px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-action,
  .secondary-action,
  .submit-button,
  .ghost-button {
    width: 100%;
  }

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

  .map-card {
    min-height: 315px;
  }

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

  h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }
}

@media (min-width: 680px) {
  .auth-status {
    display: inline-flex;
  }

  .app-shell {
    padding-inline: 24px;
  }

  .workflow,
  .company-dashboard,
  .eco-benefits,
  .trust-levels,
  .profile-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .company-hero {
    grid-template-columns: 1.3fr 0.7fr;
    padding: 30px;
  }

  .location-methods {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-stats {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .meeting-layout .panel:first-child {
    grid-row: span 2;
  }

  .automation-layout {
    grid-template-columns: 1.1fr 0.95fr 0.95fr;
  }

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

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

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

@media (min-width: 680px) and (max-width: 899px) {
  .automation-layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .app-shell {
    padding-bottom: 42px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
    grid-template-areas:
      "copy visual"
      "actions visual"
      "proof visual";
    align-items: center;
    column-gap: clamp(34px, 5vw, 84px);
    min-height: 620px;
    padding: 68px 0 74px;
  }

  .hero-visual {
    align-self: stretch;
    min-height: 480px;
    max-height: 560px;
  }

  .hero-copy {
    align-self: end;
  }

  .hero-actions,
  .hero-proof {
    align-self: start;
  }

  .request-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  }

  .panel {
    padding: 24px;
  }

  .bottom-nav {
    top: 18px;
    right: calc((100vw - min(1160px, 100vw)) / 2 + 88px);
    bottom: auto;
    left: auto;
    width: 430px;
    min-height: 48px;
    border-radius: 18px;
  }

  .bottom-nav a {
    min-height: 48px;
  }
}
