/* ============================================
   SOPHICOR DESIGN SYSTEM — CSS
   Colors: Navy #0D1B2A, Dark #040C18, Gold #C9A84C, White #FFF, Muted #94A3B8
   Fonts: Rajdhani (headlines), Nunito (body), Share Tech Mono (labels)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Nunito:wght@400;600;700&family=Share+Tech+Mono&display=swap');

:root {
  --navy: #0D1B2A;
  --navy-deep: #0A1521;
  --dark: #040C18;
  --gold: #C9A84C;
  --gold-light: #E5CC7A;
  --gold-deep: #A8893A;
  --white: #FFFFFF;
  --muted: #94A3B8;
  --muted-dark: #64748B;
  --card-bg: #111D2E;
  --card-border: #1A2940;
  --card-border-hover: #2A3F5E;
  --max-width: 1200px;
  --section-padding: 120px 0;
  --radius: 14px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--dark);
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); }

/* Gradient gold text treatment */
.gold-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.mono { font-family: 'Share Tech Mono', monospace; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

/* ---- NAVIGATION ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(4, 12, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.5rem;
  color: var(--white); text-decoration: none; letter-spacing: 2px;
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem;
  font-weight: 600; letter-spacing: 0.5px; transition: color 0.2s;
  font-family: 'Nunito', sans-serif;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  display: none; position: absolute; top: 100%; left: -12px;
  background: var(--navy); border: 1px solid var(--card-border);
  border-radius: 8px; padding: 8px 0; min-width: 200px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.nav-links .dropdown:hover .dropdown-menu { display: block; }
.nav-links .dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.85rem;
}
.nav-links .dropdown-menu a:hover { background: var(--card-bg); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: var(--dark);
    border-bottom: 1px solid var(--card-border); padding: 24px;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links .dropdown-menu {
    position: static; display: none; box-shadow: none;
    border: none; padding-left: 16px;
  }
  .nav-links .dropdown.open .dropdown-menu { display: block; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 4px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1rem;
  text-decoration: none; text-transform: uppercase; letter-spacing: 1.5px;
  transition: all 0.3s; cursor: pointer; border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
}
.btn-gold:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-outline {
  background: transparent; border: 2px solid var(--gold); color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--dark) 0%, var(--navy) 55%, var(--dark) 100%);
}
.hero-content { position: relative; z-index: 3; text-align: center; max-width: 980px; padding: 0 24px; }
.hero-classified {
  display: inline-block; padding: 6px 16px; border: 1px solid var(--gold);
  font-family: 'Share Tech Mono', monospace; font-size: 0.75rem;
  color: var(--gold); letter-spacing: 3px; margin-bottom: 32px;
  position: relative;
}
.hero-classified::before, .hero-classified::after {
  content: ''; position: absolute; width: 8px; height: 8px; border-color: var(--gold);
}
.hero-classified::before { top: -2px; left: -2px; border-top: 2px solid; border-left: 2px solid; }
.hero-classified::after { bottom: -2px; right: -2px; border-bottom: 2px solid; border-right: 2px solid; }
.hero h1 { margin-bottom: 32px; line-height: 1.1; }
span.gold-line { color: var(--gold); width: auto; height: auto; background: none; margin: 0; display: inline; }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 680px; margin: 0 auto 44px; line-height: 1.75; position: relative; z-index: 2; }
.hero-sub em { color: var(--white); font-style: normal; font-weight: 700; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 3; }

/* Hero dot grid background */
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(201,168,76,0.12) 1px, transparent 0);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 90%);
  opacity: 0.6;
  animation: grid-drift 40s linear infinite;
}
@keyframes grid-drift {
  0% { background-position: 0 0; }
  100% { background-position: 36px 36px; }
}

/* Hero radial glow */
.hero-glow {
  position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 900px; z-index: 1; pointer-events: none;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 60%);
  animation: glow-pulse 8s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.05); }
}

/* Scanline effect */
.hero .scanline {
  position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.25; animation: scanline 9s linear infinite;
}
@keyframes scanline { 0% { top: 0; } 100% { top: 100%; } }

