/* ============================================
   USA WEB CODERS — ULTRA PREMIUM STYLESHEET
   Obsidian Luxury Agency Edition
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500&display=swap');

:root {
  /* Obsidian Dark Palette */
  --bg-void: #030508;
  --bg-deep: #06090f;
  --bg-surface: #0a0f1c;
  --bg-elevated: #0f1628;
  --bg-glass: rgba(15, 22, 40, 0.7);
  --bg-glass-light: rgba(255,255,255,0.03);

  /* Premium Accent System */
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --gold-glow: rgba(201, 168, 76, 0.25);
  --electric: #4fc3f7;
  --electric-dim: rgba(79, 195, 247, 0.12);
  --jade: #26d98a;
  --jade-dim: rgba(38, 217, 138, 0.12);
  --crimson: #ff4d6d;

  /* Text Scale */
  --text-white: #f8f9ff;
  --text-bright: #d4dcf0;
  --text-body: #8a9ab8;
  --text-muted: #4a5878;
  --text-ghost: rgba(138, 154, 184, 0.4);

  /* Borders */
  --border-subtle: rgba(255,255,255,0.04);
  --border-default: rgba(201,168,76,0.12);
  --border-bright: rgba(201,168,76,0.35);
  --border-glass: rgba(255,255,255,0.08);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Geometry */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.4s var(--ease-out);
  --transition-fast: all 0.2s var(--ease-in-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg-void);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear, width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
}

body:hover .cursor-dot { opacity: 1; }

a, button, .btn { cursor: none; }

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── AMBIENT GLOW LAYERS ── */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: driftOrb 20s ease-in-out infinite alternate;
}

.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79,195,247,0.04) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation-delay: -10s;
}

@keyframes driftOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 60px) scale(1.1); }
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.85em;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition-fast);
}
a:hover { color: var(--gold-light); }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 120px 0; }
.section-sm { padding: 72px 0; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  cursor: none;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #a87b2a);
  color: #060a12;
  box-shadow: 0 8px 40px rgba(201,168,76,0.3), 0 2px 8px rgba(0,0,0,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 60px rgba(201,168,76,0.45), 0 4px 16px rgba(0,0,0,0.5);
  color: #060a12;
}

.btn-outline {
  background: transparent;
  color: var(--text-bright);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--bg-glass);
  border-color: var(--border-bright);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled::before {
  background: rgba(3, 5, 8, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: var(--border-default);
}

.navbar.scrolled { padding: 16px 0; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: var(--transition-fast);
}

.logo span {
  color: var(--gold);
  font-style: italic;
}

.logo:hover { color: var(--text-white); opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover { color: var(--text-white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: none;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text-bright);
  transition: var(--transition);
  transform-origin: center;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

/* Luxury grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

/* Diagonal decorative lines */
.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-lines::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  right: 20%;
  animation: scanLine 4s ease-in-out infinite;
}

.hero-lines::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(79,195,247,0.08), transparent);
  right: 60%;
  animation: scanLine 6s ease-in-out infinite reverse;
  animation-delay: 2s;
}

@keyframes scanLine {
  0%, 100% { opacity: 0; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.07);
  border: 1px solid var(--border-default);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--jade);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--jade);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--jade); }
  50% { opacity: 0.6; box-shadow: 0 0 20px var(--jade); }
}

.hero h1 {
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 8px;
  color: var(--text-white);
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-body);
  max-width: 560px;
  line-height: 1.7;
  margin: 32px 0 48px;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Marquee strip */
.hero-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  padding: 14px 0;
  position: relative;
  background: rgba(201,168,76,0.02);
}

.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-item .sep {
  color: var(--gold);
  font-size: 16px;
  opacity: 0.4;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border-subtle);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}

.stat-num span {
  color: var(--gold);
  font-style: italic;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── GLASS CARDS ── */
.card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  border-color: var(--border-default);
  background: rgba(15, 22, 40, 0.85);
  transform: translateY(-6px);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.5),
    0 0 0 1px var(--border-default),
    0 0 60px var(--gold-dim);
}

.card:hover::before { opacity: 1; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.service-card {
  background: var(--bg-surface);
  border: none;
  border-radius: 0;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  background: var(--bg-elevated);
  transform: none;
  box-shadow: none;
}

.service-card:hover::after { opacity: 1; }

.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--border-default);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(201,168,76,0.25);
  border-color: var(--border-bright);
  box-shadow: 0 0 30px var(--gold-dim);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--text-white);
  font-family: var(--font-serif);
}

.service-card p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
}

.service-card .card-num {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  opacity: 0.4;
  letter-spacing: 0.1em;
}

/* ── SECTION HEADING ── */
.section-heading { margin-bottom: 64px; }
.section-heading h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.05;
}
.section-heading p {
  color: var(--text-body);
  font-size: 17px;
  max-width: 540px;
  line-height: 1.75;
  font-weight: 300;
}
.section-heading.center { text-align: center; }
.section-heading.center p { margin: 0 auto; }

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
  z-index: 0;
}

