/* === BASE === */
:root {
  --bg: #0A1628;
  --bg-2: #0F2240;
  --bg-3: #142850;
  --bg-4: #1B3154;
  --surface: #1B3A6B;
  --border: #2563EB;
  --border-dim: rgba(37, 99, 235, 0.2);
  --accent: #2563EB;
  --accent-2: #3B82F6;
  --accent-3: #1D4ED8;
  --text: #FFFFFF;
  --text-2: #CBD5E1;
  --text-3: #64748B;
  --green: #10B981;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dim);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text);
  text-decoration: none;
}
.header-nav {
  display: flex;
  gap: 40px;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--accent-2); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(37,99,235,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-2), #60A5FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-dim);
  color: var(--text-2);
  background: rgba(37, 99, 235, 0.07);
}
.hero-image {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-dim);
  box-shadow: 0 32px 80px rgba(37,99,235,0.15), 0 8px 32px rgba(0,0,0,0.4);
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-line {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-dim), transparent);
}
.hero-line-1 { top: 20%; right: 20%; height: 120px; }
.hero-line-2 { bottom: 30%; right: 35%; height: 80px; }
.hero-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  opacity: 0.4;
}
.hero-dot-1 { top: 25%; right: 19%; }
.hero-dot-2 { bottom: 28%; right: 34%; }

/* === SECTIONS (shared) === */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 640px;
  margin-bottom: 64px;
}

/* === OFFERINGS === */
.offerings {
  padding: 100px 0;
  background: var(--bg-2);
  position: relative;
}
.offerings::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-dim), transparent);
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offering-card {
  background: var(--bg-3);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s;
}
.offering-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-4px);
}
.offering-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.offering-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.offering-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}
.offering-card-followforge {
  display: flex;
  flex-direction: column;
}
.followforge-image {
  width: 100%;
  border-radius: 12px;
  margin-top: 16px;
  border: 1px solid var(--border-dim);
}

/* === PROCESS === */
.process {
  padding: 100px 0;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-dim), transparent);
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step {
  padding: 0 24px;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent-2);
  margin-bottom: 16px;
}
.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}
.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--border-dim), rgba(37,99,235,0.4), var(--border-dim));
  margin-top: 28px;
  flex-shrink: 0;
}

/* === STATS === */
.stats {
  padding: 80px 0;
  background: var(--bg-3);
  border-top: 1px solid rgba(37, 99, 235, 0.12);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-dim);
  flex-shrink: 0;
}

/* === CLOSING === */
.closing {
  padding: 120px 0;
  position: relative;
}
.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-dim), transparent);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 700px;
  margin-bottom: 32px;
}
.closing p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 20px;
}
.closing p strong {
  color: var(--text);
}
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.closing-tags span {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-dim);
  color: var(--text-2);
  background: rgba(37, 99, 235, 0.06);
}

/* === NAV CTA === */
.nav-cta {
  padding: 7px 18px !important;
  border-radius: 8px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--accent-3) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* === HERO CTAs === */
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--accent-3);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-2);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--accent-2);
  color: var(--text);
}

/* === BOOK SECTION === */
.book-section {
  padding: 100px 0 120px;
  background: var(--bg-2);
  position: relative;
}
.book-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-dim), transparent);
}
.book-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}
.book-header {
  margin-bottom: 48px;
}
.book-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.book-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
}

/* === STRATEGY FORM === */
.strategy-form-wrap {
  background: var(--bg-3);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 20px;
  padding: 40px;
}
.strategy-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.strategy-form .form-row-2 > * {
  flex: 1;
}
.strategy-form .form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.strategy-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.strategy-form input,
.strategy-form select,
.strategy-form textarea {
  background: var(--bg-4);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.strategy-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23CBD5E1' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.strategy-form input:focus,
.strategy-form select:focus,
.strategy-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.strategy-form input::placeholder,
.strategy-form textarea::placeholder {
  color: var(--text-3);
}
.strategy-form textarea {
  resize: vertical;
  min-height: 80px;
}
.strategy-form .form-field:last-of-type {
  margin-bottom: 24px;
}
.form-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.form-submit:hover:not(:disabled) {
  background: var(--accent-3);
  transform: translateY(-1px);
}
.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.form-error {
  margin-top: 12px;
  font-size: 13px;
  color: #f87171;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 20px 0;
}
.form-success-icon {
  width: 56px;
  height: 56px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 15px;
  color: var(--text-2);
}

@media (max-width: 640px) {
  .strategy-form .form-row-2 {
    flex-direction: column;
    gap: 16px;
  }
  .strategy-form-wrap {
    padding: 24px 20px;
  }
  .book-inner {
    padding: 0 20px;
  }
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid rgba(37, 99, 235, 0.12);
  padding: 60px 0 40px;
  background: var(--bg-2);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-wordmark {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-3);
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-2); }
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(37, 99, 235, 0.08);
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-3);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .step-connector { display: none; }
  .stat-divider { display: none; }
  .stats-inner { flex-wrap: wrap; gap: 40px; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .offerings-grid { grid-template-columns: 1fr; }
  .section-title { margin-bottom: 40px; }
  .footer-inner { flex-direction: column; }
  .header-nav { gap: 20px; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 20px 60px; }
  .section-inner { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .header-nav a { font-size: 12px; }
}