/**
 * ==========================================
 * ROOT DESIGN TOKENS & THEMING
 * ==========================================
 */
 :root {
  /* BRAND COLORS (Unchanged across themes) */
  --brand-gold: #EDA323;
  --brand-gold-grad: linear-gradient(135deg, #d4920f 0%, #EDA323 40%, #f7c050 100%);
  --brand-gold-glow: 0 0 36px rgba(237, 163, 35, 0.48);

  /* DEFAULT: DARK THEME */
  --bg-base: #080808;
  --bg-darker: #050505;
  --bg-alt: #0d0d0d;
  --bg-surface: #111111;
  --bg-nav: rgba(8, 8, 8, 0.92);
  --bg-card-gold: linear-gradient(150deg, #141005 0%, #110e00 55%, #111111 100%);
  
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.4);
  --text-strong: rgba(255, 255, 255, 0.85);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold-subtle: rgba(237, 163, 35, 0.15);
  
  --ui-glass: rgba(255, 255, 255, 0.04);
  --ui-glass-hover: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] {
  /* OVERRIDES: LIGHT THEME */
  --bg-base: #f9fafb;
  --bg-darker: #f3f4f6;
  --bg-alt: #f3f4f6;
  --bg-surface: #ffffff;
  --bg-nav: rgba(255, 255, 255, 0.92);
  --bg-card-gold: linear-gradient(150deg, #fffcf5 0%, #fff9e6 55%, #ffffff 100%);
  
  --text-primary: #111827;
  --text-secondary: rgba(17, 24, 39, 0.7);
  --text-muted: rgba(17, 24, 39, 0.5);
  --text-strong: #000000;

  --border-subtle: rgba(17, 24, 39, 0.1);
  --border-gold-subtle: rgba(237, 163, 35, 0.3);
  
  --ui-glass: rgba(17, 24, 39, 0.03);
  --ui-glass-hover: rgba(17, 24, 39, 0.06);
}

/**
 * ==========================================
 * GLOBAL RESETS & BASE
 * ==========================================
 */
* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  display: block;
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, p, ul, li, a {
  margin: 0;
  padding: 0;
}

p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.78;
  font-weight: 400;
}

h1, h2, h3 { color: var(--text-primary); }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: transparent; font-family: inherit; }

/**
 * ==========================================
 * TYPOGRAPHY & TEXT HELPERS
 * ==========================================
 */
.amb-serif { font-family: 'Playfair Display', Georgia, serif; }
.amb-gold { color: var(--brand-gold); }
.amb-text-strong { color: var(--text-strong); font-weight: 600; }
.amb-text-center { text-align: center; }

.amb-h1 {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 1.07;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.amb-h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.018em;
  font-weight: 800;
}

