/* Zorvo marketing site — shared styles */

* {
  box-sizing: border-box;
}

:root {
  --font: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  --container: min(1120px, 92vw);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-pill: 999px;

  --text: #f2f4ff;
  --muted: rgba(242, 244, 255, 0.78);
  --stroke: rgba(255, 255, 255, 0.18);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 48px rgba(2, 6, 28, 0.42);
  --shadow-soft: 0 14px 30px rgba(2, 6, 28, 0.28);

  --accent: #957fff;
  --accent2: #6952d8;
  --accent-rgb: 149, 127, 255;

  --bg0: #14102c;
  --bg1: #211b52;
  --bg2: #18245f;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 0.94rem;
  color: var(--text);
  background: radial-gradient(90% 70% at 12% -10%, rgba(255, 255, 255, 0.12), transparent 72%),
    linear-gradient(165deg, #0d1028, #121534 55%, #14183d);
}

/* Theme tokens (set on <body>) */
.theme-home {
  --accent: #957fff;
  --accent2: #6952d8;
  --accent-rgb: 149, 127, 255;
  --bg0: #1b1644;
  --bg1: #2f2479;
  --bg2: #1e2f8b;
}

.theme-find {
  --accent: #ff9d50;
  --accent2: #d96c2e;
  --accent-rgb: 255, 157, 80;
  --bg0: #2d1713;
  --bg1: #73361c;
  --bg2: #652341;
}

.theme-flip {
  --accent: #5cd392;
  --accent2: #2f9c68;
  --accent-rgb: 92, 211, 146;
  --bg0: #0f2930;
  --bg1: #1f6747;
  --bg2: #113e57;
}

.theme-fund {
  --accent: #7ba9ff;
  --accent2: #4b77d8;
  --accent-rgb: 123, 169, 255;
  --bg0: #101a34;
  --bg1: #182744;
  --bg2: #1a3052;
}

/* Blog: neutral soft blue-grey (not product-accented) */
.theme-blog {
  --accent: #9fb4d6;
  --accent2: #7c8fb2;
  --accent-rgb: 159, 180, 214;
  --bg0: #1b2233;
  --bg1: #2a3348;
  --bg2: #243044;
}

.theme-fund .shell::before {
  opacity: 0.58;
  filter: blur(8px);
}

.theme-fund .shell::after {
  opacity: 0.22;
}

.shell {
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
  background:
    radial-gradient(78% 58% at 10% 6%, rgba(255, 255, 255, 0.12), transparent 74%),
    radial-gradient(72% 52% at 92% 8%, rgba(var(--accent-rgb), 0.26), transparent 76%),
    linear-gradient(160deg, var(--bg0), var(--bg1) 56%, var(--bg2));
}

.shell::before,
.shell::after {
  content: "";
  position: absolute;
  left: -14%;
  right: -14%;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.shell::before {
  top: 14%;
  height: 320px;
  background: radial-gradient(65% 100% at 50% 0%, rgba(var(--accent-rgb), 0.26), transparent 74%);
  filter: blur(10px);
  opacity: 0.85;
}

.shell::after {
  top: 42%;
  height: 260px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0.35;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 30, 0.42);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
  text-shadow: 0 0 22px rgba(var(--accent-rgb), 0.35);
  white-space: nowrap;
}

.main-nav {
  justify-self: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  padding: 0.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
  padding: 0.48rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: 160ms ease;
  border: 1px solid transparent;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.is-active {
  color: var(--text);
  background: rgba(var(--accent-rgb), 0.18);
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 0 22px rgba(var(--accent-rgb), 0.22);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--stroke);
  background: var(--glass);
  color: var(--text);
  border-radius: 12px;
  padding: 0.45rem 0.75rem;
  font-weight: 650;
}

.login-btn {
  justify-self: end;
  text-decoration: none;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  color: var(--text);
  border-radius: 12px;
  padding: 0.52rem 0.95rem;
  font-weight: 650;
  white-space: nowrap;
}

.login-btn:hover {
  border-color: rgba(var(--accent-rgb), 0.55);
  box-shadow: 0 10px 22px rgba(var(--accent-rgb), 0.18);
}

main {
  position: relative;
  z-index: 1;
  padding: clamp(2.35rem, 4.5vw, 3.85rem) 0 clamp(2.85rem, 5.5vw, 4.5rem);
}

.section {
  position: relative;
  margin-top: clamp(2.85rem, 5.2vw, 4.25rem);
  padding-top: clamp(0.65rem, 1.4vw, 1.1rem);
  padding-bottom: clamp(0.65rem, 1.4vw, 1.1rem);
}

.section:first-of-type {
  margin-top: 0;
  padding-top: 0;
}

/* Full-bleed bands: pairs of sections alternate subtle light/dark (existing neutrals only) */
main > section.section::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}

