/* StayEngine Landing Page Styles */

:root {
  --navy:      #0f172a;
  --slate:     #1e293b;
  --muted:     #94a3b8;
  --amber:     #f59e0b;
  --amber-lt:  #fbbf24;
  --blue:      #38bdf8;
  --white:     #ffffff;
  --offwhite:  #f8fafc;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(15,23,42,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-logo {
  font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--amber); }
.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: 0.875rem; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  background: var(--amber); color: var(--navy) !important;
  font-weight: 600; padding: 0.4rem 1rem;
  border-radius: 6px; transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--amber-lt) !important; color: var(--navy) !important; }

/* ─── HERO ────────────────────────────────────── */

.hero {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 5rem 2rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(56,189,248,0.12) 0%, transparent 70%);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.25);
  color: var(--blue); font-size: 0.8rem; font-weight: 600;
  padding: 0.3rem 0.8rem; border-radius: 999px;
  margin-bottom: 1.5rem; letter-spacing: 0.03em; text-transform: uppercase;
}
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
  max-width: 820px; margin-bottom: 1.25rem;
}
.hero-headline span { color: var(--amber); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted); max-width: 600px; margin-bottom: 2.5rem; line-height: 1.7;
}
.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; align-items: center;
  margin-bottom: 3rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--amber); color: var(--navy);
  font-weight: 700; font-size: 1rem;
  padding: 0.85rem 2rem; border-radius: 8px;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--amber-lt); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--muted);
  font-weight: 500; font-size: 0.95rem;
  padding: 0.85rem 1.5rem; border-radius: 8px;
  text-decoration: none; transition: color 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }

.hero-image-wrap {
  width: 100%; max-width: 900px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.hero-image-wrap img { width: 100%; display: block; }

.hero-social-proof {
  margin-top: 2.5rem; display: flex; align-items: center;
  gap: 0.75rem; color: var(--muted); font-size: 0.875rem;
}
.hero-social-proof strong { color: var(--white); }

/* ─── LOGOS ────────────────────────────────────── */

.logos {
  padding: 3rem 2rem;
  text-align: center;
}
.logos-label {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.5rem; opacity: 0.7;
}
.logos-row {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.logo-chip {
  font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em;
  color: var(--muted); opacity: 0.5;
  transition: opacity 0.2s; padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.06); border-radius: 8px;
}
.logo-chip:hover { opacity: 0.75; }

/* ─── SECTION BASE ────────────────────────────── */

.section {
  padding: 5rem 2rem;
}
.section-alt { background: var(--slate); }
.section-header {
  text-align: center; max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-eyebrow {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 0.75rem; font-weight: 600;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--muted); line-height: 1.7;
}

/* ─── FEATURE GRID ─────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 2rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.6rem;
  background: rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.2);
}
.feature-card h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem;
}
.feature-card p { color: var(--muted); font-size: 0.925rem; line-height: 1.6; }
.feature-tag {
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--amber);
  background: rgba(245,158,11,0.1);
  padding: 0.2rem 0.6rem; border-radius: 4px;
}

/* ─── SPLIT SECTIONS ───────────────────────────── */

.split { max-width: 1100px; margin: 0 auto; }
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.split-row.reverse { direction: rtl; }
.split-row.reverse > * { direction: ltr; }

.split-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 1rem;
}
.split-text p { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.split-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.split-bullets li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.95rem; color: var(--muted);
}
.split-bullets li strong { color: var(--white); }
.split-check {
  flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px;
  background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--amber);
}

