/* ORBX Design System v1.0 */
:root {
  --navy: #0B1020;
  --navy-deep: #060916;
  --midnight: #1E293B;
  --electric: #3B82F6;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --cream: #FDF9F0;
  --warm-1: #FFF1E0;
  --amber: #F59E0B;
  --amber-soft: #FEF3C7;
  --grey-50: #F9FAFB;
  --grey-100: #F3F4F6;
  --grey-200: #E5E7EB;
  --grey-300: #D1D5DB;
  --cyan: #06B6D4;
  --violet: #8B5CF6;
  --teal: #14B8A6;
  --success: #10B981;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--midnight); background: var(--white);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; }
@media (min-width: 768px) { .container { padding: 0 48px; } }
@media (min-width: 1024px) { .container { padding: 0 64px; } }

.serif { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.02em; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--grey-200);
}
.nav-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 24px; letter-spacing: -0.04em; color: var(--navy); text-decoration: none; transition: opacity 150ms ease-out; }
.logo:hover { opacity: 0.85; }
.logo-mark { display: inline-flex; align-items: center; gap: 12px; }
.logo-ring { width: 22px; height: 22px; border: 2.5px solid var(--navy); border-radius: 50%; position: relative; flex-shrink: 0; transition: transform 300ms ease-out; }
.logo:hover .logo-ring { transform: scale(1.1); }
.logo-ring::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 8px rgba(245, 158, 11, 0.35); }
.logo-wordmark { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.logo-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate);
  margin-top: 5px;
  display: inline-flex; align-items: center; gap: 6px;
}
.logo-tagline::before { content: ''; width: 14px; height: 1.5px; background: var(--amber); flex-shrink: 0; }
.nav-links { display: none; gap: 22px; list-style: none; }
@media (min-width: 1024px) { .nav-links { display: flex; gap: 22px; } }
@media (min-width: 1280px) { .nav-links { gap: 28px; } }
.nav-links a { text-decoration: none; color: var(--midnight); font-size: 14px; font-weight: 500; transition: color 150ms ease-out; white-space: nowrap; }
.nav-links a:hover { color: var(--amber); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy); color: var(--white);
  padding: 10px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background 150ms ease-out, transform 150ms ease-out;
}
.nav-cta:hover { background: var(--midnight); transform: translateY(-1px); }

/* BREADCRUMB */
.breadcrumb { padding: 24px 0 0; background: var(--white); }
.breadcrumb-inner { font-size: 13px; color: var(--slate); }
.breadcrumb-inner a { color: var(--slate); text-decoration: none; transition: color 150ms; }
.breadcrumb-inner a:hover { color: var(--amber); }
.breadcrumb-inner span { margin: 0 8px; opacity: 0.5; }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 15px 26px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all 200ms ease-out; cursor: pointer; border: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(11, 16, 32, 0.2); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--navy);
  padding: 15px 26px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  border: 1px solid var(--grey-300); transition: all 200ms ease-out; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--navy); }

.btn-amber {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--amber), #FCD34D);
  color: var(--navy);
  padding: 15px 26px; border-radius: 10px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: all 200ms ease-out;
}
.btn-amber:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(245, 158, 11, 0.4); }

/* SECTION GENERIC */
.section-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 8px;
}
.section-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.section-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 600; color: var(--navy);
  margin-bottom: 24px; max-width: 780px;
}
.section-h2 em { font-style: italic; font-weight: 400; }
.section-lead {
  font-size: 18px; line-height: 1.65;
  color: var(--slate); max-width: 720px; margin-bottom: 56px;
}

/* PAGE HERO (warm gradient) */
.page-hero {
  padding: 80px 0 100px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 90% 30%, rgba(245, 158, 11, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(255, 209, 168, 0.25) 0%, transparent 55%),
    linear-gradient(180deg, #FFFEFB 0%, #FFF8EC 100%);
}
.page-hero::before {
  content: ''; position: absolute;
  top: 20%; right: -10%; width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 196, 130, 0.3) 0%, transparent 70%);
  filter: blur(40px);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 880px; }