main > section.section:nth-child(4n + 1)::before,
main > section.section:nth-child(4n + 2)::before {
  background: rgba(255, 255, 255, 0.035);
}

main > section.section:nth-child(4n + 3)::before,
main > section.section:nth-child(4n + 4)::before {
  background: rgba(0, 0, 0, 0.14);
}

/* Key panels: soft edge + depth (existing neutrals + theme accent only) */
.section-key .glass-panel,
.section-key.deal-breakdown,
.section-key .deal-breakdown {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 22px 48px rgba(2, 6, 28, 0.38),
    0 0 36px rgba(var(--accent-rgb), 0.12);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}

.theme-flip .shell::before {
  opacity: 1;
  height: 360px;
  background: radial-gradient(65% 100% at 50% 0%, rgba(var(--accent-rgb), 0.34), transparent 74%);
}

.theme-flip .shell::after {
  opacity: 0.45;
}

.hero--flip h1 {
  max-width: 16ch;
  font-size: clamp(2.55rem, 6.4vw, 5.1rem);
}

.hero--flip .hero-text {
  max-width: 58ch;
}

.hero--flip .hero-media {
  min-height: 360px;
  box-shadow: 0 28px 56px rgba(2, 6, 28, 0.5), 0 0 40px rgba(var(--accent-rgb), 0.18);
}

.mockup--flip {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 18px 40px rgba(0, 0, 0, 0.35);
}

.split-highlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  align-items: start;
}

.mini-stat-grid {
  display: grid;
  gap: 0.75rem;
}

.mini-stat {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 0.9rem 0.95rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.mini-stat span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

.mini-stat strong {
  display: block;
  font-size: 1.1rem;
  margin: 0.35rem 0 0.4rem;
}

.mini-stat p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.95rem;
}

.anchor-target {
  scroll-margin-top: 96px;
}

div.anchor-target {
  height: 1px;
}

.demo-card {
  padding: 1.15rem 1.2rem;
}

.demo-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
}

h1 {
  margin: 0.55rem 0 0.95rem;
  font-size: clamp(2.45rem, 6.2vw, 4.9rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 14ch;
  text-shadow: 0 14px 34px rgba(6, 8, 22, 0.55);
}

.platform-home .platform-panel {
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
}

.platform-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 6.8vw, 5rem);
}

.platform-hero-media .hero-visual {
  min-height: 260px;
}

.platform-cards {
  margin-top: 1.35rem;
}

