/* Mint Capital — brand stylesheet (Brand Book v1.0) */
:root {
  --evergreen: #0B3B2C;
  --evergreen-2: #0F4A37;
  --mint: #3DDC97;
  --mint-soft: #DDF7EA;
  --leaf: #12A874;
  --ledger: #0B7A52;
  --ink: #0A1A14;
  --slate: #56685F;
  --mist: #EEF6F2;
  --line: #DCE9E2;
  --line-2: #C8DAD1;
  --white: #FFFFFF;
  --amber: #F2B544;
  --amber-soft: #FCEFD2;
  --signal: #C9412F;
  --signal-soft: #F8E1DD;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 2px rgba(10, 26, 20, .05), 0 8px 24px rgba(10, 26, 20, .06);
  --shadow-lg: 0 2px 4px rgba(10, 26, 20, .06), 0 24px 48px rgba(10, 26, 20, .12);
  --f-display: 'Sora', 'Segoe UI', Arial, sans-serif;
  --f-text: 'Onest', 'Segoe UI', Arial, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, 'Cascadia Mono', Consolas, monospace;
  --wrap: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--white); color: var(--ink);
  font: 400 16px/26px var(--f-text);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--ledger); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--evergreen); }
h1, h2, h3, h4 { margin: 0 0 .5em; color: var(--evergreen); text-wrap: balance; }
h1, h2, .display { font-family: var(--f-display); letter-spacing: -0.02em; }
.display { font-weight: 700; font-size: clamp(38px, 6vw, 56px); line-height: 1.07; margin: 0 0 20px; }
h1 { font-weight: 600; font-size: clamp(30px, 4.4vw, 40px); line-height: 1.1; }
h2 { font-weight: 600; font-size: clamp(24px, 3.2vw, 28px); line-height: 34px; }
h3 { font-family: var(--f-text); font-weight: 600; font-size: 20px; line-height: 28px; }
h4 { font-family: var(--f-text); font-weight: 600; font-size: 16px; line-height: 24px; }
p { margin: 0 0 1em; }
small, .small { font-size: 13px; line-height: 20px; }
.muted { color: var(--slate); }
.label {
  font-family: var(--f-mono); font-weight: 500; font-size: 12px; line-height: 16px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--slate);
}
.mono { font-family: var(--f-mono); font-feature-settings: "tnum"; }
.num { font-feature-settings: "tnum"; white-space: nowrap; }
.lead { font-size: 18px; line-height: 29px; color: var(--slate); max-width: 62ch; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
:focus-visible { outline: 3px solid var(--mint); outline-offset: 2px; border-radius: 4px; }
.skip { position: absolute; left: 16px; top: -60px; background: var(--evergreen); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 100; }
.skip:focus { top: 12px; color: #fff; }

/* Icons */
.i { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.i-sm { width: 16px; height: 16px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px; border-radius: var(--radius);
  font: 600 16px/1.2 var(--f-text); text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent; transition: background .15s, border-color .15s, color .15s, transform .05s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--evergreen); color: #fff; }
.btn-primary:hover { background: #07281E; color: #fff; }
.btn-secondary { background: #fff; color: var(--evergreen); border-color: var(--line-2); }
.btn-secondary:hover { border-color: var(--evergreen); color: var(--evergreen); }
.btn-mint { background: var(--mint); color: var(--evergreen); }
.btn-mint:hover { background: #5BE4A8; color: var(--evergreen); }
.btn-ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost-dark:hover { border-color: var(--mint); color: var(--mint); }
.btn-danger { background: #fff; color: var(--signal); border-color: #E7B5AD; }
.btn-danger:hover { background: var(--signal-soft); color: var(--signal); }
.btn-sm { min-height: 36px; padding: 7px 14px; font-size: 14px; border-radius: 10px; }
.btn-block { width: 100%; }
.btn[disabled], .btn.disabled { opacity: .5; pointer-events: none; }
.link-btn { background: none; border: 0; padding: 0; font: inherit; color: var(--ledger); text-decoration: underline; cursor: pointer; }

/* Chips & stamps */
.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px; border-radius: 999px;
  font: 500 12px/18px var(--f-mono); letter-spacing: .02em; white-space: nowrap;
  background: var(--mist); color: var(--evergreen); border: 1px solid var(--line);
}
.chip-mint { background: var(--mint-soft); border-color: #BDEBD4; }
.chip-ever { background: var(--evergreen); color: var(--mint); border-color: var(--evergreen); }
.chip-ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip-amber { background: var(--amber-soft); color: #6B4A00; border-color: #F1D595; }
.chip-signal { background: var(--signal-soft); color: #8E2A1E; border-color: #EDC0B8; }
.chip-neutral { background: #F3F5F4; color: var(--slate); border-color: #E3E8E5; }
.stamp {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 7px; border-radius: 999px;
  font: 500 13px/18px var(--f-mono); white-space: nowrap;
}
.stamp svg { width: 20px; height: 20px; }
.stamp-ok { background: var(--mint-soft); color: var(--evergreen); }
.stamp-due { background: var(--amber-soft); color: #6B4A00; }
.stamp-due svg { color: #B47C06; }
.stamp-exp { background: var(--signal-soft); color: #8E2A1E; }
.stamp-exp svg { color: var(--signal); }
.stamp-none { background: #F3F5F4; color: var(--slate); padding-left: 12px; }
.rank-pill {
  display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 999px;
  background: #fff; color: var(--evergreen); font: 700 13px/18px var(--f-mono); box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.illus-pill { background: rgba(255,255,255,.14); color: #fff; font: 500 11px/16px var(--f-mono); letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; backdrop-filter: blur(4px); }

/* Pre-launch banner */
.banner { background: var(--mist); color: var(--evergreen); font-size: 13px; line-height: 20px; text-align: center; padding: 8px 16px; border-bottom: 1px solid var(--line); }
.banner strong { font-family: var(--f-mono); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: 11px; margin-right: 8px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.94); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 24px; min-height: 76px; }
.brand { display: inline-flex; flex: none; }
.brand img { width: 184px; height: auto; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 15px; padding: 8px 12px; border-radius: 8px; }
.nav a:hover { background: var(--mist); color: var(--evergreen); }
.nav a.active { color: var(--evergreen); background: var(--mist); }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: 8px; }
.menu-btn { display: none; margin-left: auto; background: none; border: 1.5px solid var(--line-2); border-radius: 10px; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--evergreen); cursor: pointer; }
@media (max-width: 1060px) {
  .menu-btn { display: inline-flex; }
  .nav-wrap { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 12px 16px 20px; }
  .nav-wrap.open { display: block; }
  .nav { flex-direction: column; align-items: stretch; margin: 0; }
  .nav a { padding: 12px; font-size: 16px; }
  .nav-actions { margin: 12px 0 0; flex-direction: column; align-items: stretch; }
  .nav-actions .btn { width: 100%; }
}
@media (min-width: 1061px) { .nav-wrap { display: flex; align-items: center; margin-left: auto; } }

/* Flash */
.flashes { max-width: var(--wrap); margin: 16px auto 0; padding: 0 24px; display: grid; gap: 8px; }
.app-main .flashes { padding: 0; margin: 0 0 20px; }
.flash { display: flex; gap: 10px; align-items: flex-start; padding: 12px 16px; border-radius: var(--radius); border: 1px solid; font-size: 15px; line-height: 22px; }
.flash-success { background: var(--mint-soft); border-color: #BDEBD4; color: var(--evergreen); }
.flash-error { background: var(--signal-soft); border-color: #EDC0B8; color: #7A2419; }
.flash-info { background: var(--mist); border-color: var(--line); color: var(--evergreen); }
.flash .i { margin-top: 1px; }

/* Sections */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-mist { background: var(--mist); }
.section-dark { background: var(--evergreen); color: #D5E6DE; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .label { color: var(--mint); }
.section-dark a:not(.btn) { color: var(--mint); }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head .label { display: block; margin-bottom: 12px; }
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 960px) { .g3, .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } .section { padding: 60px 0; } .wrap { padding: 0 16px; } }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--evergreen); color: #CFE3D9; padding: 80px 0 96px; }
.hero::before, .hero::after { content: ""; position: absolute; width: 1px; height: 180%; background: rgba(255,255,255,.07); transform: rotate(45deg); top: -40%; }
.hero::before { right: 30%; }
.hero::after { right: 8%; }
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; }
.hero .display em { font-style: normal; color: var(--mint); }
.hero .lead { color: #BFD6CB; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-proof { display: grid; grid-template-columns: repeat(2, max-content); justify-content: start; gap: 22px 56px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-proof b, .hero-proof span { white-space: nowrap; }
@media (max-width: 640px) { .hero-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 20px; } .hero-proof b, .hero-proof span { white-space: normal; } }
.hero-proof b { display: block; font: 700 28px/1.1 var(--f-display); color: #fff; letter-spacing: -0.02em; }
.hero-proof span { font: 500 11px/16px var(--f-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--mint); }
.hero-card { position: relative; }
.hero-card .lcard { box-shadow: 0 30px 60px rgba(0,0,0,.35); }
@media (max-width: 960px) { .hero .wrap { grid-template-columns: 1fr; } .hero { padding: 56px 0 64px; } .hero-card { max-width: 460px; } }

/* Page header */
.page-head { background: var(--mist); border-bottom: 1px solid var(--line); padding: 56px 0 44px; }
.page-head .label { display: block; margin-bottom: 12px; }
.page-head p { max-width: 64ch; color: var(--slate); font-size: 18px; line-height: 29px; margin: 0; }
.crumbs { font-size: 14px; margin-bottom: 16px; color: var(--slate); }
.crumbs a { color: var(--slate); }

/* Listing card */
.lcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s; color: var(--ink); }
.lcard:hover { box-shadow: var(--shadow-lg); }
.lcard-media { position: relative; aspect-ratio: 16 / 9; background: var(--evergreen); overflow: hidden; }
.lcard-media .art, .lcard-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lcard-media .tl { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; align-items: center; }
.lcard-media .tr { position: absolute; top: 14px; right: 14px; }
.lcard-media .status-over { position: absolute; bottom: 14px; left: 14px; }
.lcard-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.lcard-top { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; flex-wrap: wrap; }
.lcard-title { font: 600 19px/26px var(--f-text); color: var(--evergreen); margin: 0; }
.lcard-title a { color: inherit; text-decoration: none; }
.lcard-title a::after { content: ""; position: absolute; inset: 0; }
.lcard { position: relative; }
.lcard .stamp, .lcard .save-form, .lcard .btn { position: relative; z-index: 2; }
.lcard-area { color: var(--slate); font-size: 15px; margin: 2px 0 0; }
.lcard-figures { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.yield-big { font: 700 44px/1 var(--f-display); letter-spacing: -0.03em; color: var(--evergreen); }
.yield-big small { font: 500 12px/1 var(--f-mono); letter-spacing: .08em; color: var(--slate); margin-left: 6px; text-transform: uppercase; }
.price-big { font: 700 22px/1.2 var(--f-display); color: var(--evergreen); letter-spacing: -0.01em; }
.kv { display: grid; grid-template-columns: repeat(3, 1fr); background: #F6FAF8; border: 1px solid var(--line); border-radius: var(--radius); }
.kv > div { padding: 10px 12px; border-left: 1px solid var(--line); min-width: 0; }
.kv > div:first-child { border-left: 0; }
.kv2 { grid-template-columns: 1fr 1fr; }
.kv .label { font-size: 11px; display: block; margin-bottom: 2px; }
.kv b { font-weight: 600; font-size: 15px; color: var(--ink); display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lcard-foot { margin-top: auto; font-size: 12px; line-height: 18px; color: var(--slate); }
.lcard.dim .lcard-media { filter: saturate(.6); }
.save-form { display: inline; }
.save-btn { width: 38px; height: 38px; border-radius: 999px; background: rgba(255,255,255,.95); border: 0; color: var(--evergreen); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.save-btn.on svg { fill: var(--mint); stroke: var(--evergreen); }

/* Airbnb guest rating */
.lcard-rating { margin-top: -4px; }
.arating { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; line-height: 20px; color: var(--ink); text-decoration: none; padding: 3px 10px 3px 8px; border: 1px solid var(--line); border-radius: 999px; background: #fff; position: relative; z-index: 2; white-space: nowrap; }
a.arating:hover { border-color: var(--evergreen); color: var(--evergreen); }
.arating .star { width: 15px; height: 15px; fill: var(--evergreen); flex: none; }
.arating b { font-weight: 600; font-feature-settings: "tnum"; }
.arating span { color: var(--slate); }
.arating .src { font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; border-left: 1px solid var(--line); padding-left: 7px; }
.arating .ext { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; color: var(--ledger); }
.arating-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.gfav { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 999px; background: var(--mist); color: var(--evergreen); font: 500 12px/18px var(--f-mono); }
.achecked { font: 400 12px/18px var(--f-mono); color: var(--slate); }
.guest-box { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px 22px; }
.guest-score { text-align: center; background: var(--mist); border-radius: 16px; padding: 14px 18px; min-width: 104px; }
.guest-score .num { display: block; font: 700 36px/1 var(--f-display); color: var(--evergreen); letter-spacing: -0.02em; }
.guest-score small { font: 500 11px/16px var(--f-mono); color: var(--slate); text-transform: uppercase; letter-spacing: .06em; }
@media (max-width: 480px) { .guest-box { grid-template-columns: 1fr; } .guest-score { justify-self: start; } }

/* Revenue chart */
.rev-chart { margin: 0; }
.rev-chart .bars { display: flex; align-items: flex-end; gap: 5px; }
.rev-chart .bar { flex: 1; background: var(--leaf); border-radius: 4px 4px 0 0; position: relative; min-width: 0; transition: background .15s; }
.rev-chart:not(.compact) .bar { border-radius: 6px 6px 0 0; }
.rev-chart .bar:hover, .rev-chart .bar:focus { background: var(--evergreen); outline: none; }
.rev-chart .bar:hover::after, .rev-chart .bar:focus::after {
  content: attr(data-tip); position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; font: 500 12px/1 var(--f-mono); padding: 7px 9px; border-radius: 6px; white-space: nowrap; z-index: 5;
}
.rev-chart.compact .bar:hover::after { display: none; }
.rev-chart figcaption { display: flex; justify-content: space-between; margin-top: 8px; font: 400 12px/16px var(--f-mono); color: var(--slate); }

/* Yield bar */
.yield-bar .track { position: relative; height: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--leaf), var(--mint)); }
.yield-bar .marker { position: absolute; top: 50%; width: 22px; height: 22px; border-radius: 999px; background: #fff; border: 5px solid var(--evergreen); transform: translate(-50%, -50%); box-shadow: 0 2px 6px rgba(0,0,0,.2); }
.yield-bar .scale { display: flex; justify-content: space-between; margin-top: 8px; font: 400 12px/16px var(--f-mono); color: var(--slate); }

/* Cards / panels */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.card-sm { padding: 20px; border-radius: 16px; }
.card-mist { background: var(--mist); border-color: transparent; }
.card-dark { background: var(--evergreen); border-color: var(--evergreen); color: #CFE3D9; }
.card-dark h3, .card-dark h2 { color: #fff; }
.card h3:last-child, .card p:last-child { margin-bottom: 0; }
.icon-tile { width: 48px; height: 48px; border-radius: 14px; background: var(--mist); color: var(--leaf); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.icon-tile .i { width: 24px; height: 24px; }
.card-dark .icon-tile { background: rgba(61,220,151,.12); color: var(--mint); }
.callout { border-left: 4px solid var(--leaf); background: var(--mist); padding: 18px 20px; border-radius: 0 var(--radius) var(--radius) 0; }
.callout.amber { border-color: var(--amber); background: #FFF8E8; }
.callout h4 { margin-bottom: 4px; }
.callout p:last-child { margin: 0; }
.formula { font-family: var(--f-mono); font-size: 15px; line-height: 26px; background: var(--evergreen); color: #E3F1EA; border-radius: var(--radius); padding: 22px 24px; }
.formula b { color: var(--mint); font-weight: 500; }

/* Steps */
.steps { counter-reset: s; display: grid; gap: 0; }
.step { counter-increment: s; display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 0 0 28px; position: relative; }
.step::before { content: counter(s, decimal-leading-zero); width: 52px; height: 52px; border-radius: 16px; background: var(--mist); color: var(--evergreen); font: 600 16px/52px var(--f-mono); text-align: center; }
.step::after { content: ""; position: absolute; left: 26px; top: 60px; bottom: 6px; width: 1px; background: var(--line-2); }
.step:last-child::after { display: none; }
.step h4 { margin: 12px 0 4px; }
.step p { margin: 0; color: var(--slate); }
.section-dark .step::before { background: rgba(61,220,151,.12); color: var(--mint); }
.section-dark .step::after { background: rgba(255,255,255,.15); }
.section-dark .step p { color: #B7CFC3; }
.section-dark .step h4 { color: #fff; }

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.t { width: 100%; border-collapse: collapse; font-size: 15px; }
.t th { text-align: left; font: 500 11px/16px var(--f-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--slate); padding: 12px 14px; background: #F6FAF8; border-bottom: 1px solid var(--line); white-space: nowrap; }
.t td { padding: 13px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.t tr:last-child td { border-bottom: 0; }
.t td.r, .t th.r { text-align: right; }
.t tbody tr:hover { background: #FAFCFB; }
.t tfoot td { font-weight: 600; background: #F6FAF8; border-top: 1px solid var(--line-2); }
.t .strong { font-weight: 600; color: var(--evergreen); }
.t a { font-weight: 500; }
.t .neg { color: var(--slate); }
.t-compact td { padding: 9px 12px; }

/* Forms */
.form { display: grid; gap: 18px; }
.form-row { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-row.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 640px) { .form-row, .form-row.three { grid-template-columns: 1fr; } }
.field label, .field .lbl { display: block; font-weight: 500; font-size: 14px; margin-bottom: 6px; color: var(--ink); }
.hint { font-size: 13px; line-height: 19px; color: var(--slate); margin: 6px 0 0; }
.input, select.input, textarea.input {
  width: 100%; min-height: 48px; padding: 11px 14px; border: 1.5px solid var(--line-2); border-radius: 10px;
  font: 400 16px/24px var(--f-text); color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
textarea.input { min-height: 110px; resize: vertical; }
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%230B3B2C' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.input:focus { outline: none; border-color: var(--leaf); box-shadow: 0 0 0 4px rgba(61,220,151,.25); }
.input-sm { min-height: 38px; padding: 6px 10px; font-size: 14px; }
.input-affix { position: relative; }
.input-affix .affix { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font: 500 13px/1 var(--f-mono); color: var(--slate); pointer-events: none; }
.input-affix .input { padding-left: 52px; }
.field-error { color: var(--signal); font-size: 13px; line-height: 18px; margin: 6px 0 0; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 22px; cursor: pointer; }
.check input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--evergreen); flex: none; }
.check-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.check-pill { position: relative; }
.check-pill input { position: absolute; opacity: 0; }
.check-pill span { display: inline-block; padding: 8px 14px; border: 1.5px solid var(--line-2); border-radius: 999px; font-size: 14px; cursor: pointer; }
.check-pill input:checked + span { background: var(--evergreen); color: #fff; border-color: var(--evergreen); }
.check-pill input:focus-visible + span { outline: 3px solid var(--mint); outline-offset: 2px; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
legend { padding: 0; font-weight: 600; margin-bottom: 10px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
@media (max-width: 640px) { .form-card { padding: 22px 18px; } }
.auth-wrap { max-width: 520px; margin: 56px auto 80px; padding: 0 16px; }
.auth-wrap.wide { max-width: 720px; }
.auth-wrap h1 { font-size: 30px; line-height: 36px; }

/* Filters */
.filters { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)) auto; gap: 12px; align-items: end; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow); }
.filters .field label { font-size: 12px; font-family: var(--f-mono); letter-spacing: .06em; text-transform: uppercase; color: var(--slate); font-weight: 500; }
@media (max-width: 1060px) { .filters { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 640px) { .filters { grid-template-columns: 1fr 1fr; } .filters .actions { grid-column: 1 / -1; } }
.results-bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin: 28px 0 18px; flex-wrap: wrap; }
.seg { display: inline-flex; border: 1.5px solid var(--line-2); border-radius: 10px; overflow: hidden; }
.seg a { padding: 7px 14px; font-size: 14px; text-decoration: none; color: var(--slate); font-weight: 500; }
.seg a.on { background: var(--evergreen); color: #fff; }
.empty { text-align: center; padding: 56px 24px; border: 1.5px dashed var(--line-2); border-radius: var(--radius-lg); color: var(--slate); }
.empty h3 { color: var(--evergreen); }

/* Listing detail */
.ld-hero { display: grid; grid-template-columns: 1.35fr 1fr; gap: 32px; align-items: start; padding: 32px 0 8px; }
@media (max-width: 960px) { .ld-hero { grid-template-columns: 1fr; } }
.gallery { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16 / 10; background: var(--evergreen); }
.gallery .art, .gallery > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery .tl { position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; }
.thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; }
.thumbs button { flex: none; width: 88px; height: 60px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; padding: 0; cursor: pointer; background: none; }
.thumbs button.on { border-color: var(--leaf); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.ld-side .buybox .card { box-shadow: var(--shadow); }
.buybox .yield-big { font-size: 56px; }
.buybox .actions { display: grid; gap: 10px; margin-top: 18px; }
.ld-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 32px; padding: 24px 0 80px; align-items: start; }
.ld-media { padding-top: 0; border-top: 0; }
@media (max-width: 960px) {
  .ld-grid { grid-template-columns: 1fr; }
  .ld-grid > div { display: contents; }
  .ld-media { order: 1; }
  .ld-side { display: contents; }
  .ld-side .buybox { order: 2; }
  .ld-grid > div > .ld-section:not(.ld-media) { order: 3; }
  .ld-side > .card { order: 4; margin-top: 0; }
}
.ld-section { padding: 28px 0; border-top: 1px solid var(--line); }
.ld-section:first-child { border-top: 0; padding-top: 0; }
.facts { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.facts > div { background: transparent; padding: 14px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 0 -1px -1px 0; min-width: 0; overflow-wrap: anywhere; }
.facts .label { display: block; font-size: 11px; margin-bottom: 4px; }
.facts b { font-weight: 600; }
.vsum { border: 1px solid #BDEBD4; border-radius: var(--radius-lg); overflow: hidden; }
.vsum-head { background: var(--evergreen); color: #fff; padding: 18px 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center; }
.vsum-head h3 { color: #fff; margin: 0; }
.vsum-body { padding: 20px 22px; }
.vlist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.vlist li { display: flex; gap: 10px; align-items: flex-start; }
.vlist .i { color: var(--leaf); margin-top: 3px; }
.vlist li.todo .i { color: var(--line-2); }
.disclosure { background: #FFF8E8; border: 1px solid #F1D595; border-radius: var(--radius); padding: 14px 16px; font-size: 14px; line-height: 21px; color: #4D3A08; }
.disclosure b { color: #3D2E06; }
.features { columns: 2; padding-left: 18px; margin: 0; }
@media (max-width: 640px) { .features { columns: 1; } }
.modal-panel { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; margin-top: 16px; background: #fff; }
details.panel { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
details.panel + details.panel { margin-top: 10px; }
details.panel summary { cursor: pointer; padding: 16px 18px; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 12px; color: var(--evergreen); }
details.panel summary::-webkit-details-marker { display: none; }
details.panel summary::after { content: "+"; font: 400 22px/1 var(--f-mono); color: var(--leaf); }
details.panel[open] summary::after { content: "−"; }
details.panel .panel-body { padding: 0 18px 18px; color: var(--slate); }

/* Footer */
.site-footer { background: var(--evergreen); color: #B7CFC3; padding: 64px 0 28px; font-size: 15px; }
.site-footer a { color: #E3F1EA; text-decoration: none; }
.site-footer a:hover { color: var(--mint); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-grid h4 { color: #fff; font: 500 12px/16px var(--f-mono); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.foot-logo { width: 200px; margin-bottom: 18px; }
.tagline { font: 600 18px/1.3 var(--f-display); color: var(--mint); letter-spacing: -0.01em; }
.legal-line { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 20px; font-size: 13px; line-height: 20px; color: #9DB9AC; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* App (dashboard) layout */
.app { display: grid; grid-template-columns: 264px 1fr; min-height: 100vh; background: #F6FAF8; }
.sidebar { background: var(--evergreen); color: #B7CFC3; padding: 22px 14px; position: sticky; top: 0; height: 100vh; overflow-y: auto; display: flex; flex-direction: column; }
.sidebar .brand img { width: 176px; margin: 4px 8px 6px; }
.sidebar .area-tag { font: 500 11px/16px var(--f-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--mint); margin: 6px 10px 22px; }
.side-nav { display: grid; gap: 2px; }
.side-nav a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; color: #CFE3D9; text-decoration: none; font-size: 15px; font-weight: 500; }
.side-nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.side-nav a.active { background: rgba(61,220,151,.14); color: #fff; box-shadow: inset 3px 0 0 var(--mint); }
.side-nav .count { margin-left: auto; background: var(--mint); color: var(--evergreen); font: 600 11px/18px var(--f-mono); padding: 0 7px; border-radius: 999px; }
.side-foot { margin-top: auto; padding: 16px 10px 4px; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; }
.side-foot b { color: #fff; display: block; font-weight: 600; }
.side-foot .row { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.side-foot a, .side-foot .link-btn { color: var(--mint); font-size: 14px; }
.app-top { display: none; }
.app-main { padding: 32px 40px 64px; min-width: 0; }
.app-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.app-head h1 { font-size: 30px; line-height: 36px; margin: 0; }
.app-head .label { display: block; margin-bottom: 6px; }
@media (max-width: 960px) {
  .app { grid-template-columns: 1fr; }
  .sidebar { position: fixed; inset: 0 auto 0 0; width: 280px; transform: translateX(-100%); transition: transform .2s; z-index: 60; }
  .sidebar.open { transform: none; box-shadow: var(--shadow-lg); }
  .app-top { display: flex; align-items: center; justify-content: space-between; background: var(--evergreen); padding: 10px 16px; position: sticky; top: 0; z-index: 50; }
  .app-top img { width: 150px; }
  .app-top button { background: none; border: 1.5px solid rgba(255,255,255,.3); color: #fff; border-radius: 10px; width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; }
  .app-main { padding: 22px 16px 56px; }
}
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 24px; }
@media (max-width: 1100px) { .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .stat-grid { grid-template-columns: 1fr; } }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; }
.stat .label { display: block; margin-bottom: 8px; }
.stat b { display: block; font: 700 30px/1.1 var(--f-display); color: var(--evergreen); letter-spacing: -0.02em; }
.stat .sub { font-size: 13px; color: var(--slate); margin-top: 4px; }
.stat.hl { background: var(--evergreen); border-color: var(--evergreen); }
.stat.hl b { color: #fff; }
.stat.hl .label { color: var(--mint); }
.stat.hl .sub { color: #B7CFC3; }
.panel-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 20px; }
.panel-card > header { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.panel-card > header h2, .panel-card > header h3 { margin: 0; font: 600 17px/24px var(--f-text); color: var(--evergreen); }
.panel-card > .body { padding: 20px; }
.panel-card .table-wrap { border: 0; border-radius: 0 0 16px 16px; }
.panel-card > .table-wrap:first-child { border-radius: 16px; }
@media (max-width: 640px) { .t .stamp { white-space: normal; } }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.split { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 20px; align-items: start; }
@media (max-width: 1100px) { .two-col, .split { grid-template-columns: 1fr; } }
.progress { height: 8px; background: var(--mist); border-radius: 999px; overflow: hidden; }
.progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--leaf), var(--mint)); }
.checklist { display: grid; gap: 4px; }
.checklist .item { display: grid; grid-template-columns: auto 1fr minmax(120px, 220px); gap: 12px; align-items: center; padding: 10px 12px; border-radius: 10px; }
.checklist .item:nth-child(odd) { background: #F6FAF8; }
.checklist .who { font-size: 12px; color: var(--slate); font-family: var(--f-mono); }
@media (max-width: 720px) { .checklist .item { grid-template-columns: auto 1fr; } .checklist .item .input { grid-column: 1 / -1; } }
.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.timeline li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; }
.timeline .dot { width: 26px; height: 26px; border-radius: 999px; background: var(--mist); color: var(--slate); display: flex; align-items: center; justify-content: center; }
.timeline .dot.done { background: var(--leaf); color: #fff; }
.timeline .dot.now { background: var(--amber); color: var(--evergreen); }
.timeline h4 { margin: 2px 0 2px; }
.timeline p { margin: 0; font-size: 14px; color: var(--slate); }
.inline-form { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.actions-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 20px; overflow-x: auto; }
.tabs a { padding: 10px 14px; text-decoration: none; color: var(--slate); font-weight: 500; font-size: 15px; border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; }
.tabs a.on { color: var(--evergreen); border-color: var(--leaf); }
.doc-list { list-style: none; margin: 0; padding: 0; }
.doc-list li { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.doc-list li:last-child { border-bottom: 0; }
.doc-list .name { display: flex; gap: 10px; align-items: center; font-weight: 500; }
.doc-list .i { color: var(--leaf); }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.photo-grid figure { margin: 0; position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; background: var(--mist); }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; }
.photo-grid form { position: absolute; top: 6px; right: 6px; }
.monthly-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
@media (max-width: 720px) { .monthly-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.monthly-grid label { font: 500 11px/16px var(--f-mono); color: var(--slate); text-transform: uppercase; letter-spacing: .06em; }
.calc-out { display: flex; gap: 20px; flex-wrap: wrap; padding: 14px 16px; background: var(--mist); border-radius: var(--radius); }
.calc-out div { min-width: 120px; }
.calc-out b { display: block; font: 700 20px/1.2 var(--f-display); color: var(--evergreen); }
.minimal-body { background: var(--mist); min-height: 100vh; }
.check-row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.check-row:last-child { border-bottom: 0; }
.ok { color: var(--ledger); font-weight: 600; }
.bad { color: var(--signal); font-weight: 600; }
.warn { color: #8A5D00; font-weight: 600; }
.prose { max-width: 760px; }
.prose h2 { margin-top: 40px; }
.prose h3 { margin-top: 28px; }
.prose ul, .prose ol { padding-left: 20px; }
.prose li { margin-bottom: 6px; }
.quote-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.say, .dont { border-radius: var(--radius); padding: 18px 20px; font-size: 15px; }
.say { background: var(--mint-soft); color: var(--evergreen); }
.dont { background: #F3F5F4; color: var(--slate); text-decoration: line-through; text-decoration-color: rgba(86,104,95,.4); }
.cta-band { background: var(--evergreen); border-radius: 28px; padding: 56px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; position: relative; overflow: hidden; color: #CFE3D9; }
.cta-band::after { content: ""; position: absolute; width: 1px; height: 300%; background: rgba(255,255,255,.08); transform: rotate(45deg); right: 20%; top: -100%; }
.cta-band h2 { color: #fff; }
@media (max-width: 860px) { .cta-band { grid-template-columns: 1fr; padding: 32px 24px; } }
.alert-form { display: grid; gap: 12px; position: relative; z-index: 1; }
.alert-form .input { background: #fff; }
.alert-form .check { color: #CFE3D9; font-size: 13px; line-height: 19px; }
.cta-band a:not(.btn), .card-dark a:not(.btn) { color: var(--mint); }
.alert-form .check-pill span { border-color: rgba(255,255,255,.3); color: #fff; }
.alert-form .check-pill input:checked + span { background: var(--mint); color: var(--evergreen); border-color: var(--mint); }
.error-page { text-align: center; padding: 100px 16px 120px; }
.error-page .code { font: 700 88px/1 var(--f-display); color: var(--leaf); letter-spacing: -0.04em; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.mt0 { margin-top: 0 !important; } .mb0 { margin-bottom: 0 !important; }
.mt8 { margin-top: 8px; } .mt16 { margin-top: 16px; } .mt24 { margin-top: 24px; } .mt32 { margin-top: 32px; } .mt48 { margin-top: 48px; }
.mb16 { margin-bottom: 16px; } .mb24 { margin-bottom: 24px; }
.tr { text-align: right; } .tc { text-align: center; }
.nowrap { white-space: nowrap; }
.flex { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.between { justify-content: space-between; }
.w100 { width: 100%; }
@media print { .site-header, .site-footer, .banner, .buybox .actions, .sidebar { display: none !important; } }
