:root {
  --bg: #fdfbf6;
  --bg-2: #f3efe7;
  --fg: #121418;
  --fg-2: #42464b;
  --muted: #888a85;
  --muted-2: #c9c5bb;
  --rule: rgba(18, 20, 24, 0.11);
  --rule-strong: rgba(18, 20, 24, 0.25);
  --accent: #e25822;
  --accent-dark: #bd4214;
  --accent-rgb: 226, 88, 34;
  --ok: #648f4f;
  --ok-rgb: 100, 143, 79;
  --panel: rgba(253, 251, 246, 0.93);
  color-scheme: light;
}

html[data-mode="dark"] {
  --bg: #0a0b0d;
  --bg-2: #111316;
  --fg: #eae7df;
  --fg-2: #c9c5bb;
  --muted: #747770;
  --muted-2: #474a45;
  --rule: rgba(234, 231, 223, 0.13);
  --rule-strong: rgba(234, 231, 223, 0.29);
  --ok: #a8d484;
  --panel: rgba(10, 11, 13, 0.92);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  transition: background-color 0.45s ease, color 0.45s ease;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img, svg, canvas { display: block; max-width: 100%; }
.shell { width: min(1640px, 100%); margin: 0 auto; padding-inline: 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; clip: rect(0,0,0,0); overflow: hidden; white-space: nowrap; border: 0; }

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid var(--rule);
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: blur(10px);
}
.nav-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  display: block;
  width: 64px;
  height: 24px;
  background: var(--fg);
  -webkit-mask: url("/data/dobu-logo.png") center / contain no-repeat;
  mask: url("/data/dobu-logo.png") center / contain no-repeat;
}
.nav-links { display: flex; height: 100%; align-items: stretch; gap: 32px; font-size: 13px; color: var(--fg-2); }
.nav-link, .nav-action { display: flex; height: 100%; align-items: center; margin-inline: -16px; padding-inline: 16px; }
.nav-link:hover { color: var(--fg); }
.nav-products { position: relative; display: inline-flex; height: 100%; align-items: center; margin-inline: -16px; padding-inline: 16px; }
.nav-products-trigger { display: inline-flex; align-items: center; gap: 6px; padding: 0; border: 0; background: transparent; color: var(--fg-2); font-size: 13px; line-height: 1; cursor: pointer; transition: color .15s; }
.nav-products-trigger:hover, .nav-products[data-open="true"] .nav-products-trigger { color: var(--fg); }
.nav-products-trigger .caret { width: 7px; height: 7px; border-right: 1.25px solid currentColor; border-bottom: 1.25px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s cubic-bezier(.22,.6,.2,1); }
.nav-products[data-open="true"] .nav-products-trigger .caret { transform: translateY(1px) rotate(-135deg); }
.nav-products-pop { position: absolute; top: calc(100% + 14px); left: 50%; z-index: 60; width: min(720px, calc(100vw - 32px)); padding: 10px; border: 1px solid var(--rule-strong); border-radius: 14px; background: var(--bg); box-shadow: 0 24px 60px -12px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.06); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%,-4px); transition: opacity .18s ease, transform .22s cubic-bezier(.22,.6,.2,1), visibility .22s; }
html[data-mode="dark"] .nav-products-pop { box-shadow: 0 24px 60px -12px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.35); }
.nav-products[data-open="true"] .nav-products-pop { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%,0); }
.nav-products-pop::before { content: ""; position: absolute; top: -6px; left: 50%; width: 11px; height: 11px; border-top: 1px solid var(--rule-strong); border-left: 1px solid var(--rule-strong); background: var(--bg); transform: translateX(-50%) rotate(45deg); }
.nav-products-grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
.nav-product { position: relative; display: block; padding: 16px 18px; border-radius: 10px; color: var(--fg); transition: background .15s; }
.nav-product:hover { background: var(--bg-2); }
.nav-product .np-name { color: var(--fg); font-size: 15px; font-weight: 500; line-height: 1.2; letter-spacing: -.01em; }
.nav-product .np-desc { max-width: 60ch; margin-top: 4px; color: var(--fg-2); font-size: 12.5px; font-weight: 400; line-height: 1.4; }
.nav-product.is-current { background: rgba(var(--accent-rgb),.06); box-shadow: inset 2px 0 0 var(--accent); cursor: default; }
.nav-product.is-current:hover { background: rgba(var(--accent-rgb),.08); }
.nav-product.is-current .np-name { color: var(--accent); }
.np-tm { margin-left: 1px; color: var(--muted); font-size: .55em; font-weight: 400; letter-spacing: 0; vertical-align: super; }
.nav-action { font-weight: 500; letter-spacing: .005em; white-space: nowrap; }
.nav-cta {
  display: inline-flex;
  border: 1px solid var(--accent);
  border-radius: 14px;
  color: var(--fg-2);
  padding: 9px 18px;
  transition: background .15s, color .15s;
}
.nav-action:hover .nav-cta { color: white; background: var(--accent); }
.mobile-nav-cta { padding: 9px 18px; border: 1px solid var(--accent); border-radius: 14px; color: var(--fg-2); font-size: 13px; font-weight: 500; letter-spacing: .005em; white-space: nowrap; transition: background .15s, color .15s; }
.mobile-nav-cta:hover { color: white; background: var(--accent); }
.market-select { position: relative; align-self: center; color: var(--fg-2); }
.market-select summary { display: inline-flex; align-items: center; gap: 6px; min-height: 36px; padding: 0 4px; list-style: none; font-size: 13px; font-weight: 400; line-height: 1; cursor: pointer; transition: color .15s; }
.market-select summary::-webkit-details-marker { display: none; }
.market-select summary:hover, .market-select[open] summary { color: var(--fg); }
.market-caret { width: 7px; height: 7px; border-right: 1.25px solid currentColor; border-bottom: 1.25px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s cubic-bezier(.22,.6,.2,1); }
.market-select[open] .market-caret { transform: translateY(1px) rotate(-135deg); }
.market-menu { position: absolute; top: calc(100% + 9px); right: 0; z-index: 80; width: 154px; padding: 6px; border: 1px solid var(--rule-strong); border-radius: 12px; background: var(--bg); box-shadow: 0 18px 44px -12px rgba(0,0,0,.2), 0 2px 8px rgba(0,0,0,.06); }
.market-menu a { display: flex; align-items: center; justify-content: space-between; min-height: 38px; padding: 0 10px; border-radius: 8px; color: var(--fg-2); font-size: 13px; transition: background .15s, color .15s; }
.market-menu a:hover { background: var(--bg-2); color: var(--fg); }
.market-menu a[aria-current="page"] { background: rgba(var(--accent-rgb),.06); color: var(--accent); }
.market-menu small { color: var(--muted); font-size: 10px; font-weight: 500; letter-spacing: .08em; }
.home-toggle { --size: 51px; position: relative; display: grid; width: var(--size); height: var(--size); flex: none; align-self: center; place-items: center; padding: 0; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.home-toggle::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--bg-2); opacity: 0; transition: opacity .2s; }
html[data-mode="dark"] .home-toggle::before { background: rgba(234,231,223,.06); }
.home-toggle:hover { transform: translateY(-1px); }
.home-toggle:hover::before { opacity: 1; }
.home-toggle:active { transform: translateY(0); }
.home-toggle:focus-visible { outline: none; }
.home-toggle:focus-visible::before { opacity: 1; box-shadow: 0 0 0 2px var(--accent); }
.home-toggle canvas { position: relative; width: 100%; height: 100%; }
.nav-mobile { display: none; align-items: center; gap: 12px; }
.menu-toggle { width: 40px; height: 40px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle i { display: block; height: 1.5px; margin: 4px 0; border-radius: 2px; background: currentColor; transition: .2s; }
.menu-toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] i:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-sheet { padding: 14px 16px 18px; border-top: 1px solid var(--rule); background: var(--bg); }
.mobile-sheet-label { display: block; padding: 0 8px 7px; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.mobile-product { display: block; padding: 12px; border-radius: 10px; }
.mobile-product:hover { background: var(--bg-2); }
.mobile-product strong { display: block; color: var(--fg); font-size: 15px; font-weight: 500; }
.mobile-product small { display: block; max-width: 52ch; margin-top: 4px; color: var(--fg-2); font-size: 12.5px; line-height: 1.4; }
.mobile-product.is-current { background: rgba(var(--accent-rgb),.06); box-shadow: inset 2px 0 0 var(--accent); }
.mobile-product.is-current strong { color: var(--accent); }
.mobile-country { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 10px; padding: 12px 8px; border-top: 1px solid var(--rule); }
.mobile-country > span { color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.mobile-sheet-login { display: block; margin-top: 10px; padding: 12px 8px 4px; border-top: 1px solid var(--rule); color: var(--fg); font-size: 15px; font-weight: 500; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 112px 0 62px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 38%, rgba(var(--accent-rgb), .09), transparent 26%),
    linear-gradient(90deg, var(--bg) 0 44%, color-mix(in srgb, var(--bg) 80%, transparent) 63%, transparent 100%);
}
.hero-grid-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; opacity: .82; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); gap: clamp(44px, 6vw, 104px); align-items: center; }
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 13px;
  margin-bottom: 30px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  color: var(--muted);
  font-size: 12px;
}
.live-pill b { color: var(--fg); font-weight: 500; }
.pulse { position: relative; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }
.pulse::after { content: ""; position: absolute; inset: -4px; border: 1px solid var(--accent); border-radius: 50%; animation: ping 2.2s ease-out infinite; }
@keyframes ping { 0% { transform: scale(.65); opacity: .9; } 80%, 100% { transform: scale(1.8); opacity: 0; } }
h1, h2 { margin: 0; font-weight: 500; letter-spacing: -.05em; line-height: .94; text-wrap: balance; }
.hero h1 { font-size: clamp(54px, 6.35vw, 108px); max-width: 12ch; }
em { color: var(--accent); font-style: normal; }
.lede { margin: 0; color: var(--fg-2); font-size: clamp(17px, 1.35vw, 21px); line-height: 1.5; letter-spacing: -.01em; max-width: 53ch; }
.hero .lede { margin-top: 34px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 25px;
  border: 1px solid var(--accent);
  border-radius: 14px;
  background: var(--accent);
  color: white;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .005em;
  cursor: pointer;
  transition: transform .16s, background .16s, border-color .16s;
}
.btn:hover { transform: translateY(-1px); background: var(--accent-dark); border-color: var(--accent-dark); }
.btn.ghost { background: transparent; color: var(--fg); border-color: var(--rule-strong); }
.btn.ghost:hover { border-color: var(--fg); background: transparent; }