.platform-statement {
  margin: 1.35rem 0 0;
  text-align: center;
  font-size: clamp(1.2rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.product-spotlight-panel {
  padding: clamp(1rem, 2.2vw, 1.35rem);
}

.product-spotlight .hero h2 {
  margin: 0.45rem 0 0.75rem;
  font-size: clamp(1.65rem, 3.8vw, 2.45rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.product-spotlight-visual {
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.product-spotlight-visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.product-spotlight--find .product-spotlight-panel {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(45, 23, 19, 0.42));
}

.theme-find.product-spotlight--find,
.product-spotlight--find {
  --section-tint: rgba(255, 157, 80, 0.08);
}

.product-spotlight--flip .product-spotlight-panel {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(15, 41, 48, 0.45));
}

.product-spotlight--fund .product-spotlight-panel {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(16, 26, 52, 0.48));
}

.card-link--find .card-accent {
  box-shadow: 0 0 14px rgba(255, 157, 80, 0.35);
}

.card-link--flip .card-accent {
  box-shadow: 0 0 14px rgba(92, 211, 146, 0.35);
}

.card-link--fund .card-accent {
  box-shadow: 0 0 14px rgba(123, 169, 255, 0.35);
}

.hero-text {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.42vw, 1.08rem);
  max-width: 48ch;
  line-height: 1.52;
}

.hero-text + .hero-text {
  margin-top: 0.7rem;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.cta-note {
  display: block;
  width: 100%;
  margin-top: 0.1rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.trust-line {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.cta-micro {
  display: block;
  width: 100%;
  margin-top: 0.05rem;
  font-size: 0.64rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.hero-proof {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 13px;
  padding: 0.78rem 1.25rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, border-color 160ms ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  box-shadow: 0 18px 34px rgba(var(--accent-rgb), 0.35), 0 10px 22px rgba(0, 0, 0, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 22px 40px rgba(var(--accent-rgb), 0.42), 0 14px 26px rgba(0, 0, 0, 0.32);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--stroke);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.22);
}

.btn-small {
  padding: 0.62rem 1rem;
  font-weight: 750;
}

.glass-panel {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.find-suburb-panel {
  padding: 1.25rem 1.5rem;
}

.find-suburb-heading {
  margin-top: 0.35rem;
}

.find-suburb-intro {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.find-suburb-intro code {
  font-size: 0.88em;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.08rem 0.28rem;
  border-radius: 6px;
}

.find-suburb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.find-suburb-input {
  flex: 1 1 220px;
  min-width: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.22);
  color: inherit;
  padding: 0.55rem 0.75rem;
  font: inherit;
}

.find-suburb-input:focus {
  outline: 2px solid rgba(var(--accent-rgb), 0.55);
  outline-offset: 2px;
}

.find-htag-status {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  min-height: 1.2em;
}

.top-renovation-suburbs-intro {
  margin-bottom: 1.15rem;
  max-width: 52ch;
}

.top-renovation-suburbs-loading {
  margin: 0;
  padding: 1.25rem 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
}

.top-renovation-suburbs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.05rem;
}

.top-renovation-suburbs-grid--gated {
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 768px) {
  .top-renovation-suburbs-grid--gated:not(.top-renovation-suburbs-grid--single) {
    grid-template-columns: minmax(200px, 1fr) minmax(0, 2.15fr);
  }
}

.top-renovation-suburbs-grid--single {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.top-renovation-gated-region {
  position: relative;
  min-width: 0;
  border-radius: 16px;
}

.top-renovation-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.05rem;
  align-items: stretch;
}

.top-renovation-card--preview {
  filter: blur(7px);
  opacity: 0.42;
  pointer-events: none;
  cursor: default;
  user-select: none;
}

.top-renovation-card--lead {
  position: relative;
  z-index: 1;
  transform: scale(1.03);
  transform-origin: center center;
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow:
    var(--shadow-soft),
    0 0 40px rgba(var(--accent-rgb), 0.32),
    0 0 72px rgba(var(--accent-rgb), 0.12);
}

.card.top-renovation-card.top-renovation-card--lead:hover {
  transform: scale(1.03) translateY(-5px);
  border-color: rgba(var(--accent-rgb), 0.62);
  box-shadow:
    0 26px 46px rgba(2, 6, 28, 0.42),
    0 0 48px rgba(var(--accent-rgb), 0.38),
    0 0 88px rgba(var(--accent-rgb), 0.16);
}

.top-renovation-pick-label {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.15rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(var(--accent-rgb), 0.55);
  background: rgba(var(--accent-rgb), 0.24);
  box-shadow:
    0 0 22px rgba(var(--accent-rgb), 0.38),
    0 0 40px rgba(var(--accent-rgb), 0.12);
}

.top-renovation-score-block {
  margin-top: 0.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
}

.top-renovation-lead-insight {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 550;
}

.top-renovation-gated-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  z-index: 2;
}

.top-renovation-gated-panel {
  pointer-events: auto;
  text-align: center;
  max-width: 22rem;
  padding: 1.15rem 1.35rem 1.25rem;
  border-radius: 18px;
  background: rgba(12, 18, 40, 0.42);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 48px rgba(4, 8, 24, 0.45),
    0 0 32px rgba(var(--accent-rgb), 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.top-renovation-gated-title {
  margin: 0 0 0.75rem;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
}

.top-renovation-gated-sub {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

.top-renovation-unlock-btn {
  width: 100%;
  max-width: 100%;
  justify-content: center;
}

.top-renovation-card {
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  cursor: pointer;
  text-align: left;
}

.top-renovation-card:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.65);
  outline-offset: 3px;
}

.top-renovation-card-head {
  margin: 0;
}

.top-renovation-card-title {
  margin: 0 0 0.4rem;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.25;
}

.top-renovation-card-state {
  font-weight: 650;
  color: rgba(255, 255, 255, 0.72);
}

.top-renovation-score {
  margin: 0;
  line-height: 1;
}

.top-renovation-score-num {
  margin: 0;
  line-height: 1;
  font-size: 2.05rem;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 22px rgba(var(--accent-rgb), 0.35);
}

.top-renovation-score-max {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.52);
  margin-left: 0.12rem;
}

.top-renovation-score-label {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: none;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.52);
}

.top-renovation-tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.top-renovation-tags li {
  margin: 0;
}

.top-renovation-tag {
  display: inline-block;
  padding: 0.2rem 0.48rem;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid rgba(var(--accent-rgb), 0.38);
  background: rgba(var(--accent-rgb), 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.top-renovation-search-btn {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-media {
  position: relative;
  padding: 1rem;
  min-height: 320px;
  display: grid;
  align-content: stretch;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.22), transparent 30%, transparent 70%, rgba(var(--accent-rgb), 0.18));
  opacity: 0.55;
}

.hero-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 240px;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  right: 16px;
  bottom: 16px;
  min-width: min(84%, 280px);
}

.overlay-card {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px;
  color: #fff;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-overlay h4 {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
}

.overlay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.75rem;
}

.overlay-item span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.overlay-item strong {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.1rem;
}

.overlay-item.accent strong {
  color: rgb(var(--accent-rgb));
}

.split-tag {
  position: absolute;
  top: 12px;
  z-index: 2;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(var(--accent-rgb), 0.4);
}

.split-tag.left {
  left: 12px;
}

.split-tag.right {
  right: 12px;
}

.split-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
}