.amb-shimmer {
  background: linear-gradient(90deg, #d4920f 0%, #EDA323 30%, #f7d080 60%, #EDA323 100%);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ambShimmer 4s linear infinite;
}

.amb-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.amb-body { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.78; }
.amb-body-sm { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.7; }
.amb-caption { font-size: 0.72rem; color: var(--text-muted); line-height: 1.55; }
.amb-card-title { font-size: 1.28rem; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; line-height: 1.2; }
.amb-card-title-sm { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; line-height: 1.2; }
.amb-section-sub { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; max-width: 520px; }
.amb-section-sub.amb-center { margin-left: auto; margin-right: auto; text-align: center; }

/**
 * ==========================================
 * LAYOUT & UTILITIES
 * ==========================================
 */
.amb-bg-base { background: var(--bg-base); }
.amb-bg-darker { background: var(--bg-darker); }

.amb-section { padding: 96px 5%; }
.amb-py-14 { padding-top: 64px; padding-bottom: 64px; }
.amb-inner { max-width: 1240px; margin: 0 auto; width: 100%; }

.amb-flex { display: flex; }
.amb-flex-col { display: flex; flex-direction: column; }
.amb-items-center { align-items: center; }
.amb-items-start { align-items: flex-start; }
.amb-justify-between { justify-content: space-between; }
.amb-justify-center { justify-content: center; }
.amb-wrap { flex-wrap: wrap; }
.amb-shrink-0 { flex-shrink: 0; }
.amb-relative-z { position: relative; z-index: 1; }

.amb-gap-2 { gap: 8px; }
.amb-gap-3 { gap: 12px; }
.amb-gap-4 { gap: 16px; }
.amb-gap-5 { gap: 20px; }
.amb-gap-6 { gap: 24px; }
.amb-gap-8 { gap: 32px; }
.amb-gap-10 { gap: 40px; }

.amb-mb-0 { margin-bottom: 0; }
.amb-mb-3 { margin-bottom: 12px; }
.amb-mb-4 { margin-bottom: 16px; }
.amb-mb-5 { margin-bottom: 20px; }
.amb-mb-6 { margin-bottom: 24px; }
.amb-mb-7 { margin-bottom: 28px; }
.amb-mb-8 { margin-bottom: 32px; }
.amb-mb-10 { margin-bottom: 40px; }
.amb-mb-14 { margin-bottom: 56px; }
.amb-mt-6 { margin-top: 24px; }
.amb-mx-auto { margin-left: auto; margin-right: auto; }
.amb-w-full { width: 100%; }

/**
 * ==========================================
 * BACKGROUNDS & DIVIDERS
 * ==========================================
 */
.amb-grid-bg {
  background-image: 
    linear-gradient(var(--border-gold-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-gold-subtle) 1px, transparent 1px);
  background-size: 72px 72px;
}

.amb-gold-line {
  width: 44px; height: 2px;
  background: linear-gradient(90deg, var(--brand-gold), transparent);
  border-radius: 999px;
}

.amb-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold-subtle), transparent);
  flex-shrink: 0;
}

.amb-trust-divider {
  width: 1px; height: 13px; background: var(--border-subtle);
}

/**
 * ==========================================
 * NAVIGATION
 * ==========================================
 */
.amb-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.amb-nav-h {
  height: 66px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; max-width: 1240px; margin: 0 auto;
}

.amb-logo-box { display: flex; align-items: center; gap: 10px; }
.amb-logo-icon {
  width: 32px; height: 32px; border-radius: 8px; background: var(--brand-gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #080808;
}
.amb-logo-text { font-weight: 700; font-size: 0.9rem; color: var(--text-primary); letter-spacing: -0.01em; white-space: nowrap; }

.amb-nav-links { display: flex; align-items: center; gap: 26px; }
.amb-nav-link {
  color: var(--text-muted); font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase; transition: color 0.2s;
}
.amb-nav-link:hover { color: var(--brand-gold); }

.amb-theme-btn {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; background: var(--ui-glass);
}
.amb-theme-btn:hover { background: var(--ui-glass-hover); color: var(--text-primary); }

/**
 * ==========================================
 * BUTTONS & PILLS
 * ==========================================
 */
.amb-btn-gold {
  display: inline-block;
  background: var(--brand-gold-grad);
  color: #080808;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 10px; padding: 15px 34px; white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.amb-btn-gold:hover { transform: translateY(-2px); box-shadow: var(--brand-gold-glow), 0 8px 24px rgba(0,0,0,0.15); }

.amb-btn-outline {
  display: inline-block; background: transparent; border: 1px solid var(--brand-gold);
  color: var(--brand-gold); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 10px; padding: 13px 28px; white-space: nowrap;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.amb-btn-outline:hover { background: rgba(237, 163, 35, 0.12); transform: translateY(-1px); box-shadow: 0 0 20px rgba(237, 163, 35, 0.22); }

.amb-btn-sm { padding: 10px 22px; font-size: 0.72rem; }

.amb-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-gold-subtle); background: rgba(237, 163, 35, 0.05);
  color: var(--brand-gold); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
}

.amb-dot {
  width: 6px; height: 6px; background: var(--brand-gold); border-radius: 50%;
  flex-shrink: 0; animation: ambPulse 2s ease-in-out infinite;
}

.amb-pill {
  display: inline-flex; align-items: center;
  background: rgba(237, 163, 35, 0.08); border: 1px solid var(--border-gold-subtle);
  border-radius: 999px; color: var(--brand-gold); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; padding: 4px 12px;
}

/**
 * ==========================================
 * BENTO CARDS & COMPONENTS
 * ==========================================
 */
.amb-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 18px; position: relative; overflow: hidden; padding: 36px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.amb-card:hover {
  transform: translateY(-7px); border-color: var(--brand-gold);
  box-shadow: 0 20px 52px rgba(237, 163, 35, 0.15);
}
.amb-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 18px;
  background: radial-gradient(circle at 90% 10%, rgba(237, 163, 35, 0.05), transparent 58%);
  pointer-events: none;
}