/* Hero manifesto-style */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  margin-bottom: 40px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem; letter-spacing: 4px; color: var(--gold);
}
.hero-eyebrow .eyebrow-mark {
  width: 40px; height: 1px; background: var(--gold); opacity: 0.5;
}
.hero-manifesto-h1 {
  display: flex; flex-direction: column; gap: 4px;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.05;
  margin-bottom: 40px;
}
.hero-line-1 { opacity: 0; animation: fade-up 0.9s var(--ease-out) 0.1s forwards; }
.hero-line-2 { opacity: 0; animation: fade-up 0.9s var(--ease-out) 0.35s forwards; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll cue — anchored to the bottom of the hero, always clear of the CTAs */
.hero-scroll-cue {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'Share Tech Mono', monospace; font-size: 0.7rem;
  letter-spacing: 3px; color: var(--muted-dark); z-index: 3;
  animation: scroll-bounce 2.5s ease-in-out infinite;
  pointer-events: none;
}
.hero-scroll-cue .scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}
@keyframes scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50%      { transform: translate(-50%, 6px); opacity: 0.9; }
}
/* Push hero content up so the scroll cue never collides with the CTAs on tight viewports */
.hero-manifesto .hero-content { padding-bottom: 110px; }
@media (max-height: 720px) {
  .hero-scroll-cue { display: none; }
}

/* ---- SECTIONS ---- */
.section { padding: var(--section-padding); }
.section-dark { background: var(--dark); }
.section-navy { background: var(--navy); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-label {
  font-family: 'Share Tech Mono', monospace; font-size: 0.75rem;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px; display: block;
}

/* ---- PRODUCT CARDS ---- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.product-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .product-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid-3 { grid-template-columns: 1fr; } }
.product-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 36px 28px; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.product-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.product-card.featured { border-color: var(--gold); }
.product-card .stage-badge {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-family: 'Share Tech Mono', monospace; font-size: 0.7rem;
  letter-spacing: 1px; margin-bottom: 16px;
}
.stage-shipping { background: rgba(34,197,94,0.15); color: #22c55e; }
.stage-pilot { background: rgba(201,168,76,0.15); color: var(--gold); }
.stage-roadmap { background: rgba(148,163,184,0.15); color: var(--muted); }
.product-card h3 { margin-bottom: 12px; font-size: 1.4rem; }
.product-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }

/* ---- PRICING TABLES ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
/* 5-card pricing grid: 3 cards on top row, 2 centered on bottom row — intentional balanced layout */
.pricing-grid-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.pricing-grid-5 > .pricing-card { grid-column: span 2; }
.pricing-grid-5 > .pricing-card:nth-child(4) { grid-column: 2 / span 2; }
.pricing-grid-5 > .pricing-card:nth-child(5) { grid-column: 4 / span 2; }
@media (max-width: 900px) {
  .pricing-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-5 > .pricing-card,
  .pricing-grid-5 > .pricing-card:nth-child(4),
  .pricing-grid-5 > .pricing-card:nth-child(5) { grid-column: auto; }
}
@media (max-width: 520px) {
  .pricing-grid-5 { grid-template-columns: 1fr; }
}
.pricing-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 32px 24px; text-align: center;
  transition: all 0.3s; position: relative;
}
.pricing-card.popular { border-color: var(--gold); }
.pricing-card.popular::before {
  content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--dark); padding: 4px 16px; border-radius: 20px;
  font-family: 'Share Tech Mono', monospace; font-size: 0.7rem; letter-spacing: 1px;
  font-weight: 700;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.pricing-tier {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1rem;
  color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.pricing-price { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 2.8rem; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; color: var(--muted); font-weight: 400; }
.pricing-desc { color: var(--muted); font-size: 0.85rem; margin-bottom: 20px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 24px; }
.pricing-features li {
  padding: 8px 0; font-size: 0.9rem; color: var(--muted);
  border-bottom: 1px solid rgba(26,41,64,0.5); display: flex; align-items: center; gap: 10px;
}
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ---- PROOF POINTS / STATS ---- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; text-align: center; }
.stat-item .stat-number {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 2.5rem; color: var(--gold); display: block;
}
.stat-item .stat-label { color: var(--muted); font-size: 0.9rem; }