.panel { border: 1px solid var(--rule-strong); border-radius: 16px; background: var(--panel); box-shadow: 0 32px 100px -48px rgba(0,0,0,.55); overflow: hidden; }
.panel-bar { min-height: 52px; padding: 13px 17px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--rule); color: var(--fg-2); font-size: 12.5px; }
.panel-bar b { display: inline-flex; align-items: center; gap: 7px; color: var(--ok); font-weight: 500; white-space: nowrap; }
.panel-bar b .pulse { width: 6px; height: 6px; background: var(--ok); }
.panel-bar b .pulse::after { border-color: var(--ok); }
.spotlight-card { min-height: 470px; padding: 22px; }
.spotlight-offer { animation: slideUp .45s cubic-bezier(.2,.7,.2,1); }
@keyframes slideUp { from { opacity: 0; transform: translateY(7px); } }
.offer-source-row { display: flex; align-items: center; gap: 11px; }
.source-glyph { width: 38px; height: 38px; display: grid; place-items: center; flex: none; border-radius: 11px; background: var(--fg); color: var(--bg); font-weight: 600; font-size: 11px; text-transform: uppercase; }
.entity-logo { width: 38px; height: 38px; display: inline-grid; flex: none; place-items: center; overflow: hidden; border: 1px solid var(--rule); border-radius: 11px; vertical-align: middle; }
.entity-logo img { width: 78%; height: 78%; object-fit: contain; }
.entity-logo.fallback img { width: 100%; height: 100%; }
.entity-logo.inline-logo { width: 17px; height: 17px; border-radius: 5px; }
.source-copy { min-width: 0; }
.source-copy small { display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.offer-source-row strong { display: block; font-size: 14px; font-weight: 600; letter-spacing: -.01em; }
.offer-source-row small { color: var(--muted); font-size: 11.5px; }
.source-chip { margin-left: auto; padding: 5px 9px; border: 1px solid var(--rule); border-radius: 999px; color: var(--fg-2); font-size: 10.5px; white-space: nowrap; }
.spotlight-kicker { margin-top: 24px; color: var(--muted); font-size: 10.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.spotlight-value { margin-top: 8px; color: var(--accent); font-size: clamp(34px, 3.1vw, 50px); font-weight: 600; letter-spacing: -.045em; line-height: 1.02; }
.spotlight-desc { margin: 13px 0 20px; min-height: 3em; color: var(--fg-2); font-size: 15px; line-height: 1.48; }
.spotlight-image { position: relative; height: 220px; border: 1px solid var(--rule); border-radius: 11px; overflow: hidden; background: white; }
.spotlight-image img { width: 100%; height: 100%; object-fit: contain; }
.spotlight-image.image-error { display: grid; place-items: center; padding: 20px; background: var(--bg-2); color: var(--muted); font-size: 12px; text-align: center; }
.insight-visual { height: 220px; border: 1px solid var(--rule); border-radius: 11px; overflow: hidden; background: var(--bg-2); }
.price-change-visual { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; position: relative; padding: 30px; }
.price-change-visual div { min-width: 0; }
.price-change-visual span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; }
.price-change-visual strong { display: block; font-size: clamp(23px, 2.2vw, 34px); line-height: 1; letter-spacing: -.035em; white-space: nowrap; }
.price-change-visual .current strong { color: var(--accent); }
.price-change-visual .price-arrow { margin: 0; color: var(--muted-2); font-size: 32px; }
.price-change-visual > b { position: absolute; right: 18px; top: 17px; padding: 5px 8px; border-radius: 999px; color: var(--accent); background: rgba(var(--accent-rgb), .08); font-size: 11px; }
.market-compare-visual { display: flex; flex-direction: column; justify-content: center; gap: 28px; padding: 30px; }
.market-compare-visual > div > span { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 9px; }
.market-compare-visual b { font-size: 13px; }
.market-compare-visual strong { color: var(--fg-2); font-size: 16px; font-weight: 550; }
.market-compare-visual div > i { display: block; height: 9px; border-radius: 99px; background: var(--rule); overflow: hidden; }
.market-compare-visual em { display: block; height: 100%; border-radius: inherit; background: var(--fg); }
.market-compare-visual > div:first-child em { background: var(--accent); }
.availability-visual { display: flex; flex-direction: column; justify-content: center; gap: 34px; padding: 30px; }
.availability-track { display: flex; width: 100%; height: 28px; border-radius: 99px; overflow: hidden; background: var(--rule); }
.availability-track i { height: 100%; }
.availability-track .available, .availability-legend i.available { background: var(--accent); }
.availability-track .reserved, .availability-legend i.reserved { background: var(--ok); }
.availability-track .sold, .availability-legend i.sold { background: var(--rule-strong); }
.availability-legend { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.availability-legend span { display: grid; grid-template-columns: 8px 1fr; align-items: center; column-gap: 7px; color: var(--muted); font-size: 10.5px; }
.availability-legend span > i { width: 8px; height: 8px; border-radius: 50%; grid-row: 1 / span 2; }
.availability-legend b { display: block; color: var(--fg); font-size: 22px; line-height: 1; font-weight: 550; }
.spotlight-link { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--rule); color: var(--muted); font-size: 11.5px; }
.spotlight-link:hover { color: var(--accent); }
.spotlight-link span:first-child { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.spotlight-dots { display: flex; gap: 7px; padding: 0 22px 18px; }
.spotlight-dots button { width: 23px; height: 3px; padding: 0; border: 0; border-radius: 9px; background: var(--rule-strong); cursor: pointer; }
.spotlight-dots button.active { background: var(--accent); }
.skeleton { height: 74px; margin: 12px; border-radius: 10px; background: linear-gradient(90deg, var(--bg-2), color-mix(in srgb, var(--bg-2) 45%, var(--rule)), var(--bg-2)); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; }
.skeleton.tall { height: 390px; margin: 0; }
@keyframes shimmer { to { background-position: -200% 0; } }

section { position: relative; padding: 142px 0; }
.statement { padding: 124px 0 68px; }
.statement p { margin: 0 auto; max-width: 22ch; text-align: center; font-size: clamp(42px, 7.2vw, 112px); line-height: .96; letter-spacing: -.055em; }
.statement p span { color: var(--muted-2); }
.market-strip { padding: 70px 0 130px; }
.market-lead { max-width: 32ch; margin: 0 0 56px; font-size: clamp(27px, 4vw, 58px); line-height: 1.02; letter-spacing: -.04em; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--rule-strong); border-bottom: 1px solid var(--rule-strong); }
.metric-grid article { min-height: 180px; padding: 20px 24px 22px 0; border-right: 1px solid var(--rule); display: flex; flex-direction: column; }
.metric-grid article:not(:first-child) { padding-left: 24px; }
.metric-grid article:last-child { border-right: 0; }
.metric-grid span { color: var(--fg-2); font-size: 13px; }
.metric-grid strong { margin-top: auto; font-size: clamp(42px, 4.4vw, 70px); line-height: 1; letter-spacing: -.05em; font-weight: 500; font-variant-numeric: tabular-nums; }
.metric-grid article:nth-child(2) strong { color: var(--accent); }
.metric-grid small { color: var(--muted); font-size: 11.5px; }

.rule { border-top: 1px solid var(--rule); }
.feature-grid { display: grid; grid-template-columns: minmax(320px, .72fr) minmax(520px, 1.28fr); gap: clamp(52px, 8vw, 126px); align-items: center; }
.feature-grid.reverse { grid-template-columns: minmax(520px, 1.28fr) minmax(320px, .72fr); }
.feature-grid.reverse .feature-copy { order: 2; }
.eyebrow { display: block; margin-bottom: 20px; color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.feature-copy h2, .coverage-head h2, .freshness h2, .cta h2 { font-size: clamp(40px, 5.2vw, 82px); }
.feature-copy .lede { margin-top: 28px; font-size: 17px; }
.feature-list { list-style: none; margin: 30px 0 0; padding: 0; border-top: 1px solid var(--rule); }
.feature-list li { display: grid; grid-template-columns: 44px 1fr; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--rule); color: var(--fg-2); font-size: 13px; }
.feature-list b { color: var(--accent); font-weight: 500; }
.offer-tabs { display: flex; gap: 6px; padding: 12px 14px; overflow-x: auto; border-bottom: 1px solid var(--rule); }
.offer-tabs button { padding: 7px 11px; border: 1px solid var(--rule); border-radius: 999px; background: transparent; color: var(--muted); font-size: 11.5px; cursor: pointer; white-space: nowrap; }
.offer-tabs button.active { color: white; background: var(--accent); border-color: var(--accent); }
.offer-feed { height: 570px; padding: 0 14px 14px; overflow: hidden; }
.feed-item { display: grid; grid-template-columns: 40px minmax(0, 1fr) auto; gap: 12px; align-items: start; padding: 15px 4px; border-bottom: 1px solid var(--rule); animation: slideUp .35s ease; }
.feed-item .source-glyph { width: 36px; height: 36px; border-radius: 10px; }
.feed-item .feed-logo { width: 36px; height: 36px; border-radius: 10px; }
.feed-item strong { display: block; font-size: 13.5px; font-weight: 600; letter-spacing: -.01em; }
.feed-builder { display: flex; align-items: center; gap: 5px; width: max-content; max-width: 100%; margin-top: 3px; color: var(--muted); font-size: 10.5px; }
.feed-item p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 3px 0 5px; color: var(--fg-2); font-size: 12.5px; line-height: 1.4; }
.feed-meta { color: var(--muted); font-size: 10.5px; }
.feed-value { color: var(--accent); font-size: 12px; font-weight: 600; max-width: 110px; text-align: right; }
.feed-badge { display: inline-block; margin-top: 5px; padding: 3px 7px; border-radius: 999px; background: rgba(var(--accent-rgb), .08); color: var(--accent); font-size: 9.5px; }

