/* =====================
   PLACEHOLDER FINANCE
   Blood orange + black
   ===================== */

:root {
  --orange: #CC4400;
  --orange-bright: #E85000;
  --orange-dim: rgba(204, 68, 0, 0.15);
  --black: #0a0a0a;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --border: #2a2a2a;
  --border-hover: #3a3a3a;
  --text-primary: #f0f0f0;
  --text-secondary: #888;
  --text-muted: #555;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--border);
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

/* ---- HERO ---- */
.hero {
  padding: 5rem 0 4rem;
  border-bottom: 0.5px solid var(--border);
}

.eyebrow {
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
  max-width: 580px;
}

.accent {
  color: var(--orange);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--orange-bright);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  border: 0.5px solid var(--border-hover);
  cursor: pointer;
  transition: all 0.15s;
  display: inline-block;
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: #555;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat-val {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ---- TOOLS ---- */
.tools {
  padding: 3.5rem 0;
  border-bottom: 0.5px solid var(--border);
}

.section-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tool-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.15s;
  display: block;
}

.tool-card:hover {
  border-color: var(--border-hover);
}

.tool-card.featured {
  border-color: var(--orange);
  cursor: pointer;
}

.tool-card.featured:hover {
  border-color: var(--orange-bright);
}

.tool-card.coming-soon {
  opacity: 0.5;
  cursor: default;
}

.tool-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.tool-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.tool-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tool-tag {
  display: inline-block;
  font-size: 10px;
  color: var(--orange);
  background: var(--orange-dim);
  border-radius: 4px;
  padding: 2px 7px;
  margin-top: 10px;
}

.tool-tag.muted {
  color: var(--text-muted);
  background: var(--surface-2);
}

/* ---- CALLOUT ---- */
.callout {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 3rem 0;
}

.callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.callout-text {
  max-width: 420px;
}

.callout-text h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.callout-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.callout-number {
  text-align: right;
}

.big-number {
  display: block;
  font-size: 52px;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -1px;
}

.big-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ---- ABOUT ---- */
.about {
  padding: 3.5rem 0;
  border-bottom: 0.5px solid var(--border);
}

.about h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 1.25rem;
  max-width: 520px;
  line-height: 1.3;
}

.about p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-location {
  color: var(--text-muted) !important;
  font-size: 13px !important;
  margin-top: 1.5rem;
}

/* ---- FOOTER ---- */
.footer {
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left p {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-right {
  display: flex;
  gap: 1.5rem;
}

.footer-right a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.15s;
}

.footer-right a:hover {
  color: var(--text-secondary);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 700px) {
  .tool-grid {
    grid-template-columns: 1fr 1fr;
  }

  .callout-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .callout-number {
    text-align: left;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 480px) {
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }
}