.product-stack {
  display: grid;
  gap: 1rem;
}

.product-preview {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
  padding: 1rem;
}

.product-preview h3 {
  margin: 0 0 0.55rem;
}

#find-results-section .find-results-bridge {
  margin: 0 0 1rem;
  max-width: 38ch;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

#find-results-section .find-results-trust {
  margin: 0 0 0.85rem;
  max-width: 52ch;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.deal-breakdown {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  padding: 1.2rem 1.15rem 1.15rem;
}

.deal-breakdown h3 {
  margin: 0.35rem 0 0.8rem;
  font-weight: 800;
  max-width: 42ch;
  line-height: 1.25;
}

.deal-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.deal-breakdown-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 10, 24, 0.35);
  padding: 0.65rem;
}

.deal-breakdown-item span {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.68);
}

.deal-breakdown-item strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1rem;
}

.deal-breakdown-result {
  margin: 0.85rem 0 0;
  font-weight: 800;
  color: #8ff0a9;
}

.deal-breakdown-note {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

.deal-breakdown-highlight {
  border-color: rgba(143, 240, 169, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 22px 48px rgba(6, 12, 24, 0.38),
    0 0 34px rgba(143, 240, 169, 0.18);
}

.fund-status-panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(5, 10, 24, 0.38));
}

.fund-status-grid {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fund-status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
}

.fund-status-badge.is-sourcing {
  border-color: rgba(146, 167, 202, 0.55);
  background: rgba(146, 167, 202, 0.16);
  color: #d5e0f5;
}

