/* ===========================
   YIELDDESK THEME
   =========================== */

:root {
  --nav-bg: #0d1b2a;
  --bg: #0d1b2a;
  --bg-alt: #111e2e;
  --surface: #152236;
  --accent: #e8a838;
  --text: #f5f0e8;
  --text-muted: #8a9bb0;
  --border: #1e3050;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-block;
  border: 1px solid rgba(232, 168, 56, 0.3);
  padding: 4px 12px;
  border-radius: 2px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 700px;
}
.hero-lede {
  font-size: 19px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 56px;
}
.hero-stat-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat {}
.hero-stat-value {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 200px;
  line-height: 1.5;
}

/* WHAT */
.what {
  background: var(--bg-alt);
  padding: 100px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.what-inner { max-width: 1100px; margin: 0 auto; }
.section-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  color: var(--text);
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
}
.what-card {
  background: var(--surface);
  padding: 36px 32px;
  border: 1px solid var(--border);
}
.what-card-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  margin-bottom: 20px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
}
.what-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.what-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* HOW */
.how {
  padding: 100px 32px;
  background: var(--bg);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.how-text h2 { margin-bottom: 28px; }
.how-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.how-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--accent) !important;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin-top: 24px !important;
}
.how-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.how-block {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 32px;
}
.how-block-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.how-block-content {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

/* MANIFESTO */
.manifesto {
  background: var(--bg-alt);
  padding: 100px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.45;
  color: var(--text);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.manifesto-sub {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}

/* PRICING */
.pricing {
  padding: 100px 32px;
  background: var(--bg);
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.pricing-card {
  background: var(--bg);
  padding: 40px 32px;
}
.pricing-card-featured {
  background: var(--surface);
}
.pricing-tier {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1;
}
.pricing-period {
  font-size: 20px;
  color: var(--text-muted);
  font-family: var(--sans);
  font-weight: 300;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 0;
}

/* CLOSING */
.closing {
  padding: 120px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 300;
}

/* FOOTER */
.footer {
  padding: 40px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text);
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stat-row { gap: 32px; }
  .hero-headline { font-size: 42px; }
  .nav-inner { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .what, .how, .manifesto, .pricing, .closing { padding: 64px 20px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .hero-lede { font-size: 16px; }
}