:root {
  color-scheme: light;
  --green-950: #05251b;
  --green-900: #073f2d;
  --green-800: #0b5c40;
  --green-700: #11734f;
  --green-100: #eaf5eb;
  --green-050: #f5faf4;
  --gold: #c58a2a;
  --gold-soft: #fff3d7;
  --blue-soft: #eef5ff;
  --red-soft: #fff1ed;
  --card: #ffffff;
  --ink: #14251c;
  --muted: #52645a;
  --line: #d9e3d6;
  --shadow: 0 14px 40px rgba(13, 52, 35, 0.10);
  --shadow-soft: 0 6px 18px rgba(13, 52, 35, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --focus: 0 0 0 4px rgba(197, 138, 42, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(17,115,79,.10), transparent 38rem),
    linear-gradient(180deg, #f2f8f1 0%, #f8faf5 52%, #eef5ef 100%);
  color: var(--ink);
  min-height: 100vh;
}

button, input, textarea, select { font: inherit; }
button, .primary-upload { touch-action: manipulation; }
button {
  border: 0;
  border-radius: 999px;
  background: var(--green-900);
  color: white;
  padding: .82rem 1.08rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 8px 20px rgba(7,63,45,.16);
}
button:hover { transform: translateY(-1px); background: var(--green-800); }
button:active { transform: translateY(0); }
button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, .primary-upload:focus-visible { outline: none; box-shadow: var(--focus); }
button.secondary, button.ghost {
  background: white;
  color: var(--green-900);
  border: 1px solid var(--line);
  box-shadow: none;
}
button.full-width { width: 100%; justify-content: center; }
button.ghost { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.12); color: white; }
button.ghost:hover { background: rgba(255,255,255,.20); }

.skip-link {
  position: fixed;
  z-index: 50;
  left: 1rem;
  top: -10rem;
  background: var(--gold);
  color: #1b1508;
  padding: .75rem 1rem;
  border-radius: 999px;
  font-weight: 900;
}
.skip-link:focus { top: 1rem; }

.app { width: min(1660px, 100%); margin: 0 auto; padding: 18px; }
.utility-bar { display: flex; justify-content: space-between; gap: 1rem; align-items: center; margin-bottom: 18px; }
.brand { font-size: clamp(1.4rem, 3vw, 2.15rem); color: white; font-weight: 950; letter-spacing: -.04em; display: flex; align-items: center; gap: .45rem; }
.brand span { font-size: 1.28em; }
.build-pill { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.24); color: white; border-radius: 999px; padding: .55rem .85rem; font-weight: 750; }
.hero-shell {
  background:
    linear-gradient(135deg, rgba(5,37,27,.96), rgba(9,91,61,.92)),
    radial-gradient(circle at 80% 10%, rgba(197,138,42,.40), transparent 22rem);
  border-radius: calc(var(--radius-lg) + 8px);
  padding: clamp(18px, 3vw, 34px);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.hero-shell::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 63%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: 22px; align-items: stretch; position: relative; z-index: 1; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 900; color: var(--gold); margin: 0 0 .65rem; }