.split-img {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.split-img img { width: 100%; display: block; }

/* ─── STAT STRIP ───────────────────────────────── */

.stat-strip {
  background: var(--amber);
  padding: 3rem 2rem;
  text-align: center;
}
.stat-strip .stats-row {
  display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
  max-width: 800px; margin: 0 auto;
}
.stat-strip .stat { text-align: center; }
.stat-strip .stat-num {
  font-size: 2.8rem; font-weight: 900; letter-spacing: -0.03em;
  color: var(--navy); line-height: 1;
}
.stat-strip .stat-label {
  font-size: 0.875rem; color: rgba(15,23,42,0.7);
  margin-top: 0.3rem; font-weight: 500;
}

/* ─── PRICING ──────────────────────────────────── */

.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; max-width: 900px; margin: 0 auto;
}
.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card.popular {
  border-color: var(--amber);
  box-shadow: 0 0 0 2px rgba(245,158,11,0.2);
  position: relative;
}
.pricing-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--navy);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.25rem 0.9rem; border-radius: 999px;
  text-transform: uppercase; white-space: nowrap;
}
.pricing-name {
  font-size: 0.875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.75rem;
}
.pricing-price { margin-bottom: 0.5rem; }
.pricing-amount { font-size: 3rem; font-weight: 900; letter-spacing: -0.03em; }
.pricing-period { font-size: 0.9rem; color: var(--muted); }
.pricing-desc {
  font-size: 0.875rem; color: var(--muted); margin: 1rem 0 1.75rem;
  line-height: 1.6;
}
.pricing-features { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.pricing-features li {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.9rem; color: var(--muted);
}
.pricing-check { color: #34d399; font-size: 0.8rem; flex-shrink: 0; }

/* ─── CTA SECTION ──────────────────────────────── */

.cta-section {
  background: linear-gradient(135deg, var(--slate) 0%, var(--navy) 100%);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem;
}
.cta-section p { color: var(--muted); font-size: 1.1rem; margin-bottom: 2rem; }

/* ─── FOOTER ───────────────────────────────────── */

.footer {
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-weight: 700; font-size: 1rem; }
.footer-logo span { color: var(--amber); }
.footer-copy { font-size: 0.8rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ─── EMAIL CAPTURE ─────────────────────────────── */

.email-capture-wrap {
  display: flex; flex-direction: column; align-items: center;
  width: 100%;
}
.email-capture {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; flex-wrap: wrap;
}
.email-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 0.75rem 1rem;
  color: var(--white); font-size: 0.95rem;
  min-width: 240px; outline: none;
  transition: border-color 0.2s;
}
.email-input::placeholder { color: var(--muted); }
.email-input:focus { border-color: rgba(245,158,11,0.5); }
.email-note {
  display: block; font-size: 0.75rem; color: var(--muted);
  margin-top: 0.6rem; opacity: 0.7;
}
.waitlist-success {
  font-size: 0.95rem; color: #34d399; margin-top: 0.75rem;
  display: flex; align-items: center; gap: 0.4rem;
}

/* ─── RESPONSIVE ───────────────────────────────── */

@media (max-width: 768px) {
  .split-row, .split-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .split-row.reverse > * { direction: ltr; }
  .nav-links { display: none; }
  .hero { padding: 3rem 1.5rem 2rem; }
  .section { padding: 3.5rem 1.5rem; }
  .stat-strip .stats-row { gap: 2rem; }
  .footer { flex-direction: column; text-align: center; }
}

/* ─── HERO IMAGE PLACEHOLDER (pre-load) ─────────── */
.hero-image-wrap { background: #1e293b; min-height: 200px; }

/* ─── FOUNDING MEMBER PRE-SALE BANNER ──────────── */

.founding-banner {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 24px;
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.founding-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.5), transparent);
}
.founding-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: #f59e0b;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.founding-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
}
.founding-title span { color: #f59e0b; }
.founding-desc {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.btn-founding {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f59e0b;
  color: #0f172a;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(245,158,11,0.35), 0 0 0 1px rgba(245,158,11,0.1);
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.btn-founding:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.5), 0 0 0 1px rgba(245,158,11,0.2);
}
.founding-note {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.6rem;
  margin-bottom: 0.25rem;
  opacity: 0.75;
}
.waitlist-or {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  display: block;
  text-align: center;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #94a3b8;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.25); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero > * { animation: fadeUp 0.6s ease-out both; }
.hero-eyebrow { animation-delay: 0.05s; }
.hero-headline { animation-delay: 0.1s; }
.hero-sub    { animation-delay: 0.2s; }
.hero-cta    { animation-delay: 0.3s; }
.hero-image-wrap { animation-delay: 0.4s; }

/* ─── AUTH PAGES (login / signup) ──────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.auth-card {
  background: var(--slate);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.auth-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.auth-logo span { color: var(--amber); }
.auth-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.4rem; }
.auth-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.75rem; }
.auth-error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-align: left;
}
.auth-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { text-align: left; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--muted); margin-bottom: 0.4rem; }
.form-group input {
  width: 100%;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-group input:focus { outline: none; border-color: var(--amber); }
.auth-footer { margin-top: 1.5rem; font-size: 0.875rem; color: var(--muted); }
.auth-footer a { color: var(--amber); text-decoration: none; }
.auth-footer a:hover { text-decoration: underline; }

/* ─── DASHBOARD ─────────────────────────────────────── */
.dashboard-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.dashboard-header { margin-bottom: 2.5rem; }
.dashboard-header h1 { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.dashboard-sub { color: var(--muted); font-size: 1rem; }
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.dash-card {
  background: var(--slate);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1.75rem;
}
.dash-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.dash-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.dash-card p { color: var(--muted); font-size: 0.875rem; margin-bottom: 1rem; }
.dash-card-note { font-size: 0.75rem; color: #64748b; margin-top: 0.5rem; font-style: italic; }
.dashboard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: var(--muted);
  font-size: 0.85rem;
}
.nav-active { color: var(--amber) !important; font-weight: 600; }

/* ─── PROPERTIES PAGE ─────────────────────────────────── */
.properties-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.properties-header { margin-bottom: 2rem; }
.properties-header h1 { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.properties-sub { color: var(--muted); font-size: 1rem; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--slate);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  margin-bottom: 2.5rem;
}
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h2 { font-size: 1.4rem; font-weight: 600; margin-bottom: 0.5rem; }
.empty-state p { color: var(--muted); font-size: 0.95rem; }

/* Table */
.properties-table-wrap {
  background: var(--slate);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.properties-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.properties-table th {
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-weight: 500;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.properties-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
  color: var(--white);
}
.properties-table tr:last-child td { border-bottom: none; }
.properties-table tr:hover td { background: rgba(255,255,255,0.02); }
.prop-name-cell strong { display: block; font-size: 0.95rem; }
.prop-created { font-size: 0.75rem; color: var(--muted); display: block; margin-top: 0.2rem; }
.prop-rate { font-weight: 600; color: var(--amber); }
.prop-platforms { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.platform-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
}
.platform-badge.airbnb { background: rgba(255,90,90,0.15); color: #ff5a5a; }
.platform-badge.vrbo { background: rgba(255,140,0,0.15); color: #ff8c00; }
.platform-badge.booking { background: rgba(0,120,212,0.15); color: #0078d4; }
.no-platforms { color: var(--muted); }
.prop-actions { display: flex; gap: 0.5rem; }
.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-edit {
  background: rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.25);
  color: var(--blue);
}
.btn-edit:hover { background: rgba(56,189,248,0.2); }
.btn-delete {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  color: #fca5a5;
}
.btn-delete:hover { background: rgba(239,68,68,0.2); }
.btn-ghost-sm {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-sm:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }

/* Form */
.prop-form-wrap {
  background: var(--slate);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2rem;
}
.prop-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.prop-form-header h2 { font-size: 1.3rem; font-weight: 600; }
.prop-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.form-actions { margin-top: 0.5rem; }