/* ---- PRINCIPLES / FEATURES ---- */
.principles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.principle-card { padding: 32px; }
.principle-card .principle-num {
  font-family: 'Share Tech Mono', monospace; font-size: 0.8rem;
  color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; display: block;
}
.principle-card h3 { margin-bottom: 12px; }
.principle-card p { color: var(--muted); font-size: 0.95rem; }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark); border-top: 1px solid var(--card-border);
  padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 12px; line-height: 1.6; }
.footer-col h4 {
  font-family: 'Share Tech Mono', monospace; font-size: 0.75rem;
  color: var(--gold); letter-spacing: 2px; margin-bottom: 16px;
}
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 0.9rem; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--card-border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: var(--muted-dark); font-size: 0.8rem; }
.footer-legal {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem !important;
  letter-spacing: 0.8px;
  color: var(--muted-dark) !important;
  margin-top: 8px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
}

/* ---- DIVIDERS ---- */
div.gold-line { width: 60px; height: 3px; background: var(--gold); margin: 24px auto; }

/* ---- ENGINES SECTION ---- */
.engines-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.engine-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 32px; text-align: center;
}
.engine-card .engine-icon { font-size: 2.5rem; margin-bottom: 16px; }
.engine-card h3 { margin-bottom: 8px; }
.engine-card .engine-label {
  font-family: 'Share Tech Mono', monospace; font-size: 0.7rem;
  color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; display: block;
}
.engine-card p { color: var(--muted); font-size: 0.9rem; }

/* ---- WORKFLOW STEPS (UPGRADED) ---- */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: workflow-step;
}
.workflow-step {
  text-align: center;
  padding: 40px 24px 36px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.workflow-step:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.workflow-step::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.workflow-step:hover::before { transform: scaleX(1); }
.workflow-step .step-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.3);
  display: block;
  margin-bottom: 4px;
  line-height: 1;
}
.workflow-step .step-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}
.workflow-step h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.workflow-step p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .workflow-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .workflow-steps { grid-template-columns: 1fr; }
}

/* ---- SOPHIA INLINE CREDIT (pill badge — prominent but not dominant) ---- */
.sophia-inline-credit {
  margin: 64px auto 0;
  padding: 12px 24px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  max-width: calc(100% - 32px);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 999px;
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 32px rgba(201,168,76,0.06);
}
.sophia-inline-credit span {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 3px;
}
.sophia-inline-icon {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  opacity: 1;
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 0 12px rgba(201,168,76,0.2);
}

/* (origin-philosophy moved to signature block below) */

/* ---- COMPARISON TABLE ---- */
.comparison-table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.comparison-table th, .comparison-table td {
  padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--card-border);
}
.comparison-table th {
  font-family: 'Share Tech Mono', monospace; font-size: 0.75rem;
  color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
}
.comparison-table td { color: var(--muted); font-size: 0.9rem; }
.comparison-table .highlight { color: var(--white); font-weight: 700; }

/* ---- FAQ ---- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--card-border); padding: 20px 0; }
.faq-question {
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 1.1rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { color: var(--muted); padding-top: 12px; font-size: 0.95rem; }

/* ---- SOPHIA AI SUPPORTING PLACEMENT (SOP-AI-001) ---- */
.sophia-supporting {
  position: relative; max-width: 160px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.sophia-supporting img { width: 100%; max-width: 160px; border-radius: 8px; }
.sophia-label {
  font-family: 'Share Tech Mono', monospace; font-size: 0.7rem;
  color: var(--gold); letter-spacing: 1px; text-align: center;
}

/* Sophia in side panel (adjacent to technical content) */
.content-with-sophia {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start;
}

/* Sophia in engines section (bottom-right, non-dominant) */
.engines-section-wrapper {
  position: relative; padding-bottom: 100px;
}
.sophia-engines-position {
  position: absolute; bottom: 0; right: 24px; max-width: 140px;
}

@media (max-width: 768px) {
  .content-with-sophia { grid-template-columns: 1fr; }
  .sophia-supporting { max-width: 120px; }
  .sophia-engines-position { position: static; max-width: 140px; margin-top: 40px; }
}

/* ---- SVG INLINE ICONS ---- */
.icon {
  display: inline-block; width: 24px; height: 24px; vertical-align: middle;
}
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 32px; height: 32px; }

