/* ==========================================================================
   Zip-FixerUpperHomes.com - fix & flip funnel design system

   Dark graphite theme matched to the Connected Investors trial page the
   funnel hands off to (trial.connectedinvestors.com): #323232 graphite
   ground, lime-to-cyan brand gradient, orange-to-yellow CTA gradient with
   graphite type.

   Loaded last, after normalize.min.css and main.css (which supplies slick).
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Connected Investors brand */
  --green:       #68DE1F;
  --green-dark:  #12892A;
  --cyan:        #0FC6DB;
  --orange:      #FF6902;
  --orange-deep: #FF5C00;
  --yellow:      #FFDE14;

  /* Graphite surfaces, darkest ground to lightest raised panel */
  --graphite-900: #242424;
  --graphite-800: #2C2C2C;
  --graphite:     #323232;
  --graphite-700: #363636;
  --graphite-600: #414141;
  --line:         #4A4A4A;
  --line-soft:    rgba(140,140,140,0.28);

  /* Type */
  --text:         #FFFFFF;
  --text-body:    #DFDFDF;
  --text-muted:   #9A9A9A;
  --text-dim:     #8C8C8C;

  --white:       #FFFFFF;
  --red:         #FF6B6B;

  --grad-brand: linear-gradient(131deg, #68DE1F 26.64%, #0FC6DB 89.13%);
  --grad-cta:   linear-gradient(309deg, #FF5C00 -44.88%, #FFDE14 101.04%);
  --grad-cta-hover: linear-gradient(312deg, #FF5C00 -52.66%, #FFDE14 61.45%);

  --font: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 8px;
  --radius-btn: 4px;
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.5);
  --shadow-md: 0 12px 30px rgba(0,0,0,0.38);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.28);
  --shadow-cta: 0 4px 16px rgba(255,148,88,0.32);
}

html { scroll-behavior: smooth; background: var(--graphite); }

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text-body);
  background: var(--graphite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

/* Gradient type, the way the CI pages set their headline accents */
.gradient-text,
.hero-h1 span,
.stat-value,
.claim-line .claim-count {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--green);
  -webkit-text-fill-color: transparent;
}

/* ─── HEADER ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 78px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(44,44,44,0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.header-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header-brand .brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  box-shadow: 0 5px 16px rgba(15,198,219,0.3);
}
.header-brand .brand-mark svg { width: 24px; height: 24px; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.header-cta { display: none; text-align: right; }
.header-cta-main {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.header-cta-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
}
@media (min-width: 768px) {
  .header-cta { display: block; }
  .brand-name { font-size: 1.1rem; }
  .brand-tagline { font-size: 0.7rem; }
}

/* ─── HERO ───────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: url(../images/bg.jpg) center/cover no-repeat;
  padding: 100px 20px 56px;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(36,36,36,0.95) 0%, rgba(50,50,50,0.90) 55%, rgba(36,36,36,0.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  text-align: center;
}
@media (min-width: 768px) { #hero { padding-top: 132px; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-brand);
  color: var(--graphite);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(15,198,219,0.25);
  animation: fadeDown 0.7s ease both;
}
.hero-h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  animation: fadeDown 0.7s 0.1s ease both;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 24px;
  animation: fadeDown 0.7s 0.2s ease both;
}

/* ─── PROGRESS BAR (persistent across funnel steps) ─ */
.progress-strip {
  max-width: 680px;
  margin: 0 auto 16px;
  animation: fadeIn 0.8s 0.25s ease both;
}
.progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 7px;
}
.progress-label .progress-pct { color: var(--text-muted); }
.progress-track {
  height: 7px;
  border-radius: 100px;
  background: var(--graphite-600);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--grad-cta);
  transition: width 0.5s ease;
}

