:root {
  --black: #050505;
  --panel: #18181b;
  --panel-dark: #09090b;
  --line: #27272a;
  --text: #ffffff;
  --muted: #a1a1aa;
  --dim: #71717a;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-soft: rgba(249, 115, 22, 0.12);
  --yellow: #eab308;
  --green: #4ade80;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.86);
}

.header-inner,
.hero-inner,
.section,
.site-footer,
.page-grid,
.dashboard {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 900;
  white-space: nowrap;
}

.brand span,
.eyebrow,
.market-card > p,
.review-card > p {
  color: var(--orange);
}

.site-nav {
  position: absolute;
  top: 72px;
  left: 16px;
  right: 16px;
  display: none;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  background: var(--panel-dark);
  box-shadow: var(--shadow);
}

.site-header.is-open .site-nav {
  display: flex;
}

.site-nav a {
  padding: 14px;
  color: #d4d4d8;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
}

.button-orange {
  background: var(--orange);
  color: #111111;
}

.button-orange:hover {
  background: var(--orange-dark);
}

.button-ghost,
.button-dark,
.button-outline {
  border-color: #3f3f46;
  background: rgba(39, 39, 42, 0.55);
  color: var(--text);
}

.button-white {
  background: #ffffff;
  color: #111111;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #18181b;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(249, 115, 22, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(234, 179, 8, 0.13), transparent 30%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  padding: 64px 0;
}

.pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 999px;
  padding: 0 16px;
  background: var(--orange-soft);
  color: #fed7aa;
  font-size: 0.88rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 24px 0 0;
  font-size: clamp(3rem, 13vw, 6.5rem);
  line-height: 0.96;
  font-weight: 900;
}

.page-title {
  max-width: 820px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  overflow-wrap: normal;
}

.nowrap {
  white-space: nowrap;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  line-height: 1.05;
  font-weight: 900;
}

.hero-copy > p,
.lead,
.page-copy,
.card-text,
.site-footer p,
.review-card span,
.review-card > div {
  color: var(--muted);
  line-height: 1.65;
}

.page-copy {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-copy > p {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: 1.06rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .button,
.cta-actions .button {
  min-height: 56px;
  border-radius: 18px;
  font-size: 1rem;
}

.metrics {
  display: grid;
  gap: 20px;
  margin-top: 42px;
}

.metrics strong {
  display: block;
  font-size: 2rem;
}

.metrics span {
  display: block;
  margin-top: 6px;
  color: var(--dim);
  font-size: 0.9rem;
}

.feature-card,
.market-card,
.form-card,
.review-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(24, 24, 27, 0.96);
  box-shadow: var(--shadow);
}

.feature-card,
.market-card,
.form-card,
.review-card,
.empty-state {
  padding: 24px;
}

.feature-card .big {
  color: rgba(249, 115, 22, 0.3);
  font-size: 3rem;
  font-weight: 900;
}

.progress-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #27272a;
}

.progress-fill {
  width: 72%;
  height: 100%;
  background: var(--orange);
}

.section {
  padding: 72px 0;
  border-top: 1px solid #18181b;
}

.section-heading {
  max-width: 760px;
}

.centered {
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.grid-3,
.grid-2,
.review-list {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

.market-card ul,
.feature-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.market-card li,
.feature-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.market-card li::before,
.feature-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.grid-2 .feature-card {
  display: flex;
  flex-direction: column;
}

.card-action {
  margin-top: auto;
  padding-top: 22px;
}

.card-action .button {
  width: 100%;
}

.cta-card {
  border-radius: 32px;
  padding: 34px 24px;
  color: #111111;
  text-align: center;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.cta-card p {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(0, 0, 0, 0.72);
}

.privacy-card h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  line-height: 1.12;
  margin-top: 28px;
}

.privacy-card h2:first-child {
  margin-top: 0;
}

.page-grid,
.dashboard {
  display: grid;
  gap: 32px;
  padding: 56px 0;
}

.form-card {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #e4e4e7;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #3f3f46;
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--text);
  background: var(--panel-dark);
}

textarea {
  resize: vertical;
}

.checkbox-row {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.checkbox-row input {
  width: auto;
}

.flash {
  border: 1px solid rgba(249, 115, 22, 0.32);
  border-radius: 14px;
  padding: 14px;
  color: #fed7aa;
  background: var(--orange-soft);
}

.form-helper {
  margin: 0;
  color: var(--muted);
}

.form-helper a,
.market-card a,
.mini-section a {
  color: #fed7aa;
  font-weight: 800;
}

.private-summary {
  margin-top: 18px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 18px;
  padding: 18px;
  color: #fed7aa;
  background: var(--orange-soft);
}

.status-panel,
.mini-section,
.inline-form {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  background: rgba(9, 9, 11, 0.74);
}

.status-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.status-row span,
.owner-note,
.mini-section li,
.mini-section p {
  color: var(--muted);
  line-height: 1.55;
}

.owner-note {
  margin: 14px 0 0;
}

.mini-section strong {
  display: block;
  margin-bottom: 10px;
}

.mini-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.inline-form {
  display: grid;
  gap: 14px;
}

.compact-card h3 {
  font-size: 1.1rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid #18181b;
}

@media (max-width: 520px) {
  .header-actions .button-ghost {
    display: none;
  }
}

@media (min-width: 680px) {
  .hero-actions,
  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .site-footer {
    flex-direction: row;
    justify-content: space-between;
  }

  .status-row {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-contact {
    text-align: right;
  }
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-photo {
    inset: 0 0 0 auto;
    width: min(58vw, 860px);
    opacity: 0.24;
    mask-image: linear-gradient(90deg, transparent 0%, black 28%, black 100%);
  }

  .hero-inner,
  .page-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    align-items: center;
  }

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

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