@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,500&family=Space+Grotesk:wght@300;400;500;600&display=swap');

:root {
  --charcoal: #1a1a2e;
  --charcoal-light: #2a2a42;
  --gold: #d4a853;
  --gold-dim: #b8923f;
  --gold-glow: rgba(212, 168, 83, 0.15);
  --cream: #faf8f4;
  --cream-dark: #f0ece4;
  --sage: #7d8f69;
  --sage-light: #a3b48f;
  --ink: #1a1a1a;
  --ink-muted: #6b6b7b;
  --white: #ffffff;
  --font-display: 'Fraunces', serif;
  --font-body: 'Space Grotesk', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* NAV */
.nav {
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.nav-tagline {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--gold-glow);
  filter: blur(80px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--charcoal);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-stat .number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-dim);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* Proposal mockup */
.proposal-mockup {
  position: relative;
  z-index: 2;
}

.mockup-doc {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 30px 80px rgba(26, 26, 46, 0.12), 0 1px 3px rgba(26, 26, 46, 0.06);
  transform: rotate(1.5deg);
  position: relative;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--cream-dark);
}

.mockup-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
}

.mockup-badge {
  background: var(--sage);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.mockup-line {
  height: 8px;
  border-radius: 4px;
  background: var(--cream-dark);
}

.mockup-line:nth-child(1) { width: 100%; }
.mockup-line:nth-child(2) { width: 85%; }
.mockup-line:nth-child(3) { width: 92%; }
.mockup-line:nth-child(4) { width: 60%; }

.mockup-pricing {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 2rem;
}

.mockup-pricing span {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.mockup-pricing strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--charcoal);
}

.mockup-signature {
  position: relative;
  padding: 1.5rem;
  border: 2px dashed var(--gold);
  border-radius: 8px;
  text-align: center;
  background: var(--gold-glow);
  animation: pulse-glow 3s ease-in-out infinite;
}

.mockup-signature span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-dim);
}

.mockup-signature::after {
  content: 'Signed just now';
  position: absolute;
  bottom: -1.5rem;
  right: 0;
  font-size: 0.7rem;
  color: var(--sage);
  font-weight: 500;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); }
  50% { box-shadow: 0 0 20px 8px var(--gold-glow); }
}

/* SPEED SECTION */
.speed {
  padding: 6rem 0;
  background: var(--charcoal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.speed::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(ellipse, var(--gold-glow), transparent 70%);
}

.speed-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.speed-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.speed-header p {
  font-size: 1.05rem;
  color: rgba(250, 248, 244, 0.6);
  max-width: 500px;
  margin: 0 auto;
}

.speed-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.speed-card {
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
}

.speed-card.old {
  background: rgba(250, 248, 244, 0.05);
  border: 1px solid rgba(250, 248, 244, 0.1);
}

.speed-card.new {
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.25);
}

.speed-card .time {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.speed-card.old .time { color: rgba(250, 248, 244, 0.4); }
.speed-card.new .time { color: var(--gold); }

.speed-card .label {
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.speed-vs {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: rgba(250, 248, 244, 0.3);
  font-style: italic;
}

/* ANATOMY SECTION */
.anatomy {
  padding: 6rem 0;
  background: var(--cream);
}

.anatomy-header {
  margin-bottom: 4rem;
}

.anatomy-header .overline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.anatomy-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  max-width: 550px;
}

.anatomy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.anatomy-item {
  padding: 2rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(26, 26, 46, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.anatomy-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.08);
}

.anatomy-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1rem;
}

.anatomy-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.anatomy-item p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* SIGNATURE MOMENT */
.signature-moment {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.signature-moment::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-glow), transparent 60%);
}

.signature-moment .container {
  position: relative;
  z-index: 1;
}

.sig-overline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.signature-moment h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.signature-moment p {
  font-size: 1.1rem;
  color: rgba(250, 248, 244, 0.6);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.sig-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sig-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(250, 248, 244, 0.06);
  border: 1px solid rgba(250, 248, 244, 0.1);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
}

.sig-step .step-num {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

.sig-arrow {
  color: rgba(250, 248, 244, 0.2);
  font-size: 1.2rem;
}

/* FREELANCER PROOF */
.proof {
  padding: 6rem 0;
  background: var(--cream-dark);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.proof-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.proof-stat-item {
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
}

.proof-stat-item .big-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.proof-stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.proof-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.proof-content p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* PHILOSOPHY */
.philosophy {
  padding: 6rem 0;
  background: var(--cream);
}

.philosophy-header {
  text-align: center;
  margin-bottom: 4rem;
}

.philosophy-header .overline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.philosophy-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.phil-card {
  padding: 2.5rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(26, 26, 46, 0.06);
  position: relative;
  overflow: hidden;
}

.phil-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sage));
}

.phil-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.phil-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 8rem 0;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 168, 83, 0.08), transparent 70%);
}

.closing .container { position: relative; z-index: 1; }

.closing h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.closing h2 em {
  font-style: italic;
  color: var(--gold);
}

.closing p {
  font-size: 1.1rem;
  color: rgba(250, 248, 244, 0.5);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 2rem 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(250, 248, 244, 0.06);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(250, 248, 244, 0.4);
}

.footer-note {
  font-size: 0.8rem;
  color: rgba(250, 248, 244, 0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 8rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero h1 { font-size: 2.5rem; }
  .mockup-doc { transform: rotate(0); }
  .speed-compare { grid-template-columns: 1fr; gap: 1rem; }
  .speed-vs { display: none; }
  .speed-card .time { font-size: 2.5rem; }
  .anatomy-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; gap: 2rem; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .sig-flow { flex-direction: column; }
  .sig-arrow { transform: rotate(90deg); }
  .signature-moment h2 { font-size: 2rem; }
  .closing h2 { font-size: 2rem; }
  .speed-header h2 { font-size: 2rem; }
  .anatomy-header h2 { font-size: 2rem; }
  .proof-content h2 { font-size: 2rem; }
  .philosophy-header h2 { font-size: 2rem; }
  .footer .container { flex-direction: column; gap: 0.5rem; text-align: center; }
  .nav-tagline { display: none; }
}