/* ─── SEARCH / OPT-IN CARD ───────────────────────── */
.search-card {
  background: var(--graphite-700);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  padding: 26px 26px 22px;
  margin-bottom: 26px;
  box-shadow: var(--shadow-lg);
  text-align: left;
  animation: fadeIn 0.8s 0.3s ease both;
}
.search-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
  text-align: center;
}
@media (min-width: 540px) { .search-label { text-align: left; } }

.search-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.search-input,
.field-input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--graphite-900);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input::placeholder,
.field-input::placeholder { color: var(--text-dim); }
.search-input:focus,
.field-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(15,198,219,0.22);
}
.search-input.error,
.field-input.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255,107,107,0.18);
}
.search-btn,
.optin-btn {
  height: 54px;
  padding: 0 26px;
  background-image: var(--grad-cta);
  color: var(--graphite);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-cta);
  transition: background-image 0.3s ease, transform 0.1s, box-shadow 0.2s;
  width: 100%;
}
.search-btn:hover,
.optin-btn:hover { background-image: var(--grad-cta-hover); }
.search-btn:active,
.optin-btn:active { transform: scale(0.99); }
.optin-btn {
  margin-top: 4px;
  font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(255,148,88,0.35);
}

@media (min-width: 540px) {
  .search-row { flex-direction: row; gap: 8px; }
  .search-row .search-btn { width: auto; }
}

.search-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.form-error {
  display: none;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
}
.form-error.visible { display: block; }

/* Second half of the two-step form - hidden until the location is confirmed */
.reveal-block {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.reveal-block.visible { display: block; animation: fadeDown 0.45s ease both; }
.reveal-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.reveal-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.reveal-note strong { color: var(--green); }
.field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
@media (min-width: 540px) { .field-grid.two-up { grid-template-columns: 1fr 1fr; } }
.field-hint {
  display: block;
  margin: 2px 0 10px;
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ─── TRUST ROW ──────────────────────────────────── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  animation: fadeUp 0.8s 0.45s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-body);
  font-size: 0.82rem;
  font-weight: 700;
}
.trust-item svg { flex-shrink: 0; }

