/* ── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  --gold:          #C9A84C;
  --gold-light:    #FFD700;
  --gold-pale:     #E8C97A;
  --gold-dim:      rgba(201, 168, 76, 0.12);
  --gold-border:   rgba(201, 168, 76, 0.25);
  --gold-glow:     rgba(201, 168, 76, 0.4);

  --bg-0:          #080808;
  --bg-1:          #0E0E0E;
  --bg-2:          #141414;
  --bg-card:       #181818;
  --bg-card-hover: #1E1E1E;

  --text-primary:  #F0F0F0;
  --text-secondary:#9A9A9A;
  --text-muted:    #5A5A5A;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-0);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────────────────────── */
.gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1, h2, h3 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }

/* ── Utility ─────────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
}
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); display: block; }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #000;
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201,168,76,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-dim);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 20px;
}
.btn-ghost:hover { color: var(--text-primary); }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-md); }

/* ── Nav ──────────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(20px);
  border-color: var(--gold-border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 40px;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.3rem; font-weight: 800;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #000;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.88rem; font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; color: var(--text-primary);
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: currentColor; margin: 5px 0;
  transition: var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(201,168,76,0.05) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.035;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.hero-text { max-width: 580px; }
.hero-badge { margin-bottom: 28px; }
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  display: flex; align-items: center; gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-meta-item { text-align: left; }
.hero-meta-num {
  font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-meta-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.hero-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.08); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.pipeline-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-gold), var(--shadow-card);
  animation: float 6s ease-in-out infinite;
}
.pipeline-card-title {
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.pipeline-step {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}
.pipeline-step.active {
  background: var(--gold-dim);
  border-color: var(--gold-border);
}
.pipeline-step-icon {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.pipeline-step.active .pipeline-step-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.pipeline-step:not(.active) .pipeline-step-icon { background: var(--bg-card); }
.pipeline-step-label { font-size: 0.85rem; font-weight: 500; }
.pipeline-step-sub  { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.pipeline-progress {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.progress-label {
  display: flex; justify-content: space-between;
  font-size: 0.78rem; color: var(--text-secondary);
  margin-bottom: 8px;
}
.progress-bar {
  height: 4px; border-radius: 100px;
  background: var(--bg-2);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 100px;
  width: 68%;
  animation: progress-pulse 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes progress-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

/* ── Stats Strip ─────────────────────────────────────────────────────────────── */
.stats-strip {
  padding: 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 40px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.stat-item {
  padding: 8px 32px;
  text-align: center;
  border-right: 1px solid var(--gold-border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* ── Features ────────────────────────────────────────────────────────────────── */
.features-header { text-align: center; margin-bottom: 64px; }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin: 16px 0 20px;
}
.section-sub { font-size: 1rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--gold-border);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
}
.feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-desc  { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Pipeline Steps ──────────────────────────────────────────────────────────── */
.pipeline-section { background: var(--bg-1); }
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.step-card {
  padding: 36px 28px;
  background: var(--bg-card);
  position: relative;
}
.step-card:not(:last-child)::after {
  content: '→';
  position: absolute; right: -18px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.2rem;
  z-index: 2;
}
.step-num {
  font-size: 3.5rem; font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-border), transparent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
}
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-desc  { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.6; }
.step-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem; font-weight: 600;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}

/* ── Tech Stack ──────────────────────────────────────────────────────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.tech-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}
.tech-card:hover {
  border-color: var(--gold-border);
  background: var(--bg-card-hover);
}
.tech-icon  { font-size: 2rem; margin-bottom: 12px; }
.tech-name  { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.tech-role  { font-size: 0.75rem; color: var(--text-muted); }

/* ── CTA Section ─────────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.cta-section::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.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 640px; margin: 0 auto;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--gold-border);
  padding: 60px 0 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px; margin-bottom: 48px;
}
.footer-brand-name {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.2rem; font-weight: 800;
  margin-bottom: 14px;
}
.footer-brand-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.footer-col-title  { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.87rem; color: var(--text-secondary); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem; color: var(--text-muted);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Auth Pages ──────────────────────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
}
.auth-left {
  background: var(--bg-1);
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 60px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--gold-border);
}
.auth-left-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 100% 60% at 0% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.auth-left-content { position: relative; z-index: 1; max-width: 400px; }
.auth-left-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 800;
  margin-bottom: 48px;
}
.auth-left-title { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.auth-left-sub   { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.auth-left-features { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; }
.auth-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.87rem; color: var(--text-secondary);
}
.auth-feature-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.auth-right {
  background: var(--bg-0);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 60px;
}
.auth-form-wrap { width: 100%; max-width: 400px; }
.auth-form-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.auth-form-sub   { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 36px; }
.form-group      { margin-bottom: 20px; }
.form-label      { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--gold-border);
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-input::placeholder { color: var(--text-muted); }
.form-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000; font-weight: 700; font-size: 0.95rem;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition);
  margin-top: 8px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201,168,76,0.4);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 24px 0;
  color: var(--text-muted); font-size: 0.82rem;
}
.form-divider::before,
.form-divider::after {
  content: ''; flex: 1;
  height: 1px; background: rgba(255,255,255,0.08);
}
.btn-oauth {
  width: 100%; padding: 12px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.btn-oauth:hover {
  border-color: var(--gold-border);
  background: var(--bg-card-hover);
}
.form-footer  { margin-top: 28px; text-align: center; font-size: 0.85rem; color: var(--text-secondary); }
.form-footer a { color: var(--gold); font-weight: 600; }
.form-footer a:hover { color: var(--gold-light); }
.form-error {
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.85rem; color: #f87171;
  margin-bottom: 16px; display: none;
}
.form-error.visible { display: block; }

/* ── Animations ──────────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Scrollbar ───────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── Mobile nav CTA (shown only inside mobile dropdown) ── */
.nav-mobile-cta { display: none; }

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content    { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual     { display: none; }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .tech-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-top      { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-inner     { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--gold-border); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Hide desktop nav items */
  .nav-links  { display: none; }
  .nav-actions { display: none; }

  /* Show hamburger */
  .nav-toggle { display: block; margin-left: auto; }

  /* Mobile dropdown — activated by .open class */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 14px 20px 22px;
    z-index: 99;
  }

  /* CTA buttons inside the dropdown */
  .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
  .nav-mobile-cta .btn {
    justify-content: center;
    width: 100%;
  }

  .features-grid   { grid-template-columns: 1fr; }
  .steps-container { grid-template-columns: 1fr; }
  .step-card::after { display: none; }
  .tech-grid       { grid-template-columns: repeat(2, 1fr); }
  .auth-page       { grid-template-columns: 1fr; }
  .auth-left       { display: none; }
  .footer-top      { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom   { flex-direction: column; gap: 16px; text-align: center; }
  .hero-meta       { flex-wrap: wrap; gap: 16px; }

  /* Hero actions stack on mobile */
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Stats strip */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--gold-border); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section   { padding: 48px 0; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-top: 1px solid var(--gold-border); }
  .stat-item:first-child { border-top: none; }
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .cta-title  { font-size: clamp(1.6rem, 6vw, 2.4rem); }
}