/* ---- DEMO IFRAME CONTAINER ---- */
.demo-container {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; overflow: hidden; padding: 12px;
  margin: 40px 0;
}
.demo-container iframe {
  width: 100%; height: 600px; border: none; border-radius: 8px;
  display: block;
}

@media (max-width: 768px) {
  .demo-container iframe { height: 400px; }
}

/* ---- ARTICLE CARDS ---- */
.article-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 32px; transition: all 0.3s;
}
.article-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.article-card .article-date {
  font-family: 'Share Tech Mono', monospace; font-size: 0.7rem;
  color: var(--gold); letter-spacing: 1px; margin-bottom: 12px; display: block;
}
.article-card h3 { margin-bottom: 12px; }
.article-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.article-card a { color: var(--gold); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.article-card a:hover { color: var(--gold-light); }

/* ---- GRID LAYOUTS ---- */
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 768px) { .two-column { grid-template-columns: 1fr; } }

/* ---- BUNDLE CARDS ---- */
.bundle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.bundle-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 40px 28px; text-align: center;
  transition: all 0.3s;
}
.bundle-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.bundle-card h3 { margin-bottom: 8px; }
.bundle-price { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 2.2rem; color: var(--gold); margin-bottom: 12px; }
.bundle-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }

/* ---- INCLUDED FEATURES GRID ---- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }
.feature-item {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 28px 24px; text-align: center;
}
.feature-item h4 { margin-bottom: 8px; }
.feature-item p { color: var(--muted); font-size: 0.85rem; }

/* ---- TECH PIPELINE VISUALIZATION ---- */
.pipeline-visualization {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin: 40px 0;
}
.pipeline-stage {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 8px; padding: 24px 16px; text-align: center; position: relative;
}
.pipeline-stage::after {
  content: '→'; position: absolute; right: -24px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 1.5rem; font-weight: bold;
}
.pipeline-stage:last-child::after { content: ''; }
.pipeline-stage .stage-num {
  font-family: 'Share Tech Mono', monospace; color: var(--gold);
  font-size: 0.8rem; margin-bottom: 8px; display: block;
}
.pipeline-stage h4 { margin-bottom: 8px; font-size: 1rem; }
.pipeline-stage p { color: var(--muted); font-size: 0.8rem; }

@media (max-width: 1024px) {
  .pipeline-visualization { grid-template-columns: repeat(2, 1fr); }
  .pipeline-stage::after { content: '↓'; right: 50%; bottom: -24px; transform: translateX(50%); }
}

/* ---- CONTACT FORM / CONSULT OPTIONS ---- */
.consult-options { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 40px 0; }
.consult-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 40px; text-align: center;
}
.consult-card h3 { margin-bottom: 16px; }
.consult-card p { color: var(--muted); margin-bottom: 24px; font-size: 0.95rem; }

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

/* Contact form */
.contact-form { text-align: left; margin-top: 8px; }
.contact-form .form-row { margin-bottom: 18px; }
.contact-form label {
  display: block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-form label .req { color: var(--gold); }
.contact-form label .optional { color: var(--muted-dark); font-size: 0.85em; text-transform: none; letter-spacing: 0; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--navy-deep);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #ff6b6b;
}
.contact-form textarea { resize: vertical; min-height: 90px; }
.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.contact-form .form-actions {
  display: flex; align-items: center; gap: 16px;
  margin-top: 8px; flex-wrap: wrap;
}
.contact-form .form-status {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1;
}
.contact-form .form-status.ok { color: #4ade80; }
.contact-form .form-status.err { color: #ff8b8b; }
.contact-form .form-foot {
  color: var(--muted-dark);
  font-size: 0.78rem;
  margin: 16px 0 0;
  line-height: 1.5;
}

/* ============================================
   V2 — MAGIC LAYER
   Scroll reveals, manifesto, demo frame,
   upgraded cards, stats, origin, section rhythm
   ============================================ */

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Stagger for grids */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-line-1, .hero-line-2 { opacity: 1; animation: none; }
  .hero-glow, .hero-grid-bg, .scanline, .hero-scroll-cue { animation: none; }
}

/* ---- SECTION LABEL (upgraded) ---- */
.section-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem; color: var(--gold);
  letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 16px; display: inline-block;
  padding: 4px 12px;
  border-left: 2px solid var(--gold);
  position: relative;
}