/* ─── PROPERTY STRIP ─────────────────────────────── */
.properties-section {
  background: var(--graphite-800);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.property-slider-wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.prop-card {
  margin: 0 10px;
  background: var(--graphite-700);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.prop-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.prop-card img { width: 100%; height: 170px; object-fit: cover; display: block; }
.prop-card-body { padding: 14px 16px 18px; }
.prop-badge {
  display: inline-block;
  background: rgba(104,222,31,0.16);
  border: 1px solid rgba(104,222,31,0.32);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.prop-specs { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.prop-discount {
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
}

/* Slick overrides */
.slick-dots { display: none; }

/* ─── STATS BAND ─────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--graphite) 0%, var(--graphite-900) 100%);
  padding: 54px 20px;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
}
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-value {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.stat-label {
  margin-top: 6px;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── SECTION HEADERS ────────────────────────────── */
.section-header { text-align: center; margin-bottom: 44px; padding: 0 20px; }
.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.section-header p { font-size: 1rem; color: var(--text-muted); }

/* ─── FEATURES ───────────────────────────────────── */
.features-section { background: var(--graphite); padding: 76px 20px; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feat-card {
  background: var(--graphite-700);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.feat-card.blue::before   { background: var(--cyan); }
.feat-card.green::before  { background: var(--green); }
.feat-card.orange::before { background-image: var(--grad-cta); }
.feat-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feat-card.blue   .feat-icon { background: rgba(15,198,219,0.16); }
.feat-card.green  .feat-icon { background: rgba(104,222,31,0.16); }
.feat-card.orange .feat-icon { background: rgba(255,105,2,0.16); }
.feat-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feat-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* ─── HOW IT WORKS ───────────────────────────────── */
.how-section {
  background: var(--graphite-800);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 76px 20px;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: var(--grad-brand);
    opacity: 0.5;
    z-index: 0;
  }
}
.step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background-image: var(--grad-cta);
  color: var(--graphite);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(255,148,88,0.35);
  border: 4px solid var(--graphite-800);
}
.step-item h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ─── EDUCATIONAL CONTENT ────────────────────────── */
.edu-section { background: var(--graphite); padding: 76px 20px; }
.edu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) { .edu-grid { grid-template-columns: 1fr 1fr; } }
.edu-block {
  border-left: 3px solid transparent;
  border-image: var(--grad-brand) 1;
  padding-left: 20px;
}
.edu-block h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.edu-block p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }
.edu-block p + p { margin-top: 12px; }

/* ─── CTA BANNER ─────────────────────────────────── */
.cta-section {
  position: relative;
  background: var(--graphite-900);
  padding: 68px 20px;
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-brand);
  opacity: 0.09;
}
.cta-section h2,
.cta-section p,
.cta-section .cta-btn { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto 28px;
}
.cta-btn {
  display: inline-block;
  background-image: var(--grad-cta);
  color: var(--graphite);
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255,148,88,0.35);
  transition: background-image 0.3s ease, transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover {
  background-image: var(--grad-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,148,88,0.42);
}

/* ─── STEP 2 : TRIAL PAGE ────────────────────────── */
.step-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: url(../images/bg.jpg) center/cover no-repeat;
  padding: 100px 20px 56px;
}
.step-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(36,36,36,0.96) 0%, rgba(50,50,50,0.92) 55%, rgba(36,36,36,0.96) 100%);
}
@media (min-width: 768px) { .step-page { padding-top: 132px; } }
.step-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  text-align: center;
}
.step-card {
  background: var(--graphite-700);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  text-align: left;
  animation: fadeIn 0.7s 0.2s ease both;
}
.claim-line {
  font-size: clamp(1.3rem, 3.2vw, 1.9rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 8px;
  text-align: center;
}
.claim-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 22px;
}
.claim-points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.claim-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
}
.claim-points li:last-child { border-bottom: none; }
.claim-points svg { flex-shrink: 0; margin-top: 3px; }
.trial-btn {
  display: block;
  width: 100%;
  background-image: var(--grad-cta);
  color: var(--graphite);
  font-size: 1.08rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  padding: 18px 24px;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(255,148,88,0.38);
  transition: background-image 0.3s ease, transform 0.15s;
}
.trial-btn:hover { background-image: var(--grad-cta-hover); transform: translateY(-2px); }
.trial-btn.disabled {
  background-image: none;
  background-color: var(--graphite-600);
  color: var(--text-muted);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}
.trial-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.scarcity-note {
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(104,222,31,0.09);
  border: 1px solid rgba(104,222,31,0.26);
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ─── STATIC CONTENT PAGES (privacy / terms) ─────── */
.doc-page { padding: 110px 20px 60px; background: var(--graphite-800); }
.doc-inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--graphite-700);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 36px 32px;
  color: var(--text-body);
}
.doc-inner h1, .doc-inner h2, .doc-inner h3, .doc-inner b, .doc-inner strong { color: var(--text); }
.doc-inner a { color: var(--cyan); }

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
  background: var(--graphite-900);
  border-top: 1px solid var(--line);
  padding: 28px 20px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-mark {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--graphite);
}
.footer-brand .brand-mark svg { width: 20px; height: 20px; }
.footer-brand-name { font-weight: 700; color: var(--text); font-size: 0.92rem; }
.footer-brand-text { font-size: 0.82rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── AUTOCOMPLETE DROPDOWN (devbridge) ──────────── */
.autocomplete-suggestions {
  background: var(--graphite-700);
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
  z-index: 200;
}
.autocomplete-suggestion {
  padding: 10px 16px;
  font-size: 0.92rem;
  color: var(--text-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.autocomplete-selected { background: var(--graphite-600); color: var(--text); }
.autocomplete-suggestions strong { font-weight: 800; color: var(--cyan); }