.chart-panel { min-width: 0; }
.chart-bar small { display: block; color: var(--muted); font-size: 10px; font-weight: 400; }
.chart-bar select { max-width: 190px; padding: 8px 29px 8px 11px; border: 1px solid var(--rule); border-radius: 9px; background: var(--bg); color: var(--fg); font-size: 11px; }
.chart-wrap { position: relative; height: 500px; padding: 12px; }
.chart-wrap canvas { width: 100%; height: 100%; }
.chart-tooltip, .map-tooltip { position: absolute; z-index: 4; max-width: 260px; padding: 10px 12px; border: 1px solid var(--rule-strong); border-radius: 10px; background: var(--bg); box-shadow: 0 12px 32px rgba(0,0,0,.16); color: var(--fg-2); font-size: 11.5px; pointer-events: none; }
.chart-tooltip strong, .map-tooltip strong { display: block; color: var(--fg); font-size: 12.5px; }
.tooltip-identity { display: flex; align-items: center; gap: 9px; }
.tooltip-identity .tooltip-logo { width: 30px; height: 30px; border-radius: 8px; }
.chart-summary { display: flex; gap: 24px; padding: 13px 17px; border-top: 1px solid var(--rule); color: var(--muted); font-size: 11px; }
.chart-summary b { color: var(--fg); font-weight: 500; }