.page-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02; letter-spacing: -0.025em;
  font-weight: 600; color: var(--navy);
  margin-bottom: 28px;
}
.page-hero h1 em { font-style: italic; font-weight: 400; }
.page-hero .hero-sub {
  font-size: 19px; line-height: 1.65;
  color: var(--midnight); opacity: 0.78;
  max-width: 640px; margin-bottom: 36px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 28px;
}
.eyebrow::before {
  content: ''; width: 8px; height: 8px;
  border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

/* PROSE BODY (for legal/insights/about) */
.prose { padding: 80px 0; background: var(--white); }
.prose-inner { max-width: 760px; margin: 0 auto; }
.prose-inner p, .prose-inner li {
  font-size: 17px; line-height: 1.7;
  color: var(--midnight); margin-bottom: 18px;
}
.prose-inner p strong { color: var(--navy); font-weight: 600; }
.prose-inner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--navy);
  margin-top: 56px; margin-bottom: 20px;
}
.prose-inner h2 em { font-style: italic; font-weight: 400; }
.prose-inner h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.015em; color: var(--navy);
  margin-top: 36px; margin-bottom: 14px;
}
.prose-inner ul { padding-left: 24px; margin-bottom: 24px; }
.prose-inner ul li { margin-bottom: 10px; }
.prose-inner a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }
.prose-inner a:hover { color: var(--navy); }

/* FINAL CTA */
.final-cta {
  padding: 140px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(245, 158, 11, 0.1) 0%, transparent 60%),
    var(--off-white);
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05; letter-spacing: -0.03em;
  font-weight: 600; color: var(--navy);
  margin-bottom: 24px;
  max-width: 880px; margin-left: auto; margin-right: auto;
}
.final-cta h2 em { font-style: italic; font-weight: 400; }
.final-cta p { font-size: 19px; line-height: 1.65; color: var(--slate); max-width: 640px; margin: 0 auto 40px; }

/* FOOTER */
.footer { background: var(--navy); color: #94A3B8; padding: 96px 0 32px; position: relative; overflow: hidden; }
.footer::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
  filter: blur(40px);
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 56px; position: relative; z-index: 1; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer h4 { color: var(--white); font-size: 13px; font-weight: 600; margin-bottom: 18px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-brand .logo { color: var(--white); margin-bottom: 18px; display: inline-flex; }
.footer-brand .logo .logo-ring { border-color: var(--white); }
.footer-brand .logo .logo-ring::after { background: var(--amber); }
.footer-brand p { font-size: 14px; line-height: 1.65; max-width: 320px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: #94A3B8; text-decoration: none; font-size: 14px; transition: color 150ms; }
.footer ul a:hover { color: var(--amber); }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 12px; color: #64748B; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; position: relative; z-index: 1; }

/* COMING SOON BLOCK (for stub pages) */
.coming-soon {
  padding: 80px 0 120px;
  background: var(--off-white);
  text-align: center;
}
.coming-soon-inner { max-width: 640px; margin: 0 auto; }
.coming-soon-icon {
  width: 64px; height: 64px;
  margin: 0 auto 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--amber-soft), #FED7AA);
  color: #B45309;
  display: flex; align-items: center; justify-content: center;
}
.coming-soon-icon svg { width: 32px; height: 32px; }
.coming-soon h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px; font-weight: 600;
  letter-spacing: -0.025em; color: var(--navy);
  margin-bottom: 20px;
}
.coming-soon h2 em { font-style: italic; font-weight: 400; }
.coming-soon p { font-size: 17px; line-height: 1.65; color: var(--slate); margin-bottom: 32px; }

/* CONTACT FORM */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  padding: 80px 0 120px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.contact-info h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.015em; color: var(--navy);
  margin-bottom: 14px; margin-top: 32px;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { color: var(--slate); line-height: 1.6; font-size: 15px; }
.contact-info a { color: var(--amber); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

.form-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 18px;
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--midnight);
  background: var(--white);
  transition: border-color 150ms;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.form-consent input { width: auto; margin-top: 4px; }
.form-consent label { font-size: 13px; color: var(--slate); font-weight: 400; line-height: 1.5; }
