/* DreamHive LLC — Shared Stylesheet */
/* Brand: Systems Architecture · Behavioral Economics · Enterprise Transformation */

:root {
  --teal:        #0F6E56;
  --teal-dark:   #0A5240;
  --teal-light:  #E1F5EE;
  --teal-mid:    #9FE1CB;
  --coral:       #D85A30;
  --coral-light: #FBF0EC;
  --ink:         #1A1A1A;
  --mid:         #6B6B68;
  --light:       #F5F4F0;
  --rule:        #D3D1C7;
  --white:       #FFFFFF;
  --font-sans:   'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-serif:  'Georgia', 'Times New Roman', serif;
  --max:         1160px;
  --radius:      10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* ── TYPOGRAPHY ─────────────────────────────── */
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
p  { line-height: 1.75; color: var(--mid); }
a  { color: inherit; text-decoration: none; }

/* ── LAYOUT ─────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
}
.rule { border: none; border-top: 1px solid var(--rule); margin: 0; }

/* ── NAV ────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.1rem; font-weight: 800; color: var(--teal);
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta {
  background: var(--teal); color: var(--white) !important;
  padding: 0.55rem 1.2rem; border-radius: 6px;
  font-size: 0.85rem !important; font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.75rem 1.6rem; border-radius: 7px;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s; border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal-light); }
.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover { background: #bf4f28; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── CARDS ──────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 6px 24px rgba(15,110,86,0.08); transform: translateY(-2px); }
.card-teal { background: var(--teal-light); border-color: transparent; }
.card-dark { background: var(--ink); color: var(--white); border-color: transparent; }
.card-dark p { color: rgba(255,255,255,0.7); }

/* ── GRID ───────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }

/* ── HERO ───────────────────────────────────── */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 6rem 0 5rem;
}
.hero h1 { color: var(--white); }
.hero p  { color: rgba(255,255,255,0.72); }
.hero .label { color: var(--teal-mid); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 600px;
  margin: 1.25rem 0 2.5rem;
}
.cred-bar {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.cred-bar span { color: var(--teal-mid); margin: 0 0.5rem; }

/* ── STAT ROW ───────────────────────────────── */
.stat-row { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 2.5rem; }
.stat-item .num {
  font-size: 2.4rem; font-weight: 800;
  color: var(--teal); line-height: 1;
}
.stat-item .lbl { font-size: 0.8rem; color: var(--mid); margin-top: 0.2rem; }

/* ── PULL QUOTE ─────────────────────────────── */
.pull-quote {
  border-left: 4px solid var(--teal);
  padding: 1.2rem 1.6rem;
  background: var(--teal-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2.5rem 0;
}
.pull-quote p {
  font-size: 1.2rem; font-style: italic;
  color: var(--teal-dark); font-weight: 600;
  line-height: 1.5;
}
.pull-quote cite {
  display: block; margin-top: 0.5rem;
  font-size: 0.82rem; color: var(--mid);
  font-style: normal;
}

/* ── TIER CARDS ─────────────────────────────── */
.tier-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--rule);
}
.tier-card-head {
  background: var(--teal); color: var(--white);
  padding: 0.8rem 1.2rem;
}
.tier-card-head h4 { color: var(--white); font-size: 0.75rem; }
.tier-card-body { padding: 1.2rem; background: var(--teal-light); }
.tier-card-body p { font-size: 0.88rem; color: var(--ink); margin-bottom: 0.8rem; }
.friction-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  background: var(--white); color: var(--coral);
  border: 1px solid var(--coral);
  padding: 0.2rem 0.6rem; border-radius: 20px;
}

/* ── PRICING CARDS ──────────────────────────── */
.price-card {
  border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 2rem; position: relative;
}
.price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px var(--teal);
}
.price-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal); color: var(--white);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.9rem; border-radius: 20px;
}
.price-amount {
  font-size: 1.6rem; font-weight: 800; color: var(--coral);
  margin: 0.8rem 0 0.3rem;
}
.price-card ul { list-style: none; margin: 1rem 0 1.5rem; }
.price-card ul li {
  font-size: 0.88rem; color: var(--mid);
  padding: 0.35rem 0; border-bottom: 1px solid var(--rule);
  display: flex; gap: 0.5rem;
}
.price-card ul li::before { content: "✓"; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ── SIGNAL CARDS ───────────────────────────── */
.signal-card {
  padding: 1.2rem 1.4rem;
  background: var(--light);
  border-radius: var(--radius);
  border-left: 3px solid var(--coral);
}
.signal-card p { font-size: 0.9rem; color: var(--ink); margin-bottom: 0.3rem; }
.signal-card .signal-tag {
  font-size: 0.78rem; color: var(--teal);
  font-weight: 600;
}

/* ── CREDENTIAL GRID ────────────────────────── */
.cred-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
.cred-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.8rem; background: var(--light);
  border-radius: 8px;
}
.cred-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.05rem; }
.cred-text { font-size: 0.85rem; color: var(--ink); line-height: 1.4; }

/* ── VENTURE CARDS ──────────────────────────── */
.venture-card {
  border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 1.8rem; position: relative; overflow: hidden;
}
.venture-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--teal);
}
.venture-tag {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.5rem;
}
.venture-access {
  font-size: 0.75rem; color: var(--mid);
  margin-bottom: 0.8rem;
}

/* ── MISMATCH VISUAL ────────────────────────── */
.mismatch-row {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem; align-items: center; text-align: center;
  background: var(--light); border-radius: var(--radius);
  padding: 2rem;
}
.mismatch-arrow { font-size: 1.5rem; color: var(--mid); }
.mismatch-box { padding: 1rem; }
.mismatch-box .tier-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--mid); margin-bottom: 0.3rem;
}
.mismatch-box .tier-val {
  font-size: 1.4rem; font-weight: 800; color: var(--ink);
}
.mismatch-result { background: var(--coral); border-radius: var(--radius); padding: 1rem; }
.mismatch-result .tier-label { color: rgba(255,255,255,0.7); }
.mismatch-result .tier-val  { color: var(--white); }
.mismatch-result .tier-sub  { font-size: 0.72rem; color: rgba(255,255,255,0.8); margin-top: 0.2rem; }

/* ── PHILOSOPHY ─────────────────────────────── */
.principle {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.8rem 0; border-bottom: 1px solid var(--rule);
}
.principle:last-child { border-bottom: none; }
.principle-num {
  font-size: 2rem; font-weight: 800; color: var(--teal);
  opacity: 0.25; line-height: 1; flex-shrink: 0; width: 2.5rem;
}
.principle-body h3 { margin-bottom: 0.4rem; }

/* ── CONTACT FORM ───────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.83rem; font-weight: 600; color: var(--ink); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--rule);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15,110,86,0.08);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: var(--ink); color: rgba(255,255,255,0.6);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 2rem; flex-wrap: wrap;
}
.footer-logo {
  font-size: 1.1rem; font-weight: 800;
  color: var(--white); margin-bottom: 0.4rem;
}
.footer-sub { font-size: 0.8rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--teal-mid); }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; }

/* ── UTILITIES ──────────────────────────────── */
.text-teal   { color: var(--teal); }
.text-coral  { color: var(--coral); }
.text-mid    { color: var(--mid); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.bg-light { background: var(--light); }
.bg-teal-light { background: var(--teal-light); }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .mismatch-row { grid-template-columns: 1fr; }
  .mismatch-arrow { display: none; }
  .nav-links { display: none; }
  .stat-row { gap: 1.5rem; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