.hero-copy h1 { font-family: Georgia, "Times New Roman", serif; color: white; font-size: clamp(2.2rem, 6vw, 5rem); line-height: .94; letter-spacing: -.055em; margin: 0; max-width: 14ch; }
.lead { color: rgba(255,255,255,.86); font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.55; max-width: 62ch; margin: 1.1rem 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.primary-upload { display: inline-flex; align-items: center; justify-content: center; background: var(--gold); color: #211706; border-radius: 999px; padding: .9rem 1.25rem; font-weight: 950; cursor: pointer; text-decoration: none; box-shadow: 0 10px 24px rgba(197, 138, 42, .22); }
.promise-card { background: rgba(255,255,255,.96); border-radius: var(--radius-lg); padding: 1.1rem; box-shadow: var(--shadow-soft); align-self: end; }
.promise-card strong { display: block; color: var(--green-900); font-size: 1.2rem; line-height: 1.2; }
.promise-card p { color: var(--muted); line-height: 1.45; }
.promise-card ul { margin: .8rem 0 0; padding-left: 1.1rem; color: var(--ink); line-height: 1.65; }

.onboarding-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 14px 0; }
.onboarding-strip article { display: flex; align-items: center; gap: .65rem; background: rgba(255,255,255,.82); border: 1px solid var(--line); border-radius: var(--radius-md); padding: .82rem; box-shadow: var(--shadow-soft); }
.onboarding-strip b { width: 2rem; height: 2rem; border-radius: 999px; display: grid; place-items: center; color: white; background: var(--green-900); flex: 0 0 auto; }
.onboarding-strip span { font-weight: 800; color: var(--green-950); font-size: .93rem; }

.tabs { display: flex; gap: .45rem; overflow-x: auto; padding: .35rem 0 .75rem; position: sticky; top: 0; z-index: 20; backdrop-filter: blur(18px); background: rgba(242,248,241,.88); scrollbar-width: thin; }
.tab { background: white; color: var(--green-900); border: 1px solid var(--line); box-shadow: none; white-space: nowrap; border-radius: 999px; padding: .72rem .95rem; }
.tab.active { background: var(--green-900); color: white; border-color: var(--green-900); }

.screen { display: none; }
.screen.active { display: block; animation: fadeUp .22s ease-out; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.workspace { display: grid; grid-template-columns: minmax(290px, 360px) minmax(0, 1fr) minmax(290px, 350px); gap: 14px; align-items: start; }
.panel { background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); overflow: hidden; }
.panel-title { background: var(--green-900); color: white; text-transform: uppercase; letter-spacing: .075em; font-size: .82rem; font-weight: 950; padding: .88rem 1rem; }
.panel-body { padding: 1rem; }
.border-top { border-top: 1px solid var(--line); }
.intake-panel, .recommendation-panel { position: sticky; top: 70px; }
.upload-drop { min-height: 290px; border: 2px dashed #b9cdb7; border-radius: var(--radius-md); display: grid; place-items: center; overflow: hidden; cursor: pointer; position: relative; background: linear-gradient(135deg, #244b35, #75a171); margin-bottom: 1rem; }
.upload-drop.dragover { border-color: var(--gold); box-shadow: var(--focus); }
.upload-drop input { display: none; }
.upload-drop img { width: 100%; height: 100%; min-height: 290px; display: none; object-fit: cover; }
.upload-drop.has-image img { display: block; }
.upload-placeholder { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 2rem; color: white; text-shadow: 0 3px 14px rgba(0,0,0,.42); background: linear-gradient(135deg, rgba(5,37,27,.45), rgba(17,115,79,.15)); }
.upload-placeholder strong { font-size: 1.35rem; display: block; }
.upload-placeholder small { display: block; margin-top: .3rem; font-weight: 700; opacity: .94; }
.upload-drop.has-image .upload-placeholder { display: none; }
.camera-button { position: absolute; right: .85rem; bottom: .85rem; width: 3.1rem; height: 3.1rem; border-radius: 999px; display: grid; place-items: center; background: var(--green-900); color: white; font-size: 1.45rem; box-shadow: 0 8px 24px rgba(0,0,0,.28); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.field { display: grid; gap: .38rem; font-weight: 850; color: var(--green-950); font-size: .92rem; margin-bottom: .75rem; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; padding: .82rem .85rem; color: var(--ink); resize: vertical; min-height: 44px; }
.field textarea { line-height: 1.45; }
.button-row { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }
.sticky-actions { margin-top: .55rem; }
.progress-card { margin-top: 1rem; border: 1px solid var(--line); background: var(--green-050); border-radius: var(--radius-md); padding: .9rem; }
.progress-top { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .55rem; color: var(--green-900); }
.progress-bar { height: .72rem; border-radius: 999px; overflow: hidden; background: #dfeade; }
.progress-bar div { height: 100%; width: 0%; border-radius: inherit; background: linear-gradient(90deg, var(--green-700), var(--gold)); transition: width .28s ease; }
.progress-card p { margin: .65rem 0 0; color: var(--muted); line-height: 1.45; }

.main-stage { display: grid; gap: 14px; }
.stage-title-block { background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.05rem 1.15rem; }
.stage-title-block h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.9rem, 4vw, 3rem); color: var(--green-900); margin: 0; letter-spacing: -.045em; }
.stage-title-block p:last-child { color: var(--muted); margin: .35rem 0 0; line-height: 1.45; }
.insight-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.insight-grid h3, .recommendation-panel h3 { color: var(--green-900); margin: 0 0 .65rem; }
.dna-list, .compass-list { display: grid; gap: .55rem; }
.dna-row, .compass-row { display: grid; grid-template-columns: 105px minmax(0, 1fr) 42px; gap: .6rem; align-items: center; font-size: .88rem; }
.meter { height: .52rem; background: #dde9dc; border-radius: 999px; overflow: hidden; }
.meter span { display: block; height: 100%; width: var(--w); background: linear-gradient(90deg, var(--green-700), var(--gold)); border-radius: inherit; }
.notice-list { margin: 0; padding-left: 1.1rem; color: var(--ink); line-height: 1.5; }
.warning-box { background: var(--gold-soft); border-left: 5px solid var(--gold); padding: .8rem; border-radius: var(--radius-sm); margin: 0; line-height: 1.45; }
.future-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.future-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); cursor: pointer; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.future-card:hover { transform: translateY(-2px); }
.future-card.active { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(197,138,42,.22), var(--shadow-soft); }
.future-head { color: white; padding: .9rem; min-height: 86px; display: flex; align-items: center; gap: .7rem; background: var(--future-color, var(--green-800)); }
.future-head i { font-style: normal; font-size: 2rem; line-height: 1; }
.future-head b { display: block; line-height: 1.1; }
.future-head small { display: block; opacity: .90; margin-top: .2rem; line-height: 1.25; }
.future-visual, .compare-image { min-height: 210px; position: relative; background: linear-gradient(135deg, #dbe8d8, #aac7a3); background-position: center; background-size: cover; overflow: hidden; }
.future-visual::after, .future-overlay-preview::after { content: ""; position: absolute; inset: 0; background: var(--overlay-tint, rgba(7,63,45,.2)); mix-blend-mode: multiply; pointer-events: none; }
.future-visual.no-photo::before, .compare-image.no-photo::before { content: "Upload a photo to see overlays"; position: absolute; inset: 0; display: grid; place-items: center; padding: 1rem; text-align: center; color: white; font-weight: 950; text-shadow: 0 2px 10px rgba(0,0,0,.45); background: linear-gradient(135deg, rgba(5,37,27,.74), rgba(17,115,79,.52)); z-index: 1; }
.overlay-zone { position: absolute; z-index: 3; border: 2px solid rgba(255,255,255,.88); border-radius: 999px; background: rgba(255,255,255,.18); box-shadow: 0 0 0 999px rgba(5,37,27,.02); backdrop-filter: blur(1px); }
.overlay-zone.zone-a { width: 52%; height: 28%; left: 9%; bottom: 14%; transform: rotate(-7deg); }
.overlay-zone.zone-b { width: 30%; height: 38%; right: 10%; bottom: 24%; transform: rotate(8deg); }
.overlay-zone.zone-c { width: 44%; height: 18%; left: 28%; top: 14%; transform: rotate(3deg); }
.overlay-label { position: absolute; z-index: 4; max-width: 13rem; color: white; background: rgba(5,37,27,.86); border: 1px solid rgba(255,255,255,.24); border-radius: 999px; padding: .45rem .65rem; font-size: .78rem; font-weight: 900; line-height: 1.2; box-shadow: 0 10px 24px rgba(0,0,0,.22); }
.overlay-label.label-a { left: 8%; bottom: 11%; }
.overlay-label.label-b { right: 8%; top: 34%; }
.overlay-label.label-c { left: 25%; top: 10%; }
.future-body { padding: .95rem; }
.future-body p { color: var(--muted); line-height: 1.45; margin: 0 0 .8rem; }
.future-tags { display: flex; gap: .35rem; flex-wrap: wrap; }
.tag { background: var(--green-100); color: var(--green-900); border: 1px solid #d2e5d1; border-radius: 999px; padding: .28rem .52rem; font-size: .76rem; font-weight: 850; }
.lower-grid, .compare-grid, .design-grid, .export-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.compare-grid { grid-template-columns: 1fr 1fr 340px; }
.report-panel pre, .full-report { white-space: pre-wrap; word-break: break-word; background: #fbfdf9; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1rem; line-height: 1.5; min-height: 220px; max-height: 520px; overflow: auto; }
.next-steps ol { margin: 0; padding-left: 1.25rem; line-height: 1.65; }
.recommendation-box { border: 1px solid var(--line); background: linear-gradient(180deg, #fbfff8, #fff); border-radius: var(--radius-md); padding: 1rem; }
.recommendation-icon { width: 3.4rem; height: 3.4rem; display: grid; place-items: center; border-radius: 999px; background: var(--green-100); margin-bottom: .65rem; font-size: 1.6rem; }
.recommendation-box h2 { margin: 0 0 .65rem; color: var(--green-900); font-family: Georgia, "Times New Roman", serif; letter-spacing: -.03em; }
.recommendation-box p, .oracle { color: var(--muted); line-height: 1.5; }
.oracle { font-style: italic; margin-bottom: 0; }
.compare-image { min-height: 520px; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.score-item, .readiness-item, .health-item, .dashboard-card, .saved-card, .vision-card { border: 1px solid var(--line); background: #fff; border-radius: var(--radius-md); padding: .9rem; }
.score-item + .score-item, .readiness-item + .readiness-item, .health-item + .health-item, .saved-card + .saved-card { margin-top: .65rem; }
.movie-strip, .plant-grid, .dashboard-grid, .health-list, .vision-grid, .calendar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.movie-card, .plant-card, .dashboard-card, .vision-card, .calendar-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: .95rem; background: #fff; min-height: 100px; }
.movie-card b, .plant-card b, .dashboard-card b { color: var(--green-900); }
.movie-card small, .plant-card small, .dashboard-card small, .vision-card small { display: block; color: var(--muted); margin-top: .35rem; line-height: 1.45; }
.action-roadmap-grid { display: grid; gap: .75rem; }
.action-step { border: 1px solid var(--line); border-left: 6px solid var(--green-700); border-radius: var(--radius-md); background: #fff; padding: .9rem; }
.action-step b { color: var(--green-900); }
.control-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; margin: 1rem 0; }
.control-grid label { display: flex; gap: .55rem; align-items: center; background: var(--green-050); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .75rem; font-weight: 800; }
.control-grid input { width: auto; }
.prose { line-height: 1.6; }
table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--radius-sm); }
th, td { text-align: left; border-bottom: 1px solid var(--line); padding: .75rem; vertical-align: top; }
th { background: var(--green-050); color: var(--green-900); }
.timeline-list { line-height: 1.7; }
.saved-card { display: grid; gap: .55rem; }
.saved-card .button-row { margin-top: .4rem; }
.toast { position: fixed; z-index: 100; right: 1rem; bottom: 1rem; background: var(--green-900); color: white; border-radius: 999px; padding: .78rem 1rem; font-weight: 900; box-shadow: var(--shadow); opacity: 0; transform: translateY(1rem); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1240px) {
  .workspace { grid-template-columns: minmax(280px, 360px) minmax(0, 1fr); }
  .recommendation-panel { position: static; grid-column: 1 / -1; }
  .future-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compare-grid { grid-template-columns: 1fr 1fr; }
  .compare-grid > .panel:last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .app { padding: 10px; }
  .hero-grid, .workspace, .lower-grid, .compare-grid, .design-grid, .export-grid, .insight-grid { grid-template-columns: 1fr; }
  .onboarding-strip { grid-template-columns: repeat(2, 1fr); }
  .intake-panel, .recommendation-panel { position: static; }
  .future-grid { grid-template-columns: 1fr; }
  .field-grid, .control-grid { grid-template-columns: 1fr; }
  .compare-image { min-height: 360px; }
  .tabs { top: 0; margin-inline: -10px; padding-inline: 10px; }
  .hero-copy h1 { max-width: 11ch; }
  .promise-card { align-self: stretch; }
}

@media (max-width: 520px) {
  .hero-shell { border-radius: 22px; }
  .utility-bar { align-items: flex-start; }
  .build-pill { font-size: .78rem; }
  .onboarding-strip { grid-template-columns: 1fr; }
  .button-row, .hero-actions { flex-direction: column; align-items: stretch; }
  button, .primary-upload { width: 100%; }
  .upload-drop, .upload-drop img { min-height: 245px; }
  .future-visual { min-height: 240px; }
  .panel-title { font-size: .76rem; }
}

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

/* v2.3 tester-first polish */
.quick-start-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin: 0 0 14px;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(245,250,244,.94));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.quick-start-card h2 { margin: 0; color: var(--green-900); font-family: Georgia, "Times New Roman", serif; letter-spacing: -.03em; font-size: clamp(1.45rem, 3vw, 2.2rem); }
.quick-start-card p { margin: .4rem 0 0; color: var(--muted); line-height: 1.45; }
.quick-start-steps { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .45rem; }
.quick-start-steps span, .clue-pills span, .overlay-legend span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: .38rem .65rem;
  font-weight: 850;
  color: var(--green-900);
  font-size: .84rem;
}
.mini-readiness { margin-top: .75rem; border: 1px solid #cfe1cc; background: #fbfff8; border-radius: var(--radius-md); padding: .82rem; }
.mini-readiness b { color: var(--green-900); }
.mini-readiness p { margin: .25rem 0 0; color: var(--muted); line-height: 1.45; }
.analysis-brief { margin-top: .8rem; display: inline-flex; max-width: 100%; border: 1px solid #d8e7d5; background: #fbfff8; color: var(--green-900); border-radius: 999px; padding: .52rem .75rem; font-weight: 900; line-height: 1.25; }
.insight-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.clue-pills { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .65rem; }
.specificity-text { color: var(--muted); line-height: 1.45; margin: 0; }
.notice-list.compact { font-size: .9rem; margin-bottom: 1rem; }
.first-move-banner { border: 1px solid #d8e7d5; border-left: 7px solid var(--gold); background: linear-gradient(135deg, #fffdf6, #fbfff8); border-radius: var(--radius-lg); padding: 1rem; box-shadow: var(--shadow-soft); }
.first-move-banner b { display: block; color: var(--green-900); text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; margin-bottom: .25rem; }
.first-move-banner p { margin: 0; color: var(--ink); line-height: 1.45; font-size: 1.02rem; font-weight: 760; }
.overlay-badge { position: absolute; z-index: 5; top: .6rem; left: .6rem; border-radius: 999px; padding: .32rem .52rem; background: rgba(255,255,255,.88); color: var(--green-900); font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 950; box-shadow: 0 8px 18px rgba(0,0,0,.16); }
.overlay-line { position: absolute; z-index: 4; width: 42%; height: 2px; left: 31%; top: 50%; background: rgba(255,255,255,.92); box-shadow: 0 2px 12px rgba(0,0,0,.32); transform: rotate(-12deg); transform-origin: center; }
.overlay-label.label-d { right: 10%; bottom: 8%; background: rgba(197,138,42,.92); color: #1f1607; }
.overlay-caption { color: var(--muted); font-size: .78rem; font-weight: 850; margin: -.35rem 0 .7rem; }
.overlay-legend { display: flex; flex-wrap: wrap; gap: .45rem; padding: .75rem; border-top: 1px solid var(--line); background: #fbfff8; }
.risk-list { display: grid; gap: .65rem; }
.risk-item { border: 1px solid var(--line); border-left: 5px solid var(--gold); background: #fff; border-radius: var(--radius-md); padding: .85rem; line-height: 1.45; }

/* v2.3 overlay geometry variants: still abstract, but less same-same. */
.overlay-gathering .zone-a { width: 45%; height: 34%; left: 18%; bottom: 18%; transform: rotate(2deg); }
.overlay-gathering .zone-b { width: 25%; height: 25%; right: 13%; bottom: 23%; }
.overlay-gathering .zone-c { width: 36%; left: 34%; top: 15%; }
.overlay-wildlife .zone-a { width: 36%; height: 62%; left: 5%; bottom: 10%; transform: rotate(-3deg); }
.overlay-wildlife .zone-b { width: 30%; height: 48%; right: 7%; bottom: 12%; }
.overlay-wildlife .zone-c { width: 50%; height: 16%; left: 25%; top: 12%; }
.overlay-minimal .zone-a { width: 70%; height: 20%; left: 12%; bottom: 16%; transform: rotate(-2deg); }
.overlay-minimal .zone-b { width: 18%; height: 52%; right: 10%; bottom: 22%; }
.overlay-minimal .zone-c { width: 42%; height: 14%; left: 10%; top: 17%; }
.overlay-maker .zone-a { width: 46%; height: 38%; left: 8%; bottom: 16%; }
.overlay-maker .zone-b { width: 30%; height: 28%; right: 8%; bottom: 12%; }
.overlay-maker .zone-c { width: 46%; height: 15%; left: 32%; top: 17%; }
.overlay-productive .zone-a { width: 52%; height: 26%; left: 11%; bottom: 20%; transform: rotate(-5deg); }
.overlay-productive .zone-b { width: 25%; height: 30%; right: 10%; bottom: 14%; }
.overlay-belonging .zone-a { width: 40%; height: 30%; left: 10%; bottom: 18%; }
.overlay-belonging .zone-b { width: 28%; height: 42%; right: 12%; bottom: 18%; }
.constraint-privacy-gap .zone-b, .constraint-messy-edge .zone-b { height: 58%; top: 17%; bottom: auto; }
.constraint-access-awkward .overlay-line { width: 62%; left: 18%; top: 58%; transform: rotate(3deg); }
.constraint-water-risk .overlay-line { width: 58%; left: 21%; top: 62%; transform: rotate(9deg); background: rgba(145,214,255,.95); }

@media (max-width: 1240px) {
  .insight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .quick-start-card { grid-template-columns: 1fr; }
  .quick-start-steps { justify-content: flex-start; }
  .analysis-brief { border-radius: var(--radius-md); }
  .insight-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .quick-start-steps span, .clue-pills span, .overlay-legend span { width: 100%; justify-content: center; }
  .overlay-label { max-width: 10.5rem; font-size: .72rem; }
  .overlay-label.label-b { right: .55rem; }
  .overlay-label.label-c { left: .55rem; top: 3.4rem; }
  .overlay-label.label-d { right: .55rem; bottom: .55rem; }
}