.fund-status-badge.is-review {
  border-color: rgba(166, 188, 255, 0.55);
  background: rgba(166, 188, 255, 0.16);
  color: #dbe5ff;
}

.fund-status-badge.is-renovation {
  border-color: rgba(126, 178, 255, 0.6);
  background: rgba(126, 178, 255, 0.2);
  color: #e4f0ff;
}

.fund-status-badge.is-market {
  border-color: rgba(153, 225, 231, 0.58);
  background: rgba(153, 225, 231, 0.16);
  color: #dcf8fb;
}

.fund-status-badge.is-complete {
  border-color: rgba(140, 232, 189, 0.58);
  background: rgba(140, 232, 189, 0.16);
  color: #def8ea;
}

.fund-risk-medium {
  color: #ffe09e;
}

.fund-pack-hero {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.fund-pack-hero-image {
  width: 100%;
  min-height: 260px;
  max-height: 360px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.fund-overview-grid .card {
  min-height: 130px;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.09), rgba(8, 14, 28, 0.46));
}

.fund-overview-grid .card strong {
  font-size: 1.2rem;
  line-height: 1.2;
}

.fund-milestone-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.55rem;
}

.fund-milestone-row {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 14, 30, 0.5);
  padding: 0.5rem 0.55rem;
}

.fund-milestone-row span:first-child {
  font-size: 0.85rem;
  font-weight: 700;
}

.fund-budget-bars {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.fund-bar-row {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) 2.2fr auto;
  gap: 0.55rem;
  align-items: center;
}

.fund-bar-row span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.86);
}

.fund-bar-row strong {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.74);
}

.fund-bar {
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.fund-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #6e95dd, #9bbaf0);
  border-radius: inherit;
}

.fund-line-chart {
  margin-top: 0.8rem;
  position: relative;
  height: 130px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 24px);
}

.fund-line-chart span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #a7c2f3;
  box-shadow: 0 0 0 2px rgba(167, 194, 243, 0.22);
}

.fund-line-chart::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 12%;
  top: 0;
  bottom: 0;
  border-bottom: 2px solid rgba(167, 194, 243, 0.7);
  transform: skewY(-14deg);
  transform-origin: left bottom;
}

.fund-progress-track {
  margin-top: 0.8rem;
  width: 100%;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.fund-progress-track i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #6ea1e9, #a3c5ff);
}

.deal-breakdown-win {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #9af8b5;
  text-shadow: 0 0 28px rgba(143, 240, 169, 0.35);
}

.pipeline-flow .hero-text {
  max-width: 820px;
}

.flow-steps {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.flow-step {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 12, 24, 0.4);
  padding: 0.7rem;
}

.flow-step-kicker {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.flow-step h3 {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.35;
}

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

.cta-final {
  align-items: center;
}

.cta-final .section-title {
  margin-bottom: 0.5rem;
}

.cta-final p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93em;
  max-width: 48ch;
  line-height: 1.5;
}

.mockup {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.mockup-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.badge {
  font-size: 0.78rem;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(var(--accent-rgb), 0.45);
  background: rgba(var(--accent-rgb), 0.16);
}

.mockup-body {
  position: relative;
  border-radius: 12px;
  min-height: 210px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 14px, rgba(255, 255, 255, 0.03) 14px 28px);
}

.mockup-body::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 14px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 0 rgba(255, 255, 255, 0.22), 0 36px 0 rgba(255, 255, 255, 0.16);
}

.mockup-body::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 14px;
  width: 64%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.55);
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.52rem, 2.75vw, 2.18rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cards-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.card {
  position: relative;
  padding: 1.35rem 1.2rem 1.25rem;
  min-height: 7.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-rgb), 0.55);
  box-shadow: 0 26px 46px rgba(2, 6, 28, 0.42), 0 0 28px rgba(var(--accent-rgb), 0.18);
}

.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.45);
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 800;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93em;
  line-height: 1.45;
  max-width: 38ch;
}

a.card.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.card.card-link:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.95);
  outline-offset: 3px;
}