.step {
  padding: 0 32px;
  position: relative;
  z-index: 1;
  padding-top: 56px;
}

.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--gold-glow);
  position: absolute;
  top: 24px;
  left: 32px;
  animation: pulseDot 3s infinite;
}

.step:first-child .step-dot { left: 0; }

.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  opacity: 0.7;
}

.step h3 {
  font-size: 19px;
  color: var(--text-white);
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.step p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-surface);
  cursor: none;
  transition: var(--transition);
  border: 1px solid var(--border-subtle);
}

.portfolio-card:hover {
  border-color: var(--border-default);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.portfolio-img-wrap {
  position: relative;
  overflow: hidden;
}

.portfolio-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out), filter 0.4s;
  filter: brightness(0.65) saturate(0.7);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.06);
  filter: brightness(0.8) saturate(1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,5,8,0.9) 0%, transparent 60%);
}

.portfolio-info {
  padding: 24px 28px;
  position: relative;
}

.portfolio-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.portfolio-info h3 {
  font-size: 19px;
  color: var(--text-white);
  font-family: var(--font-serif);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-serif);
  font-size: 120px;
  color: var(--gold);
  opacity: 0.06;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--border-default);
  background: var(--bg-elevated);
}

.stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card > p {
  color: var(--text-bright);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
  font-family: var(--font-serif);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), rgba(201,168,76,0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #060a12;
  font-family: var(--font-sans);
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--gold-dim);
}

.author-name {
  font-weight: 600;
  color: var(--text-white);
  font-size: 15px;
  font-family: var(--font-sans);
}

.author-title {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 2px;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-default), transparent);
  transition: opacity 0.4s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-default);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 60px var(--gold-dim);
}

.pricing-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 1;
}

.pricing-card.featured {
  border-color: var(--border-bright);
  background: linear-gradient(160deg, rgba(201,168,76,0.06) 0%, var(--bg-surface) 60%);
  box-shadow: 0 0 80px var(--gold-dim);
}

.pricing-card.featured::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 1;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-dim);
  border: 1px solid var(--border-default);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.pricing-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--text-white);
  margin: 20px 0;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-price sup {
  font-size: 26px;
  vertical-align: top;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 400;
}

.pricing-price .period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.pricing-desc {
  color: var(--text-body);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.7;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: var(--transition-fast);
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--border-bright);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-info-item p { color: var(--text-bright); font-size: 15px; font-family: var(--font-sans); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 180px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(201,168,76,0.07) 0%, transparent 100%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.05;
}

.page-hero p {
  color: var(--text-body);
  font-size: 18px;
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-default), transparent);
  margin: 0 32px;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.75;
  margin: 20px 0 28px;
  max-width: 280px;
  font-weight: 300;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; }

.footer-col ul a {
  color: var(--text-body);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-col ul a:hover { color: var(--text-white); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal { display: flex; gap: 28px; }
.footer-legal a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}
.footer-legal a:hover { color: var(--gold); }

/* ── TECH TAGS ── */
.tech-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.tech-tag {
  background: var(--bg-glass-light);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 5px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  transition: var(--transition-fast);
  letter-spacing: 0.05em;
}
.tech-tag:hover { border-color: var(--border-default); color: var(--gold); }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text-white);
  cursor: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.faq-toggle {
  width: 28px; height: 28px;
  border: 1px solid var(--border-default);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition-fast);
  font-style: normal;
}

.faq-item.open .faq-toggle {
  background: var(--gold-dim);
  border-color: var(--border-bright);
}

.faq-item.open .faq-toggle::after { content: '−'; }
.faq-toggle::after { content: '+'; }

.faq-answer {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-top: 20px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, rgba(79,195,247,0.04) 100%);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 80px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-banner h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--text-white);
  margin-bottom: 20px;
}

.cta-banner p {
  color: var(--text-body);
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── NEON LINE ── */
.neon-line {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 28px;
  width: 80px;
}

/* ── POLICY PAGES ── */
.policy-hero {
  padding: 180px 0 80px;
  background: radial-gradient(ellipse 60% 40% at 50% -5%, rgba(201,168,76,0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.policy-body { padding: 80px 0; max-width: 800px; }

.policy-body h2 {
  font-size: 24px;
  color: var(--text-white);
  margin: 52px 0 18px;
  padding-top: 36px;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-serif);
}

.policy-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }

.policy-body p { color: var(--text-body); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.policy-body ul { color: var(--text-body); padding-left: 28px; margin-bottom: 16px; }
.policy-body ul li { margin-bottom: 10px; font-size: 15px; line-height: 1.7; }
.policy-body strong { color: var(--text-bright); }

/* ── ABOUT PAGE ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--border-default);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--gold-dim);
}

.team-avatar {
  width: 84px; height: 84px;
  background: linear-gradient(135deg, var(--gold), rgba(201,168,76,0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: #060a12;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px var(--gold-dim);
}

.team-card h3 {
  font-size: 19px;
  color: var(--text-white);
  margin-bottom: 6px;
  font-family: var(--font-serif);
}

.team-card p {
  font-size: 12px;
  color: var(--gold);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .step { padding: 36px 24px; border-left: 1px solid var(--border-default); }
  .step-dot { top: 0; left: -5px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(3, 5, 8, 0.98);
    backdrop-filter: blur(30px);
    padding: 120px 48px 48px;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 28px;
    font-family: var(--font-serif);
    color: var(--text-white);
    letter-spacing: -0.01em;
  }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }
  .nav-cta { display: none; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 52px 32px; }
  .hero h1 { font-size: 44px; }
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  a, button, .btn { cursor: pointer; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .step { border-left: none; border-top: 1px solid var(--border-default); }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Staggered children */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--electric));
  z-index: 9999;
  transform-origin: left;
  transition: transform 0.1s linear;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ============================================
   HERO V2 — PREMIUM REDESIGN
   ============================================ */

/* Override hero layout for split design */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto auto;
  position: relative;
  padding-top: 0;
  overflow: hidden;
}

