/* BizByCT — Professional Stylesheet for Serious Ventures */

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

:root {
  --navy: #0f1f3d;
  --blue: #1a56db;
  --blue-dark: #1340b0;
  --blue-light: #e8f0fe;
  --gray-50: #f8f9fb;
  --gray-100: #f1f3f6;
  --gray-200: #e4e8ee;
  --gray-400: #9aa3b0;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --white: #ffffff;
  --gold: #b8860b;
  --green: #065f46;
  --green-light: #d1fae5;
  --red: #991b1b;
  --red-light: #fee2e2;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray-600);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  transition: background 0.15s !important;
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, #162d5e 60%, #1a3570 100%);
  color: var(--white);
  padding: 7rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(26,86,219,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26,86,219,0.15) 0%, transparent 40%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(26,86,219,0.25);
  border: 1px solid rgba(26,86,219,0.5);
  color: #93c5fd;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: normal;
  color: #60a5fa;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,86,219,0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-danger {
  background: #dc2626;
  color: var(--white);
}

.btn-danger:hover {
  background: #b91c1c;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 2rem;
}

.trust-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.trust-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 2rem;
}

.section-alt {
  background: var(--gray-50);
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== PITCH COLUMNS ===== */
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pitch-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.pitch-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pitch-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.pitch-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.pitch-card p {
  font-size: 0.93rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ===== INVESTMENT CARDS ===== */
.investments-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.investments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}

.inv-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.inv-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.inv-card-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.inv-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.inv-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.inv-card .tagline {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-style: italic;
}

.inv-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-top: 0.75rem;
}

.status-active {
  background: var(--green-light);
  color: var(--green);
}

.status-retired {
  background: var(--red-light);
  color: var(--red);
}

.status-paused {
  background: #fef3c7;
  color: #92400e;
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.inv-card-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
}

.inv-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.inv-stat {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 0.6rem 0.75rem;
}

.inv-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 0.15rem;
}

.inv-stat-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.inv-card-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.inv-card-footer .btn {
  width: 100%;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.88rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 2rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0 0 1.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 4rem 2rem 3rem;
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.contact-hero p {
  color: var(--gray-600);
  max-width: 480px;
  margin: 0 auto;
}

.contact-wrap {
  max-width: 620px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 0.85rem;
  font-size: 1rem;
}

/* Rejection Letter */
.rejection-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,31,61,0.8);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.rejection-overlay.active {
  display: flex;
}

.rejection-letter {
  background: var(--white);
  max-width: 560px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.rejection-header {
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rejection-header h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.8;
}

.rejection-body {
  padding: 2.5rem;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--gray-800);
}

.rejection-body .letterhead {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--navy);
}

.rejection-body .letterhead h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.rejection-body .letterhead p {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-family: 'Inter', sans-serif;
  margin-top: 0.25rem;
}

.rejection-body p {
  margin-bottom: 1.25rem;
}

.rejection-body .signature {
  margin-top: 2rem;
  font-style: italic;
}

.rejection-footer {
  padding: 1rem 2.5rem 2rem;
  text-align: center;
}

.close-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.15s;
}

.close-btn:hover {
  color: var(--white);
}

/* ===== PITCH PAGES ===== */
.pitch-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #162d5e 100%);
  color: var(--white);
  padding: 5rem 2rem 4rem;
}

.pitch-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  transition: color 0.15s;
}

.back-link:hover {
  color: var(--white);
}

.pitch-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.pitch-hero .tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}

.pitch-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.5rem;
}

.pitch-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.pitch-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .pitch-layout {
    grid-template-columns: 1fr;
  }
}

.pitch-section {
  margin-bottom: 2.5rem;
}

.pitch-section h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gray-200);
}

.pitch-section p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.financials-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 80px;
}

.financials-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.financial-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.88rem;
}

.financial-row:last-of-type {
  border-bottom: none;
}

.financial-label {
  color: var(--gray-600);
}

.financial-value {
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}

.financial-value.red {
  color: #dc2626;
}

.financial-value.green {
  color: #059669;
}

.financials-cta {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

.disclaimer-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 3rem;
  font-size: 0.83rem;
  color: #78350f;
  line-height: 1.65;
}

.disclaimer-box strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  color: #92400e;
}

.bullet-list {
  list-style: none;
  margin: 0.5rem 0;
}

.bullet-list li {
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  color: var(--gray-600);
  font-size: 0.93rem;
}

.bullet-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 4rem 1.25rem 3.5rem; }
  .section { padding: 3.5rem 1.25rem; }
  .pitch-grid { grid-template-columns: 1fr; }
  .investments-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 1.5rem; }
  .form-card { padding: 1.5rem; }
  .pitch-hero { padding: 3rem 1.25rem 2.5rem; }
  .pitch-content { padding: 2rem 1.25rem; }
}