.card-link-hint {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

a.card.card-link:hover .card-link-hint {
  color: rgba(var(--accent-rgb), 0.95);
}

.demo-panel .demo-placeholder {
  margin-top: 1.1rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.28);
  background: rgba(4, 8, 22, 0.55);
  min-height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-placeholder-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

/* Find: suburb → signals → opportunities */
.signal-flow {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 10, 24, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 22rem;
}

.signal-flow-connector {
  text-align: center;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.85rem;
  line-height: 1.2;
  user-select: none;
}

.signal-flow .signal-flow-step {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.55rem 0.65rem;
}

.signal-flow-label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.2rem;
}

.signal-flow-step strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
}

.statement {
  margin: clamp(2rem, 4vw, 3rem) auto;
  max-width: 760px;
  text-align: center;
  font-size: clamp(1.15rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 0 26px rgba(var(--accent-rgb), 0.18);
}

.cta-strip {
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-strip p {
  margin: 0;
  font-weight: 750;
}

.journal-teaser-heading {
  margin-top: 2.25rem;
}

.journal-teaser-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 42rem;
}

.journal-teaser-list li {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 22, 0.42);
}

.journal-teaser-meta {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.35rem;
}

.journal-teaser-list strong {
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.placeholder {
  margin-top: 1.25rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.opportunity-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.opportunity-card {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 12, 24, 0.38);
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.opportunity-rank-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 3;
  padding: 0.2rem 0.45rem;
  border-radius: 7px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 12, 28, 0.82);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.opportunity-card--rank-1 {
  border-color: rgba(var(--accent-rgb), 0.58);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.28),
    0 0 36px rgba(var(--accent-rgb), 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.opportunity-card--rank-2 {
  border-color: rgba(var(--accent-rgb), 0.38);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(var(--accent-rgb), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.opportunity-card--rank-3 {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.18),
    0 0 14px rgba(var(--accent-rgb), 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.opportunity-card.is-focused {
  border-color: rgba(255, 191, 115, 0.65);
  box-shadow: 0 0 0 2px rgba(255, 191, 115, 0.24), 0 14px 28px rgba(0, 0, 0, 0.22);
}

.opportunity-card.is-paywalled {
  position: relative;
  overflow: hidden;
}

.opportunity-card.is-paywalled > *:not(.paywall-overlay) {
  filter: blur(2.5px);
  opacity: 0.38;
  pointer-events: none;
  user-select: none;
}

.paywall-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem;
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.18), rgba(8, 12, 24, 0.72));
}

.paywall-overlay-title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.opportunity-streetview {
  width: 100%;
  height: 148px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  margin-bottom: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.opportunity-streetview-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.22rem;
  text-align: center;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.opportunity-streetview-fallback span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.streetview-fallback-icon {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.8;
}

.opportunity-streetview-fallback small {
  margin-top: 0.1rem;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.02em;
}

.opportunity-attribution {
  margin: -0.25rem 0 0.45rem;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.62);
}

.opportunity-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.opportunity-top h3 {
  margin: 0;
  font-size: 0.98rem;
}

.opportunity-top-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
}

.opportunity-longheld-tag {
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #e8d4a8;
  border: 1px solid rgba(232, 212, 168, 0.45);
  background: rgba(232, 212, 168, 0.1);
}

.opportunity-condition-tag {
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #fff0c6;
  border: 1px solid rgba(255, 210, 132, 0.42);
  background: rgba(255, 210, 132, 0.14);
}

.opportunity-badge {
  border-radius: 999px;
  padding: 0.22rem 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  border: 1px solid transparent;
}

.opportunity-badge.badge-high {
  color: #9af8b5;
  border-color: rgba(143, 240, 169, 0.4);
  background: rgba(143, 240, 169, 0.13);
}

.opportunity-badge.badge-medium {
  color: #ffd08f;
  border-color: rgba(255, 187, 92, 0.4);
  background: rgba(255, 187, 92, 0.13);
}

.opportunity-badge.badge-watchlist {
  color: #b8c9ff;
  border-color: rgba(140, 170, 255, 0.38);
  background: rgba(120, 150, 255, 0.12);
}

.opportunity-badge.badge-low {
  color: #d2d8ea;
  border-color: rgba(210, 216, 234, 0.4);
  background: rgba(210, 216, 234, 0.1);
}

.opportunity-meta {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.opportunity-stats {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.35rem;
}

.opportunity-stats p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.8rem;
}

.opportunity-stats span {
  color: rgba(255, 255, 255, 0.64);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.62rem;
  font-weight: 700;
}

.opportunity-insight {
  margin: 0.65rem 0 0.35rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.opportunity-reasons {
  margin: 0.04rem 0 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 28, 52, 0.62);
  padding: 0.62rem 0.68rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.opportunity-why-scored {
  margin: 0.05rem 0 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 30, 0.5);
  padding: 0.58rem 0.66rem;
}

.opportunity-why-scored summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
}