.section-header { text-align: center; margin-bottom: 72px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--muted); max-width: 640px; margin: 20px auto 0; font-size: 1.1rem; line-height: 1.7; }

/* ---- MANIFESTO SECTION ---- */
.section-manifesto {
  background: linear-gradient(180deg, var(--dark) 0%, var(--navy-deep) 100%);
  padding: var(--section-padding);
}
.manifesto-header { text-align: center; margin-bottom: 80px; }
.manifesto-h2 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 12px 0;
}
.manifesto-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  max-width: 1080px; margin: 0 auto;
}
.manifesto-item {
  position: relative;
  padding: 32px 0 32px 28px;
  border-left: 1px solid var(--card-border);
  transition: border-color 0.3s;
}
.manifesto-item:hover { border-left-color: var(--gold); }
.manifesto-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1; margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.manifesto-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem; color: var(--gold);
  letter-spacing: 3px; display: block; margin-bottom: 14px;
}
.manifesto-item h3 {
  font-size: 1.6rem; margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.manifesto-item p {
  color: var(--muted); font-size: 1rem;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---- DEMO LAUNCHER BUTTON ---- */
.section-demo { background: var(--dark); }
.demo-launcher-wrap {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.demo-launcher {
  display: flex; align-items: center; gap: 24px;
  width: 100%; padding: 28px 32px;
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  cursor: pointer; text-align: left;
  color: var(--white);
  position: relative; overflow: hidden;
  font-family: inherit;
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}
.demo-launcher::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.demo-launcher:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.2);
}
.demo-launcher:hover::before { transform: scaleX(1); }
.demo-launcher:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.demo-launcher-glow {
  position: absolute; top: 50%; left: 12%; transform: translateY(-50%);
  width: 300px; height: 300px; pointer-events: none;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 60%);
  opacity: 0.6;
  animation: glow-pulse 6s ease-in-out infinite;
}

.demo-launcher-play {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(201,168,76,0.35),
              inset 0 1px 0 rgba(255,255,255,0.3);
  position: relative;
  transition: transform 0.3s var(--ease-out);
}
.demo-launcher-play::after {
  content: '';
  position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  animation: play-pulse 2.5s ease-in-out infinite;
}
@keyframes play-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.15); opacity: 0; }
}
.demo-launcher-play svg { width: 28px; height: 28px; margin-left: 3px; }
.demo-launcher:hover .demo-launcher-play { transform: scale(1.06); }

