/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0e0c0a;
  --surface: #181512;
  --surface-2: #211e1a;
  --border: #2e2924;
  --text: #f8f5ef;
  --text-2: #9e9488;
  --text-3: #625d54;
  --accent: #e8a935;
  --accent-dim: rgba(232,169,53,0.12);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14,12,10,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-tag {
  font-size: 12px;
  font-weight: 500;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(232,169,53,0.2);
  padding: 4px 10px;
  border-radius: 20px;
}

/* === HERO === */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,169,53,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,169,53,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(232,169,53,0.06) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; }
.price-badge {
  display: flex;
  align-items: baseline;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
}
.price-period { font-size: 13px; color: var(--text-2); }
.hero-trial-hint { font-size: 12px; color: var(--accent); margin-top: 4px; }
.hero-hint { font-size: 12px; color: var(--text-3); }

.hero-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #0e0c0a;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.hero-cta:hover { opacity: 0.9; }

.pricing-cta {
  display: inline-block;
  background: var(--accent);
  color: #0e0c0a;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
  margin-bottom: 32px;
}
.pricing-cta:hover { opacity: 0.9; }

/* === INTAKE CARD === */
.intake-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,169,53,0.06);
}
.intake-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-2);
}
.intake-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-3);
}
.intake-dot.active { background: #4ade80; }
.intake-time { margin-left: auto; color: var(--text-3); font-size: 11px; }
.intake-fields { padding: 16px 20px; }
.field-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(46,41,36,0.5);
}
.field-row:last-child { border-bottom: none; }
.field-label { font-size: 11px; color: var(--text-3); font-weight: 500; letter-spacing: 0.04em; }
.field-val { font-size: 13px; color: var(--text-2); font-weight: 400; }
.intake-divider { height: 1px; background: var(--border); margin: 0; }
.gen-items { padding: 12px 20px 16px; }
.gen-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(46,41,36,0.4);
}
.gen-item:last-child { border-bottom: none; }
.gen-icon {
  width: 28px;
  height: 28px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,169,53,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.gen-info { flex: 1; }
.gen-label { display: block; font-size: 12px; font-weight: 500; color: var(--text); }
.gen-status { font-size: 11px; color: var(--text-3); }
.gen-check {
  width: 18px;
  height: 18px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gen-check::after {
  content: '';
  width: 8px;
  height: 5px;
  border-left: 1.5px solid #4ade80;
  border-bottom: 1.5px solid #4ade80;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

/* === PROOF === */
.proof-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.proof-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.proof-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(232,169,53,0.2);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.proof-text { margin-bottom: 16px; }
.proof-copy {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  font-style: italic;
}
.proof-platform { font-size: 11px; color: var(--text-3); font-weight: 500; }

/* === FEATURES === */
.features-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.features-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.features-headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  max-width: 480px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-item {
  background: var(--bg);
  padding: 32px 28px;
  transition: background 0.2s;
}
.feature-item:hover { background: var(--surface); }
.feature-icon { margin-bottom: 20px; }
.feature-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-desc { font-size: 13px; color: var(--text-2); line-height: 1.65; }
.feature-item--ops { background: var(--accent-dim); }
.feature-item--ops .feature-name { color: var(--accent); }

/* === HOW IT WORKS === */
.howitworks { padding: 80px 0; border-top: 1px solid var(--border); }
.howitworks-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.how-headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.steps-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-number {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.step-body { flex: 1; }
.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}
.step-desc { font-size: 13px; color: var(--text-2); line-height: 1.65; }
.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 0 16px;
  margin-top: 22px;
}

/* === PRICING === */
.pricing-section { padding: 80px 0; border-top: 1px solid var(--border); }
.pricing-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.pricing-headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  max-width: 860px;
}
.pricing-left {
  padding: 40px;
  border-right: 1px solid var(--border);
  background: var(--surface);
}
.pricing-plan-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}
.pricing-trial { font-size: 13px; color: var(--accent); font-weight: 500; margin-bottom: 12px; }
.pricing-dollar { font-family: var(--font-display); font-size: 28px; color: var(--text-2); }
.pricing-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}
.pricing-period { font-size: 16px; color: var(--text-2); padding-left: 4px; }
.pricing-tagline { font-size: 13px; color: var(--text-2); margin-bottom: 32px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
}
.pricing-right { padding: 40px; background: var(--bg); }
.pricing-calc { }
.calc-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-2);
}
.calc-row:last-of-type { border-bottom: none; }
.calc-cross { text-decoration: line-through; color: var(--text-3); }
.calc-divider { height: 1px; background: var(--border); margin: 16px 0; }
.calc-row--highlight .calc-green { color: #4ade80; font-weight: 600; }
.calc-note {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 20px;
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* === CLOSING === */
.closing-section { padding: 100px 0; border-top: 1px solid var(--border); }
.closing-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; text-align: center; }
.closing-headline {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}
.closing-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.closing-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-3);
}

/* === FOOTER === */
.footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-tagline { font-size: 12px; color: var(--text-3); max-width: 300px; }
.footer-legal { font-size: 11px; color: var(--text-3); text-align: right; }

/* === SUCCESS / CANCELLED PAGES === */
.success-section {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
}
.success-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.success-icon {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.success-headline {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}
.success-message {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
}
.success-cta {
  display: inline-block;
  background: var(--accent);
  color: #0e0c0a;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.success-cta:hover { opacity: 0.9; }

/* === FORM STYLES === */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,169,53,0.06);
  max-width: 560px;
  margin: 0 auto 40px;
  padding: 32px;
}
.intake-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}
.form-input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
}
.form-input::placeholder { color: var(--text-3); }
.form-submit {
  display: inline-block;
  background: var(--accent);
  color: #0e0c0a;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
  margin-top: 8px;
}
.form-submit:hover { opacity: 0.9; }
.form-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: #ef4444;
}

/* === PAGE CONTENT === */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 32px 60px;
}
.intake-hero { text-align: center; margin-bottom: 40px; }
.intake-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.intake-sub { font-size: 16px; color: var(--text-2); max-width: 480px; margin: 0 auto; }

/* === DASHBOARD === */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.dashboard-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.property-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.property-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-2);
}
.property-status { color: var(--text-2); font-weight: 500; text-transform: capitalize; }
.property-fields { padding: 4px 0; }
.empty-state { text-align: center; padding: 80px 32px; }
.empty-title { font-family: var(--font-display); font-size: 24px; margin-bottom: 12px; }
.empty-sub { font-size: 14px; color: var(--text-2); margin-bottom: 32px; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-left { border-right: none; border-bottom: 1px solid var(--border); }
  .steps-row { flex-direction: column; gap: 24px; }
  .step-connector { width: 1px; height: 24px; margin: 0; margin-top: 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-legal { text-align: left; }
  .closing-meta { gap: 16px; }
}