.opportunity-why-scored summary::-webkit-details-marker {
  display: none;
}

.opportunity-why-scored[open] summary {
  margin-bottom: 0.42rem;
}

.opportunity-factor-list {
  margin: 0 0 0.45rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.25rem;
}

.opportunity-factor-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.34rem 0.45rem;
}

.opportunity-factor-list li span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.88);
}

.opportunity-factor-list li strong {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.78);
}

.opportunity-factor-list li em {
  grid-column: 1 / -1;
  font-style: normal;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.58);
}

.opportunity-detail-hero {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1.15fr;
  gap: 1rem;
  padding: 1rem;
}

.opportunity-detail-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.opportunity-detail-head h1 {
  max-width: none;
  font-size: clamp(1.7rem, 4.2vw, 2.8rem);
}

.opportunity-detail-grid .card h3 {
  font-size: 1rem;
}

.opportunity-detail-score {
  font-size: clamp(1.65rem, 5vw, 2.25rem) !important;
  font-weight: 800;
  color: var(--accent) !important;
}

.opportunity-detail-sections .card {
  min-height: 220px;
}

.detail-list {
  margin: 0.5rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  line-height: 1.45;
}

.opportunity-reasons-title {
  margin: 0 0 0.38rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.opportunity-reasons-title::before {
  content: "⚡ ";
  color: rgba(255, 207, 120, 0.95);
}

.opportunity-reasons ul {
  margin: 0;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.78rem;
  line-height: 1.45;
}

.top-opportunity-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.55rem;
}

.top-opportunity-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 26, 0.4);
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.top-opportunity-row:hover,
.top-opportunity-row:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(14, 20, 38, 0.62);
  outline: none;
}

.top-opportunity-main {
  min-width: 0;
}

.top-opportunity-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.top-opportunity-rank {
  margin: 0;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
}

.top-opportunity-address {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
}

.top-opportunity-meta {
  margin: 0.15rem 0 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.68);
}

.letter-tools {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.7rem;
}

.letter-template-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.letter-editor {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 22, 0.55);
  color: #fff;
  font-family: var(--font);
  font-size: 0.86rem;
  line-height: 1.5;
  padding: 0.8rem;
  resize: vertical;
}

.action-pack {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 22, 0.5);
  padding: 0.68rem 0.65rem;
  margin-top: auto;
}

.action-pack-title,
.action-pack-label,
.shortlist-label {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.action-pack-actions,
.shortlist-actions {
  margin-top: 0.58rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.action-pack-actions .btn[data-save-address] {
  order: 1;
}

.action-pack-actions .btn[data-copy-address] {
  order: 2;
}

.action-pack-actions .btn[data-print-address],
.action-pack-actions .btn[data-send-to-flip] {
  order: 3;
}

.letter-template-select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 12, 26, 0.62);
  color: #fff;
  padding: 0.52rem 0.6rem;
  font-size: 0.78rem;
  font-family: var(--font);
}

.shortlist-list {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.shortlist-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 26, 0.4);
  padding: 0.72rem;
}

.shortlist-card.is-focused {
  border-color: rgba(255, 191, 115, 0.65);
  box-shadow: 0 0 0 2px rgba(255, 191, 115, 0.24), 0 12px 28px rgba(0, 0, 0, 0.25);
}

.shortlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
}

.shortlist-header h3 {
  margin: 0;
  font-size: 0.92rem;
}

.shortlist-meta {
  margin: 0.32rem 0 0.55rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.68);
}

.shortlist-template-line {
  margin: 0 0 0.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.45rem 0.52rem;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 22, 0.4);
}

.shortlist-template-line span {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
}

.shortlist-template-line strong {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.9);
}

.shortlist-reasons {
  margin: 0 0 0.6rem;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.42;
}

.shortlist-empty {
  margin: 0;
  padding: 0.85rem;
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.76);
  background: rgba(7, 10, 22, 0.38);
}

.action-pack-helper {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.action-pack-note {
  margin: 0.45rem 0 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.68);
}

.shortlist-batch-actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.shortlist-batch-actions .btn {
  min-width: 140px;
}

.send-to-flip-helper {
  margin: 0.42rem 0 0;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.01em;
}

.before-after-section {
  max-width: 1180px;
  margin: 90px auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.section-heading .eyebrow {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.section-heading h2 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 0.98;
  margin: 10px 0 16px;
}

.section-heading p {
  color: rgba(255,255,255,0.72);
  font-size: 0.94rem;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.before-after-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
  backdrop-filter: blur(16px);
}

.before-after-card::before {
  content: "";
  display: block;
  height: 5px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.before-card::before {
  background: linear-gradient(90deg, #ff7a1a, #ffb35a);
}

.after-card::before {
  background: linear-gradient(90deg, #3ddb6f, #8ff0a9);
}

.before-after-label {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 900;
  text-transform: uppercase;
}

.before-after-media {
  width: 100%;
  height: 340px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
}

.before-after-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.before-after-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 20% 0%, rgba(255, 255, 255, 0.18), transparent 68%);
}

.before-after-media::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 8px;
  border-radius: 999px;
}

.before-card .before-after-media::after {
  background: linear-gradient(90deg, #ff7a1a, #ffb35a);
}

.after-card .before-after-media::after {
  background: linear-gradient(90deg, #3ddb6f, #8ff0a9);
}

.before-after-media-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 34px;
  z-index: 1;
}

.before-after-media-copy span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.35);
}

.before-after-media-copy p {
  margin: 0.45rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.before-after-card h3 {
  margin: 18px 0 8px;
  font-size: 24px;
}

.before-after-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.94rem;
  line-height: 1.45;
  max-width: 42ch;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.35rem 0 1.75rem;
  color: var(--muted);
  background: rgba(6, 8, 22, 0.22);
  backdrop-filter: blur(10px);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero--flip .hero-media {
    min-height: 300px;
  }

  .split-highlight {
    grid-template-columns: 1fr;
  }

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

  .cta-strip {
    align-items: flex-start;
  }

  .fund-pack-hero {
    grid-template-columns: 1fr;
  }

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

  .product-spotlight .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-inner {
    grid-template-columns: 1fr auto auto;
    align-items: start;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-self: stretch;
    justify-content: flex-start;
    width: 100%;
    display: none;
    padding: 0.55rem;
    border-radius: 14px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    margin-top: 0.15rem;
  }

  .login-btn {
    grid-column: 3;
    margin-top: 0.15rem;
  }

  .cards-3,
  .cards-4,
  .cards-2 {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 800px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
  .before-after-card img,
  .before-after-media {
    height: 260px;
  }

  .deal-breakdown-grid {
    grid-template-columns: 1fr;
  }

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

  .flow-steps {
    grid-template-columns: 1fr;
  }

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

  .opportunity-detail-hero {
    grid-template-columns: 1fr;
  }

  .shortlist-list {
    grid-template-columns: 1fr;
  }

  .action-pack-actions,
  .shortlist-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .action-pack {
    padding: 0.75rem;
  }

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

  .shortlist-batch-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .top-opportunity-row {
    grid-template-columns: auto 1fr;
    gap: 0.55rem;
  }

  .top-opportunity-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }
}