.demo-launcher-text {
  flex: 1; display: flex; flex-direction: column; gap: 4px;
}
.demo-launcher-label {
  font-family: 'Share Tech Mono', monospace; font-size: 0.7rem;
  color: var(--gold); letter-spacing: 3px;
}
.demo-launcher-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.5rem; color: var(--white);
  letter-spacing: -0.01em;
}
.demo-launcher-sub {
  color: var(--muted); font-size: 0.9rem;
}
.demo-launcher-arrow {
  font-size: 1.5rem; color: var(--gold);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.demo-launcher:hover .demo-launcher-arrow { transform: translateX(6px); }

.demo-launcher-meta {
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
  font-family: 'Share Tech Mono', monospace; font-size: 0.72rem;
  color: var(--muted-dark); letter-spacing: 2px;
}
.demo-meta-item {
  display: inline-flex; align-items: center; gap: 8px;
}
.dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #28C840;
  box-shadow: 0 0 8px rgba(40,200,64,0.6);
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

@media (max-width: 640px) {
  .demo-launcher { flex-direction: column; align-items: flex-start; text-align: left; padding: 24px; }
  .demo-launcher-arrow { align-self: flex-end; }
}

/* ---- DEMO MODAL ---- */
.demo-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.demo-modal.is-open { display: flex; }
.demo-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 12, 24, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: modal-fade 0.3s var(--ease-out);
}
.demo-modal-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1200px; height: 85vh;
  background: linear-gradient(180deg, #1A2940 0%, #111D2E 100%);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.1);
  overflow: hidden;
  display: flex; flex-direction: column;
  animation: modal-rise 0.4s var(--ease-out);
}
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-rise {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.demo-frame-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: #0E1826;
  border-bottom: 1px solid var(--card-border);
  flex-shrink: 0;
}
.demo-dot {
  width: 12px; height: 12px; border-radius: 50%;
  display: inline-block;
}
.demo-dot-red {
  background: #FF5F57;
  cursor: pointer;
  transition: transform 0.2s;
}
.demo-dot-red:hover { transform: scale(1.2); box-shadow: 0 0 8px rgba(255,95,87,0.6); }
.demo-dot-amber { background: #FEBC2E; }
.demo-dot-green { background: #28C840; }
.demo-url {
  margin-left: auto; margin-right: auto;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem; color: var(--muted);
  background: rgba(0,0,0,0.2);
  padding: 4px 16px; border-radius: 4px;
  letter-spacing: 1px;
}
.demo-modal-close {
  width: 28px; height: 28px; border-radius: 4px;
  background: transparent; border: none; cursor: pointer;
  color: var(--muted); font-size: 1.4rem; line-height: 1;
  transition: background 0.2s, color 0.2s;
}
.demo-modal-close:hover { background: rgba(201,168,76,0.12); color: var(--gold); }

.demo-modal-body { flex: 1; overflow: hidden; background: var(--white); }
.demo-modal-body iframe {
  width: 100%; height: 100%; border: none; display: block;
}

@media (max-width: 768px) {
  .demo-modal { padding: 0; }
  .demo-modal-inner { height: 100vh; max-width: none; border-radius: 0; }
  .demo-url { display: none; }
}

/* ---- UPGRADED STATS ---- */
.section-stats { padding: 100px 0; }
.stats-grid-large { gap: 48px; }
.stats-grid-large .stat-item {
  padding: 32px 16px; position: relative;
}
.stats-grid-large .stat-item:not(:last-child)::after {
  content: ''; position: absolute; top: 20%; right: -24px;
  width: 1px; height: 60%;
  background: linear-gradient(180deg, transparent, var(--card-border), transparent);
}
.stats-grid-large .stat-number {
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.stats-grid-large .stat-unit { font-size: 0.5em; opacity: 0.8; }
.stats-grid-large .stat-label {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.2rem; color: var(--white);
  letter-spacing: 0.02em; display: block; margin-bottom: 8px;
}
.stats-grid-large .stat-caption {
  display: block; color: var(--muted);
  font-size: 0.85rem; line-height: 1.5;
  max-width: 220px; margin: 0 auto;
}

@media (max-width: 900px) {
  .stats-grid-large .stat-item:not(:last-child)::after { display: none; }
}

/* ---- ENGINE CARD V2 ---- */
.engine-card-v2 {
  padding: 44px 36px;
  background: linear-gradient(180deg, var(--card-bg) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--card-border);
  text-align: left;
  transition: all 0.4s var(--ease-out);
  position: relative; overflow: hidden;
}
.engine-card-v2::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.engine-card-v2:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.engine-card-v2:hover::before { transform: scaleX(1); }
.engine-card-v2 .engine-glyph {
  width: 56px; height: 56px; color: var(--gold);
  margin-bottom: 24px;
}
.engine-card-v2 .engine-glyph svg { width: 100%; height: 100%; }
.engine-card-v2 .engine-label {
  font-family: 'Share Tech Mono', monospace; font-size: 0.7rem;
  color: var(--gold); letter-spacing: 3px;
  margin-bottom: 12px; display: block;
}
.engine-card-v2 h3 {
  font-size: 1.6rem; margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.engine-card-v2 p {
  color: var(--muted); font-size: 0.98rem; line-height: 1.75;
}

/* ---- UPGRADED PRODUCT CARD ---- */
.product-card {
  padding: 40px 32px;
  background: linear-gradient(180deg, var(--card-bg) 0%, var(--navy-deep) 100%);
  transition: all 0.4s var(--ease-out);
  position: relative; overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.product-card:hover { transform: translateY(-6px); border-color: var(--card-border-hover); }
.product-card:hover::before { transform: scaleX(1); }

/* ---- PRODUCT GRID: FEATURED (Pro + Forge) ---- */
.product-grid-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 16px;
}
.product-grid-featured .product-card {
  border-color: var(--gold);
}
.product-shipping-note {
  text-align: center;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  margin: 8px 0 48px;
}

/* ---- PRODUCT GRID: ROADMAP (Sync + Direct) ---- */
.product-grid-roadmap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.product-card-roadmap {
  padding: 28px 24px !important;
  opacity: 0.75;
  border-color: var(--card-border) !important;
}
.product-card-roadmap:hover {
  opacity: 1;
}
.product-card-roadmap h3 {
  font-size: 1.2rem !important;
}
.product-card-roadmap p {
  font-size: 0.88rem !important;
}

/* Clickable product card (anchor wrapper) */
a.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
a.product-card-link:hover {
  border-color: var(--gold) !important;
}
.product-card-cta {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease-out);
}
a.product-card-link:hover .product-card-cta {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .product-grid-featured,
  .product-grid-roadmap {
    grid-template-columns: 1fr;
  }
}

/* ---- COMPARISON V2 ---- */
.comparison-table-v2 {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}
.comparison-table-v2 thead tr {
  background: linear-gradient(180deg, rgba(201,168,76,0.06), transparent);
}
.comparison-table-v2 th, .comparison-table-v2 td {
  padding: 18px 24px;
}
.comparison-table-v2 th.highlight {
  color: var(--gold);
  font-size: 0.85rem; font-weight: 700;
  background: rgba(201,168,76,0.08);
}
.comparison-table-v2 td.highlight {
  color: var(--white); font-weight: 700;
  background: rgba(201,168,76,0.04);
}
.comparison-table-v2 tbody tr { transition: background 0.2s; }
.comparison-table-v2 tbody tr:hover { background: rgba(201,168,76,0.03); }
.table-footnote {
  text-align: center; color: var(--muted-dark);
  font-size: 0.85rem; font-style: italic;
  margin-top: 24px;
}

/* ---- ORIGIN SECTION (anonymized) ---- */
.section-origin {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.origin-block {
  max-width: 820px; margin: 0 auto; text-align: center;
  padding: 40px 0;
}
.origin-h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 12px 0 40px;
}
.origin-prose { text-align: left; }
.origin-prose p {
  color: var(--muted); font-size: 1.1rem;
  line-height: 1.85; margin-bottom: 24px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.origin-prose p:first-letter {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.2rem; font-weight: 700;
  float: left; line-height: 1; padding: 4px 12px 0 0;
  color: var(--gold);
}
.origin-signature {
  margin-top: 40px;
  text-align: center;
}
.origin-byline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 4px;
}
.origin-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.origin-philosophy {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.55;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

/* ---- CTA SECTION ---- */
.section-cta {
  background: linear-gradient(180deg, var(--dark) 0%, var(--navy-deep) 100%);
  position: relative; overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08), transparent 70%);
  pointer-events: none;
}
.section-cta h2 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1; letter-spacing: -0.02em;
}

/* ---- BUTTON REFINEMENTS ---- */
.btn { position: relative; overflow: hidden; letter-spacing: 1.2px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(201,168,76,0.5);
  color: var(--gold);
  transition: all 0.3s var(--ease-out);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ---- NAV REFINEMENTS ---- */
.nav-links .btn.btn-gold { box-shadow: 0 2px 12px rgba(201,168,76,0.2); }

/* ---- FOUNDER SUBTLE (About page) ---- */
.founder-subtle {
  max-width: 720px; margin: 0 auto;
}
.founder-prose p {
  color: var(--muted); font-size: 1.05rem;
  line-height: 1.85; margin-bottom: 20px;
}
.founder-credit {
  display: flex; align-items: center; gap: 16px;
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid var(--card-border);
}
.founder-monogram {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif; font-size: 1.1rem;
  font-weight: 700; color: var(--gold); letter-spacing: 1px;
  flex-shrink: 0;
}
.founder-name {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.1rem; color: var(--white);
  letter-spacing: 0.02em;
}
.founder-title {
  font-family: 'Share Tech Mono', monospace; font-size: 0.75rem;
  color: var(--muted); letter-spacing: 1.5px; margin-top: 4px;
}