.hero > .container {
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 60px;
  position: relative;
  z-index: 3;
}

/* Radial spotlight from top */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.09) 0%, rgba(201,168,76,0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Hero heading — dramatic sizing */
.hero h1 {
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 0;
  color: var(--text-white);
  letter-spacing: -0.04em;
}

.hero-h1-accent {
  -webkit-text-stroke: 1.5px var(--gold);
  color: transparent;
  display: inline-block;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
  line-height: 1.0;
  margin-top: 4px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-body);
  max-width: 500px;
  line-height: 1.75;
  margin: 36px 0 44px;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* ── FLOATING VISUAL PANEL ── */
.hero-visual-panel {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  z-index: 4;
  animation: hvpFloat 6s ease-in-out infinite;
}

@keyframes hvpFloat {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50% { transform: translateY(-50%) translateY(-14px); }
}

.hvp-inner {
  background: rgba(10, 15, 28, 0.75);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04),
    0 0 80px rgba(201,168,76,0.08);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hvp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.hvp-blob--1 {
  width: 200px; height: 200px;
  background: rgba(201,168,76,0.12);
  top: -60px; right: -60px;
}

.hvp-blob--2 {
  width: 160px; height: 160px;
  background: rgba(79,195,247,0.07);
  bottom: -40px; left: -40px;
}

.hvp-card {
  background: rgba(15,22,40,0.8);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 16px 18px;
  position: relative;
}

.hvp-card--1 {
  border-color: rgba(201,168,76,0.18);
}

.hvp-card--2 {
  border-color: rgba(79,195,247,0.12);
}

.hvp-card-dot {
  width: 7px; height: 7px;
  background: var(--jade);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--jade);
  position: absolute;
  top: 14px; right: 14px;
  animation: pulseDot 2s infinite;
}

.hvp-card-dot--blue {
  background: var(--electric);
  box-shadow: 0 0 10px var(--electric);
}

.hvp-card-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 6px;
}

.hvp-card--2 .hvp-card-label {
  color: var(--electric);
}

.hvp-card-title {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-white);
  margin-bottom: 12px;
  font-weight: 600;
}

.hvp-card-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}

.hvp-card-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 100px;
  position: relative;
  animation: barGlow 2.5s ease-in-out infinite alternate;
}

.hvp-card--2 .hvp-card-bar span {
  background: linear-gradient(90deg, #4fc3f7, #81d4fa);
}

@keyframes barGlow {
  from { box-shadow: none; }
  to { box-shadow: 0 0 12px rgba(201,168,76,0.6); }
}

.hvp-card-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.hvp-card-meta em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.hvp-card--2 .hvp-card-meta em {
  color: var(--electric);
}

.hvp-stat-row {
  display: flex;
  justify-content: space-between;
  padding-top: 4px;
}

.hvp-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hvp-stat span {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text-white);
  font-weight: 700;
  line-height: 1;
}

/* ── MARQUEE — FULL WIDTH FIXED ── */
.hero-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  padding: 16px 0;
  position: relative;
  z-index: 3;
  background: rgba(201,168,76,0.025);
  /* Edge fade masks */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-item .sep {
  color: var(--gold);
  font-size: 14px;
  opacity: 0.5;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── STATS BAR ── */
.hero-stats-bar {
  position: relative;
  z-index: 3;
  padding: 40px 0 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stats > div:not(.stat-divider) {
  flex: 1;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-subtle);
  flex: none !important;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-num span {
  color: var(--gold);
  font-style: italic;
  font-size: 0.7em;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── RESPONSIVE — hero visual panel ── */
@media (max-width: 1100px) {
  .hero-visual-panel {
    display: none;
  }
  .hero > .container {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 52px; letter-spacing: -0.03em; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .hero-stats > div:not(.stat-divider) { flex: 1 1 40%; padding: 16px; }
  .stat-divider { display: none; }
  .hero-stats-bar { padding: 32px 0 48px; }
}