.amb-card-gold { background: var(--bg-card-gold); border-color: var(--border-gold-subtle); }

.amb-icon-box {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(237, 163, 35, 0.1); border: 1px solid var(--border-gold-subtle);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.amb-icon-box-sm {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(237, 163, 35, 0.1); border: 1px solid var(--border-gold-subtle);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Specific Card Layouts */
.amb-bento { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto auto; gap: 14px; }
.amb-bc1 { grid-column: 1 / 3; grid-row: 1; }
.amb-bc2 { grid-column: 3; grid-row: 1 / 3; }
.amb-bc3 { grid-column: 1; grid-row: 2; }
.amb-bc4 { grid-column: 2; grid-row: 2; }

.amb-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.amb-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.amb-grid-halves { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.amb-grid-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/**
 * ==========================================
 * HERO SPECIFICS
 * ==========================================
 */
.amb-hero-section {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 128px 5% 96px; overflow: hidden; background: var(--bg-base);
}
.amb-glow-blob { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.amb-glow-blob.top-right { width: 700px; height: 700px; top: -180px; right: -150px; background: rgba(237, 163, 35, 0.05); filter: blur(130px); }
.amb-glow-blob.bottom-left { width: 450px; height: 450px; bottom: -60px; left: 8%; background: rgba(237, 163, 35, 0.03); filter: blur(110px); }
.amb-particles-container { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.amb-decor-rings { position: absolute; bottom: 0; right: 0; opacity: 0.06; pointer-events: none; z-index: 0; }
.amb-hero-content { max-width: 820px; }
.amb-hero-sub { max-width: 580px; font-size: clamp(0.94rem, 1.65vw, 1.12rem); }
.amb-trust-text { font-size: 0.74rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.04em; }

/**
 * ==========================================
 * STATS & PRICING
 * ==========================================
 */
.amb-stats-section {
  background: var(--bg-alt); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); padding: 44px 5%;
}
.amb-stat-big { font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 800; color: var(--brand-gold); letter-spacing: -0.025em; line-height: 1; }
.amb-stat-sm { font-size: 1.4rem; }
.amb-stat-label { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-top: 8px; }

.amb-price-gold { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800; color: var(--brand-gold); letter-spacing: -0.03em; line-height: 1; }
.amb-price-text { font-size: clamp(1.8rem, 3.2vw, 2.7rem); font-weight: 800; color: var(--text-primary); letter-spacing: -0.025em; line-height: 1; }
.amb-price-currency { font-size: 1.4rem; font-weight: 600; }
.amb-price-currency-alt { font-size: 1rem; font-weight: 600; color: var(--text-muted); }
.amb-price-tag { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; margin-bottom: 28px; }
.amb-price-eyebrow { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }

.amb-price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand-gold); color: #080808; font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}

.amb-check-row { display: flex; align-items: flex-start; gap: 10px; }
.amb-check-icon {
  width: 20px; height: 20px; border-radius: 50%; background: rgba(237, 163, 35, 0.1);
  border: 1px solid var(--border-gold-subtle); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}

.amb-pricing-note {
  background: var(--ui-glass); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 14px 16px;
}

/**
 * ==========================================
 * SPECIFIC COMPONENTS (Code, Info, AI)
 * ==========================================
 */
.amb-code-card { padding-bottom: 60px; }
.amb-code {
  font-family: 'Courier New', monospace; font-size: 0.67rem; color: rgba(237, 163, 35, 0.6);
  line-height: 1.8; user-select: none; pointer-events: none; position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 24px; mask-image: linear-gradient(to top, black, transparent 88%); -webkit-mask-image: linear-gradient(to top, black, transparent 88%);
}

.amb-seo-bars { display: flex; align-items: flex-end; gap: 8px; height: 48px; }
.amb-seo-bars .bar { flex: 1; border-radius: 3px 3px 0 0; }
.amb-seo-bars .bar-1 { background: rgba(237,163,35,0.15); height: 25%; }
.amb-seo-bars .bar-2 { background: rgba(237,163,35,0.25); height: 42%; }
.amb-seo-bars .bar-3 { background: rgba(237,163,35,0.40); height: 60%; }
.amb-seo-bars .bar-4 { background: rgba(237,163,35,0.55); height: 74%; }
.amb-seo-bars .bar-5 { background: rgba(237,163,35,0.75); height: 86%; }
.amb-seo-bars .bar-6 { background: var(--brand-gold); height: 100%; box-shadow: 0 0 12px rgba(237,163,35,0.5); }
.amb-seo-text { font-size: 0.7rem; color: var(--brand-gold); font-weight: 600; letter-spacing: 0.03em; }

.amb-info-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 12px;
  padding: 18px 22px; display: flex; align-items: center; gap: 14px;
}
.amb-info-title { font-size: 0.82rem; font-weight: 700; margin-bottom: 3px; color: var(--text-primary); }
.amb-info-sub { font-size: 0.76rem; color: var(--text-muted); line-height: 1.4; }

.amb-pf-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 14px;
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.amb-pf-card:hover { transform: translateY(-5px); border-color: rgba(237, 163, 35, 0.45); box-shadow: 0 16px 40px rgba(237, 163, 35, 0.1); }
.amb-highlight-card { border-color: var(--border-gold-subtle); }
.amb-pf-icon { color: rgba(237, 163, 35, 0.45); }
.amb-pf-title { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.amb-pf-link { font-size: 0.74rem; color: var(--brand-gold); font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; }
.amb-pf-link-static { font-size: 0.74rem; color: rgba(237, 163, 35, 0.5); font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; }

.amb-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-gold); box-shadow: 0 0 10px rgba(237,163,35,0.7); animation: ambPulse 2s ease-in-out infinite; }

.amb-ai-section { padding: 96px 5%; background: var(--bg-alt); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.amb-ai-card {
  background: var(--ui-glass); border: 1px solid var(--border-subtle); border-radius: 14px;
  padding: 22px 26px; display: flex; gap: 16px; align-items: flex-start;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.amb-ai-card:hover { border-color: var(--border-gold-subtle); background: var(--ui-glass-hover); }
.amb-ai-title { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; }
.amb-ai-sub { font-size: 0.79rem; color: var(--text-secondary); line-height: 1.65; }

/**
 * ==========================================
 * WIZARD COMPONENT
 * ==========================================
 */
.amb-wiz-card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 20px; padding: 40px; }
.amb-wstep { display: none; }
.amb-wstep.on { display: block; animation: ambFadeUp 0.4s ease; }
.amb-prog-track { height: 2px; background: var(--border-subtle); border-radius: 999px; overflow: hidden; }
.amb-prog-fill { height: 100%; background: linear-gradient(90deg, #EDA323, #f7c050); border-radius: 999px; box-shadow: 0 0 14px rgba(237,163,35,0.6); transition: width 0.55s cubic-bezier(0.22,1,0.36,1); }
.amb-wiz-step-lbl { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

.amb-wdot { width: 8px; height: 8px; border-radius: 999px; background: var(--border-subtle); transition: all 0.3s ease; }
.amb-wdot.act { width: 22px; background: var(--brand-gold); box-shadow: 0 0 10px rgba(237,163,35,0.4); }
.amb-wdot.done { background: rgba(237, 163, 35, 0.45); }

.amb-wopt {
  width: 100%; background: var(--ui-glass); border: 1px solid var(--border-subtle);
  color: var(--text-secondary); border-radius: 12px; padding: 13px 18px;
  font-size: 0.88rem; font-weight: 500; text-align: left; display: flex; align-items: center; gap: 12px;
  transition: all 0.22s ease; margin-bottom: 8px;
}
.amb-wopt:hover, .amb-wopt.on {
  border-color: var(--brand-gold); background: rgba(237, 163, 35, 0.1); color: var(--brand-gold); box-shadow: 0 0 18px rgba(237, 163, 35, 0.1);
}
.amb-wiz-emoji { font-size: 1.1rem; flex-shrink: 0; }
.amb-wiz-opt-title { font-weight: 600; font-size: 0.88rem; color: var(--text-primary); }
.amb-wiz-opt-sub { font-size: 0.74rem; opacity: 0.6; margin-top: 2px; }

.amb-winput {
  width: 100%; background: var(--ui-glass); border: 1px solid var(--border-subtle);
  color: var(--text-primary); border-radius: 10px; padding: 13px 16px;
  font-size: 0.9rem; outline: none; resize: vertical; transition: border-color 0.25s, box-shadow 0.25s; display: block;
}
.amb-winput:focus { border-color: var(--brand-gold); box-shadow: 0 0 0 3px rgba(237, 163, 35, 0.14); }
.amb-winput::placeholder { color: var(--text-muted); }

.amb-wlabel { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.amb-wiz-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-muted); }
.amb-wiz-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }

.amb-back { background: none; border: none; color: var(--text-muted); font-size: 0.76rem; padding: 6px 0; margin-top: 10px; display: block; transition: color 0.2s; }
.amb-back:hover { color: var(--text-primary); }

.amb-success { display: none; }
.amb-success.on { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; animation: ambFadeUp 0.5s ease; }
.amb-success-icon { width: 70px; height: 70px; border-radius: 50%; background: rgba(237, 163, 35, 0.1); border: 2px solid var(--brand-gold); display: flex; align-items: center; justify-content: center; }

.amb-quote-card { background: var(--ui-glass); border: 1px solid var(--border-subtle); border-radius: 14px; padding: 22px 26px; }
.amb-quote-title { font-size: 0.7rem; font-weight: 700; color: var(--brand-gold); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 8px; }

/**
 * ==========================================
 * FOOTER
 * ==========================================
 */
.amb-footer { padding: 36px 5%; background: var(--bg-darker); border-top: 1px solid var(--border-subtle); }
.amb-logo-sm { width: 28px; height: 28px; border-radius: 7px; }
.amb-logo-text-sm { font-size: 0.84rem; }
.amb-footer-link { font-size: 0.74rem; color: var(--text-muted); transition: color 0.2s; }
.amb-footer-link:not(.amb-no-hover):hover { color: var(--brand-gold); }

/**
 * ==========================================
 * ANIMATIONS
 * ==========================================
 */
.amb-rv { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.amb-rv.in { opacity: 1; transform: translateY(0); }

.amb-pt { position: absolute; border-radius: 50%; background: var(--brand-gold); pointer-events: none; animation: ambRise linear infinite; }

@keyframes ambPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.28; transform: scale(0.5); } }
@keyframes ambShimmer { 0% { background-position: 300% center; } 100% { background-position: -300% center; } }
@keyframes ambFadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ambRise { 0% { opacity: 0; transform: translateY(0) scale(1); } 12% { opacity: 0.6; } 88% { opacity: 0.18; } 100% { opacity: 0; transform: translateY(-130px) scale(0.3); } }

/**
 * ==========================================
 * RESPONSIVE
 * ==========================================
 */
@media (max-width: 900px) {
  .amb-bento { grid-template-columns: 1fr 1fr; }
  .amb-bc1, .amb-bc2 { grid-column: 1 / 3; grid-row: auto; }
  .amb-bc3 { grid-column: 1; grid-row: auto; }
  .amb-bc4 { grid-column: 2; grid-row: auto; }
  .amb-grid-3 { grid-template-columns: 1fr; }
  .amb-grid-halves { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .amb-bento { grid-template-columns: 1fr; }
  .amb-bc1, .amb-bc2, .amb-bc3, .amb-bc4 { grid-column: 1; grid-row: auto; }
  .amb-grid-2 { grid-template-columns: 1fr; }
  .amb-nav-links { display: none; }
}

@media (max-width: 560px) {
  .amb-grid-stats { grid-template-columns: repeat(2, 1fr); }
}

/**
 * ==========================================
 * SCROLLBAR
 * ==========================================
 */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--border-gold-subtle); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-gold); }