.coverage-head { display: grid; grid-template-columns: 1.35fr .65fr; gap: 60px; align-items: end; margin-bottom: 70px; }
.coverage-head .eyebrow { grid-column: 1 / -1; margin-bottom: -35px; }
.coverage-head .lede { font-size: 17px; }
.map-grid { display: grid; grid-template-columns: minmax(0, 1fr); min-height: 680px; }
.map-stage { position: relative; min-height: 680px; overflow: hidden; background: radial-gradient(circle at 52% 48%, rgba(var(--accent-rgb), .06), transparent 42%), linear-gradient(145deg, color-mix(in srgb, var(--bg-2) 78%, transparent), transparent 68%); }
#estoniaMap { width: 100%; height: 100%; overflow: visible; }
.county-depth { fill: color-mix(in srgb, var(--muted-2) 58%, var(--bg)); stroke: color-mix(in srgb, var(--rule-strong) 66%, transparent); stroke-width: .85; vector-effect: non-scaling-stroke; pointer-events: none; }
.county-shape { fill: color-mix(in srgb, var(--bg) 94%, var(--accent)); stroke: var(--rule-strong); stroke-width: 1; vector-effect: non-scaling-stroke; }
.inventory-prism { cursor: default; outline: none; filter: drop-shadow(4px 6px 4px rgba(45,28,18,.14)); }
.prism-shadow { fill: rgba(18,20,24,.13); }
.prism-front { fill: color-mix(in srgb, var(--accent) 84%, var(--bg)); stroke: color-mix(in srgb, var(--accent-dark) 66%, transparent); stroke-width: .7; }
.prism-side { fill: color-mix(in srgb, var(--accent-dark) 78%, var(--fg)); stroke: color-mix(in srgb, var(--accent-dark) 72%, transparent); stroke-width: .7; }
.prism-top { fill: color-mix(in srgb, var(--accent) 54%, white); stroke: var(--accent-dark); stroke-width: .75; }
.inventory-prism:hover .prism-front, .inventory-prism:focus .prism-front { filter: brightness(1.08) saturate(1.08); }
.inventory-prism:hover .prism-top, .inventory-prism:focus .prism-top { stroke-width: 1.4; }
.national-listing-dot { fill: var(--accent-dark); opacity: .18; pointer-events: none; }
.supply-value, .supply-county { text-anchor: middle; paint-order: stroke; stroke: var(--bg); stroke-linejoin: round; pointer-events: none; }
.supply-value { fill: var(--fg); stroke-width: 6px; font-size: 14px; font-weight: 650; letter-spacing: -.02em; }
.supply-county { fill: var(--muted); stroke-width: 4px; font-size: 9px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.project-dot { fill: var(--fg); opacity: .54; cursor: pointer; outline: none; transition: opacity .16s, r .16s, fill .16s; }
.project-dot:hover, .project-dot:focus, .project-dot.active { fill: var(--fg); opacity: 1; }
.project-dot.active { fill: var(--accent); }
.project-ring { fill: none; stroke: var(--accent); stroke-width: 1.5; opacity: 0; transform-box: fill-box; transform-origin: center; pointer-events: none; }
.project-ring.active { animation: mapRing 1.7s ease-out infinite; }
@keyframes mapRing { 0% { opacity: .8; transform: scale(.65); } 100% { opacity: 0; transform: scale(2.7); } }
.project-card { padding: 28px; min-width: 0; }
.national-coverage { display: flex; align-items: flex-end; gap: 14px; padding: 0 0 20px; border-bottom: 1px solid var(--rule); }
.national-coverage strong { font-size: clamp(36px, 4vw, 58px); line-height: .85; letter-spacing: -.05em; color: var(--accent); font-weight: 500; }
.national-coverage span { color: var(--muted); font-size: 11px; line-height: 1.45; text-transform: uppercase; letter-spacing: .06em; }
.national-coverage + .project-eyebrow { margin-top: 20px; }
.map-mode { position: absolute; left: 18px; top: 16px; z-index: 2; display: grid; gap: 2px; padding: 10px 12px; border: 1px solid var(--rule); background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(10px); pointer-events: none; }
.map-mode span { color: var(--accent); font-size: 9px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
.map-mode strong { color: var(--fg-2); font-size: 10.5px; font-weight: 500; }
.map-legend { position: absolute; left: 18px; bottom: 16px; z-index: 2; display: flex; gap: 14px; padding: 9px 11px; background: color-mix(in srgb, var(--bg) 88%, transparent); border: 1px solid var(--rule); backdrop-filter: blur(8px); font-size: 10px; color: var(--muted); }
.map-legend span { display: inline-flex; align-items: center; gap: 6px; }
.map-legend i { position: relative; width: 7px; height: 7px; border-radius: 50%; background: rgba(var(--accent-rgb), .45); }
.map-legend i.stack { width: 10px; height: 7px; border: 1px solid var(--accent); border-radius: 1px; background: color-mix(in srgb, var(--bg) 65%, var(--accent)); transform: skewY(-17deg); box-shadow: 0 -3px 0 color-mix(in srgb, var(--bg) 78%, var(--accent)), 0 -6px 0 color-mix(in srgb, var(--bg) 88%, var(--accent)); }
.map-legend i.stack::before, .map-legend i.stack::after { display: none; }
.map-legend i.project { width: 8px; height: 8px; background: var(--fg); }
.project-eyebrow { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--ok); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.project-eyebrow > span { display: inline-flex; align-items: center; gap: 8px; }
.project-rank { color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .07em; white-space: nowrap; }
.project-title-row { display: flex; align-items: center; gap: 13px; margin: 24px 0 5px; }
.project-title-row .project-card-logo { width: 46px; height: 46px; border-radius: 13px; }
.project-card h3 { margin: 0; font-size: clamp(28px, 3vw, 43px); line-height: 1; letter-spacing: -.04em; font-weight: 500; }
.project-location { color: var(--muted); font-size: 13px; }
.project-stats { display: grid; grid-template-columns: 1fr 1fr; margin-top: 30px; border-top: 1px solid var(--rule); }
.project-stats div { padding: 16px 12px 16px 0; border-bottom: 1px solid var(--rule); }
.project-stats div:nth-child(even) { padding-left: 12px; border-left: 1px solid var(--rule); }
.project-stats strong { display: block; font-size: 22px; letter-spacing: -.03em; font-weight: 550; }
.project-stats span { color: var(--muted); font-size: 10.5px; }
.project-builders { margin-top: 22px; }
.project-builders > span { display: block; color: var(--muted); font-size: 10.5px; text-transform: uppercase; letter-spacing: .09em; }
.builder-chip { display: inline-flex; align-items: center; gap: 7px; margin: 8px 6px 0 0; padding: 7px 9px; border: 1px solid var(--rule); border-radius: 9px; font-size: 11.5px; }
.builder-chip .chip-logo { width: 21px; height: 21px; border-radius: 6px; }
.project-link { margin-top: 28px; width: 100%; }

.ai-panel { display: flex; flex-direction: column; }
.ai-body { display: flex; flex: 1; flex-direction: column; padding: 24px; min-height: 430px; }
.ai-question { display: grid; grid-template-columns: 52px 1fr; gap: 12px; padding-bottom: 20px; border-bottom: 1px solid var(--rule); }
.ai-question span { color: var(--accent); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }
.ai-question strong { min-height: 1.5em; font-size: 17px; font-weight: 500; }
.ai-answer { margin-top: 25px; min-height: 112px; color: var(--fg-2); font-size: 15px; line-height: 1.58; }
.ai-answer strong { color: var(--fg); font-weight: 600; }
.ai-answer mark { padding: 2px 5px; border-radius: 5px; background: rgba(var(--accent-rgb), .09); color: var(--accent); }
.ai-sources { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; min-height: 36px; }
.ai-sources a { padding: 6px 9px; border: 1px solid var(--rule); border-radius: 8px; color: var(--fg-2); font-size: 10.5px; }
.ai-sources .ai-source { display: inline-flex; align-items: center; gap: 6px; }
.ai-sources a:hover { border-color: var(--accent); color: var(--accent); }
.ai-chips { display: flex; gap: 7px; flex-wrap: wrap; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--rule); }
.ai-chips button { position: relative; overflow: hidden; padding: 0; border: 1px solid var(--rule); border-radius: 999px; background: transparent; color: var(--muted); font-size: 11px; cursor: pointer; transition: border-color .15s, color .15s; }
.ai-chips button:hover { border-color: var(--fg); color: var(--fg); }
.ai-chip-text { position: relative; z-index: 1; display: inline-flex; align-items: center; padding: 7px 10px; white-space: nowrap; }
.ai-chip-fill { position: absolute; inset: 0; z-index: 0; border-radius: inherit; background: var(--accent); transform: translateX(-101%); pointer-events: none; }
.ai-chip-text-filled { position: absolute; inset: 0; z-index: 2; display: inline-flex; align-items: center; justify-content: center; color: white; clip-path: inset(0 101% 0 0); pointer-events: none; }
.ai-chips button.active { border-color: var(--accent); color: var(--accent); }
.ai-chips button.active .ai-chip-fill { animation: aiChipFill var(--ai-chip-duration, 9000ms) linear forwards; }
.ai-chips button.active .ai-chip-text-filled { animation: aiChipTextFill var(--ai-chip-duration, 9000ms) linear forwards; }
@keyframes aiChipFill { from { transform: translateX(-101%); } to { transform: translateX(0); } }
@keyframes aiChipTextFill { from { clip-path: inset(0 101% 0 0); } to { clip-path: inset(0 0 0 0); } }

.freshness { padding: 160px 0; }
.freshness p { max-width: 26ch; margin: 65px 0 0 auto; font-size: clamp(25px, 3vw, 44px); line-height: 1.12; letter-spacing: -.035em; color: var(--fg-2); }
.cta { padding: 110px 0 130px; background: var(--bg-2); }
.cta .shell { text-align: center; }
.cta h2 { margin-inline: auto; }
.cta .lede { margin-top: 35px; }
.cta .hero-actions { justify-content: center; margin-top: 30px; }
.data-footer { position: relative; overflow: hidden; padding: 14px 0 20px; border-top: 1px solid var(--rule); color: var(--muted); font-size: 13px; }
.foot-grid { display: grid; grid-template-columns: 1fr auto auto; grid-template-rows: auto auto; gap: 14px 32px; align-items: end; padding-top: 34px; }
.foot-left { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.foot-privacy { color: var(--fg); font-size: 14px; font-weight: 500; }
.foot-privacy:hover { color: var(--accent); }
.foot-social { display: flex; gap: 8px; }
.foot-social-btn { display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; border-radius: 5px; background: var(--fg); color: var(--bg); transition: background .15s, color .15s, transform .15s; }
.foot-social-btn:hover { transform: translateY(-1px); background: var(--accent); color: var(--bg); }
.foot-illust-wrap { grid-column: 2; grid-row: 1 / 3; align-self: end; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.foot-illust { width: min(220px, 22vw); height: 170px; object-fit: contain; object-position: center bottom; opacity: .72; pointer-events: none; }
html[data-mode="dark"] .foot-illust { filter: invert(1); opacity: .82; }
.foot-illust-caption { color: var(--muted); font-size: 11px; font-style: italic; letter-spacing: .01em; text-align: center; }
.foot-cols { grid-column: 3; grid-row: 1; display: flex; flex-wrap: wrap; gap: 64px; }
.foot-col { display: flex; flex-direction: column; gap: 8px; }
.foot-col b { margin-bottom: 6px; color: var(--fg-2); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.foot-col a { display: flex; flex-direction: column; color: var(--muted); }
.foot-col a:hover { color: var(--fg); }
.foot-copy-cell { grid-column: 1; grid-row: 2; }
.foot-copy { color: var(--muted); font-size: 12px; letter-spacing: .01em; }

.demo-modal {
  width: min(440px, calc(100vw - 32px));
  max-width: 440px;
  padding: 32px;
  border: 1px solid var(--rule-strong);
  border-radius: 18px;
  background: var(--bg);
  color: var(--fg);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.35);
}
.demo-modal::backdrop { background: rgba(0,0,0,.5); backdrop-filter: blur(4px); }
.demo-modal[open] { animation: dmIn .22s cubic-bezier(.22,.7,.2,1); }
@keyframes dmIn { from { opacity: 0; transform: translateY(8px) scale(.99); } to { opacity: 1; transform: none; } }
.dm-x { position: absolute; top: 14px; right: 16px; padding: 0; border: 0; background: transparent; color: var(--muted); font-size: 24px; line-height: 1; cursor: pointer; transition: color .15s; }
.dm-x:hover { color: var(--fg); }
.dm-title { margin: 0 0 8px; font-size: 24px; font-weight: 500; letter-spacing: -.02em; }
.dm-desc { margin: 0 0 24px; color: var(--fg-2); font-size: 14px; line-height: 1.4; }
.dm-form { display: flex; flex-direction: column; gap: 18px; }
.dm-field { display: flex; min-width: 0; flex-direction: column; margin: 0; padding: 0; border: 0; }
.dm-field label, .dm-field legend { margin-bottom: 7px; padding: 0; color: var(--fg); font-size: 13.5px; font-weight: 500; }
.dm-field input[type="text"], .dm-field input[type="email"], .dm-field input[type="tel"] { width: 100%; padding: 12px 15px; border: 1px solid var(--rule-strong); border-radius: 12px; background: var(--bg); color: var(--fg); font: inherit; font-size: 15px; outline: none; transition: border-color .15s, box-shadow .15s; }
.dm-field input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(var(--accent-rgb),.12); }
.dm-field input::placeholder { color: var(--muted); opacity: .65; }
.dm-seg { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; border: 1px solid var(--rule-strong); border-radius: 12px; }
.dm-seg label { display: block; margin: 0; padding: 9px 10px; border-radius: 8px; color: var(--fg-2); font-size: 13px; font-weight: 500; text-align: center; cursor: pointer; transition: background .15s, color .15s; }
.dm-seg input { position: absolute; width: 0; height: 0; opacity: 0; }
.dm-seg label:has(:checked) { background: var(--accent); color: #fff; }
.dm-honey { position: absolute; left: -9999px; }
.dm-send { width: 100%; margin-top: 4px; padding: 14px; border: 0; border-radius: 12px; background: var(--accent); color: #fff; font-size: 15px; font-weight: 500; cursor: pointer; transition: background .15s, opacity .15s; }
.dm-send:hover { background: var(--accent-dark); }
.dm-send:disabled { opacity: .6; cursor: default; }
.dm-result { padding: 24px 0 6px; text-align: center; }
.dm-result .dm-rt { margin: 0 0 6px; color: var(--fg); font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.dm-result .dm-rt.err { color: var(--accent-dark); }
.dm-result .dm-rd { margin: 0; color: var(--muted); font-size: 14px; }
.dm-result .dm-rd a { color: var(--accent); border-bottom: 1px solid currentColor; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.65,.2,1); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .hero-grid, .feature-grid, .feature-grid.reverse { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { max-width: 850px; }
  .hero h1 { max-width: 11ch; }
  .offer-spotlight { width: min(760px, 100%); }
  .feature-grid.reverse .feature-copy { order: initial; }
  .feature-copy { max-width: 720px; }
  .coverage-head { grid-template-columns: 1fr; }
  .coverage-head .eyebrow { grid-column: auto; margin-bottom: -35px; }
  .coverage-head .lede { max-width: 50ch; }
  .metric-grid { grid-template-columns: repeat(3, 1fr); }
  .map-grid { grid-template-columns: 1fr; min-height: 0; }
  .map-stage { border: 0; min-height: 600px; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-mobile { display: flex; }
  .nav-mobile .mobile-nav-cta { font-size: 12px; padding: 7px 13px; }
  .nav-mobile .home-toggle { --size: 40px; }
  .hero-grid { grid-template-columns: minmax(0,1fr); }
  .hero h1 { font-size: clamp(52px, 12vw, 88px); }
  .shell { padding-inline: 20px; }
  section { padding: 100px 0; }
  .metric-grid strong { font-size: 50px; }
  .chart-wrap { height: 410px; }
  .map-stage { min-height: 500px; }
  .foot-grid { grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto auto auto; gap: 22px 16px; align-items: start; }
  .foot-left { grid-column: 1; grid-row: 1; }
  .foot-cols { grid-column: 1 / -1; grid-row: 2; width: 100%; gap: 48px; justify-content: space-between; }
  .foot-cols .foot-col:last-child { margin-left: auto; align-items: flex-start; text-align: left; }
  .foot-copy-cell { grid-column: 1; grid-row: 3; align-self: end; }
  .foot-illust-wrap { grid-column: 2; grid-row: 3; justify-self: end; align-self: end; gap: 5px; }
  .foot-illust { width: min(200px, 44vw); height: 92px; }
  .foot-illust-caption { max-width: 22ch; font-size: 10.5px; text-align: right; }
}

@media (max-width: 620px) {
  .shell { padding-inline: 16px; }
  .hero { padding-top: 96px; }
  .hero-grid { gap: 46px; }
  .hero h1 { font-size: 52px; }
  .hero .lede { font-size: 16px; }
  .live-pill { max-width: 100%; flex-wrap: wrap; }
  .spotlight-card { padding: 17px; min-height: 450px; }
  .spotlight-image { height: 190px; }
  .source-chip { max-width: 42%; overflow: hidden; text-overflow: ellipsis; }
  .insight-visual { height: 190px; }
  .price-change-visual { gap: 9px; padding: 22px 16px; }
  .price-change-visual strong { font-size: 20px; }
  .price-change-visual .price-arrow { font-size: 22px; }
  .market-compare-visual, .availability-visual { padding: 22px 18px; }
  .availability-legend { gap: 6px; }
  .availability-legend b { font-size: 18px; }
  .statement p { font-size: 48px; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-grid article, .metric-grid article:not(:first-child) { min-height: 145px; padding: 17px 0; border-right: 0; border-bottom: 1px solid var(--rule); }
  .feature-copy h2, .coverage-head h2, .freshness h2, .cta h2 { font-size: 43px; }
  .offer-feed { height: 520px; }
  .feed-item { grid-template-columns: 36px minmax(0,1fr); }
  .feed-value { grid-column: 2; text-align: left; max-width: none; }
  .chart-bar { align-items: flex-start; flex-direction: column; }
  .chart-bar label, .chart-bar select { width: 100%; max-width: none; }
  .chart-wrap { height: 370px; padding: 5px; }
  .chart-summary { gap: 12px; flex-wrap: wrap; }
  .map-stage { min-height: 410px; }
  .map-mode { left: 10px; top: 10px; }
  .map-mode strong { display: none; }
  .map-legend { left: 10px; right: 10px; bottom: 10px; justify-content: space-between; gap: 8px; font-size: 8.5px; }
  .supply-value { font-size: 22px; }
  .supply-county { font-size: 13px; }
  .project-card { padding: 20px; }
  .ai-body { padding: 18px; }
  .freshness p { margin-left: 0; font-size: 29px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .ai-chips button.active .ai-chip-fill { transform: none; }
  .ai-chips button.active .ai-chip-text-filled { clip-path: inset(0); }
}
