/* ============================================
   ASTROCHARTS — Landing Page Styles v2.0
   Mobile-first, Dark Cosmic Premium Theme
   ============================================ */

/* ---- Navbar ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--nav-height);
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  background: rgba(7, 10, 18, 0.80);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background var(--duration-base) var(--ease-out);
  /* Safe area for notch devices */
  padding-top: env(safe-area-inset-top, 0px);
}
.nav.scrolled {
  background: rgba(7, 10, 18, 0.95);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--text);
  text-decoration: none;
  margin-right: var(--space-4);
  flex-shrink: 0;
}
.nav-brand-icon {
  font-size: 1.4rem;
  width: 72px !important;
  height: 72px !important;
  border-radius: 14px !important;
  object-fit: contain;
  animation: logoBreathe 4s ease-in-out infinite;
}
@keyframes logoBreathe {
  0%, 100% { filter: brightness(1) saturate(1); }
  50%      { filter: brightness(1.25) saturate(1.35); }
}
.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-5);
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  transition: color var(--duration-fast);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  white-space: nowrap;
}
/* Legacy .nav-lang standalone (now handled by .nav-lang-dropdown) */
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
}
/* ---- Nav Dropdown ---- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color var(--duration-fast);
}
.nav-dropdown-toggle:hover {
  color: var(--text);
}
.nav-dropdown-toggle i.fa-chevron-down,
.nav-dropdown-toggle .am-icon-chevron {
  width: 0.75rem;
  height: 0.75rem;
  font-size: 0.55rem;
  transition: transform var(--duration-fast);
}
.nav-dropdown:hover .nav-dropdown-toggle i.fa-chevron-down,
.nav-dropdown:hover .nav-dropdown-toggle .am-icon-chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(15, 18, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2) 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity var(--duration-fast) var(--ease-out), visibility var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  list-style: none;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown-menu li {}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px 18px;
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: var(--weight-normal);
  text-decoration: none;
  transition: all var(--duration-fast);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  color: var(--text);
  background: rgba(124, 92, 255, 0.08);
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-2) var(--space-4);
}

/* Mobile Nav Section Labels */
.mobile-nav-section {
  padding: var(--space-2) var(--space-4) var(--space-1);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-4);
}
.mobile-nav-section:first-child {
  margin-top: 0;
}

/* ---- Language Switcher Dropdown ---- */
.nav-lang-dropdown {
  position: relative;
  display: none;
}
.nav-lang-dropdown .nav-lang {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: var(--text-xs);
  cursor: pointer;
  transition: all var(--duration-fast);
}
.nav-lang-dropdown .nav-lang:hover {
  background: rgba(255,255,255,0.10);
  color: var(--text);
}
.nav-lang-flag {
  font-size: 1rem;
  line-height: 1;
}
.nav-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: rgba(15, 18, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2) 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--duration-fast) var(--ease-out), visibility var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  list-style: none;
  z-index: 200;
}
.nav-lang-dropdown:hover .nav-lang-menu,
.nav-lang-dropdown:focus-within .nav-lang-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-lang-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-lang-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  padding: 8px 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--duration-fast);
  text-align: left;
}
.nav-lang-option:hover {
  background: rgba(124, 92, 255, 0.08);
  color: var(--text);
}
.nav-lang-option.active {
  color: var(--accent);
  font-weight: var(--weight-medium);
}

/* Mobile Language Switcher */
.mobile-nav-lang {
  display: flex;
  flex-shrink: 0;
  gap: var(--space-2);
  padding: var(--space-4);
  margin-top: var(--space-2);
  border-top: 1px solid var(--border);
}
.mobile-lang-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 10px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: var(--text-xs);
  cursor: pointer;
  transition: all var(--duration-fast);
}
.mobile-lang-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}
.mobile-lang-btn.active {
  background: rgba(124, 92, 255, 0.12);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: var(--weight-medium);
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-lang-dropdown { display: block; }
  .nav-hamburger { display: none; }
}
@media (min-width: 900px) and (max-width: 1110px) {
  .am-site-nav .nav-inner { padding: 0 18px; }
  .am-site-nav .nav-links { gap: 14px; }
  .am-site-nav .nav-actions { gap: 8px; }
  .am-site-nav .nav-links a,
  .am-site-nav .nav-dropdown-toggle { font-size: 0.66rem; letter-spacing: 0.075em; }
  .am-reveal-brand { font-size: 1.18rem; }
  .am-site-nav .nav-cta-btn { display: none; }
}
@media (min-width: 1280px) {
  .nav-links { gap: var(--space-6); }
}
@media (min-width: 1600px) {
  .nav-inner { max-width: 1400px; }
  .nav-links { gap: var(--space-8); }
}

/* ---- Mobile Menu ---- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) + 10);
  background: rgba(7, 10, 18, 0.97);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  padding-bottom: 0;
  transform: translateX(100%);
  transition: transform var(--duration-base) var(--ease-out);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
  flex-shrink: 0;
}
.mobile-nav-close {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  list-style: none;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-2);
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-4);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  transition: all var(--duration-fast);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: rgba(124, 92, 255, 0.08);
  color: var(--text);
}
.mobile-nav-footer {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-4) 0;
}

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-offset) + var(--space-12)) 0 var(--space-16);
  position: relative;
  overflow: hidden;
}
/* Old hero::before glow removed – now using .hero-visual::before instead */
.hero::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 50, 100, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  background: rgba(124, 92, 255, 0.10);
  border: 1px solid rgba(124, 92, 255, 0.25);
  color: var(--brand-light);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-6);
}
.hero h1 {
  font-size: var(--text-3xl);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
  max-width: 560px;
}
.hero-highlight {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
/* ---- Hero Visual: Cosmic Orb (no phone mockup) ---- */
.hero-visual {
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}
/* Glow behind the orb – follows the visual container */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 40, 120, 0.18) 0%, rgba(60, 25, 90, 0.08) 35%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: pulse-glow 6s ease-in-out infinite;
}

/* ============================================
   CSS COSMIC ORB — Premium Hero Visual
   No images, pure CSS/SVG. Crisp at any resolution.
   ============================================ */
.hero-orb {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Glowing core sphere */
.hero-orb-core {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(155, 122, 255, 0.50) 0%, rgba(124, 92, 255, 0.25) 40%, transparent 70%),
    radial-gradient(circle at 60% 65%, rgba(212, 160, 74, 0.20) 0%, transparent 55%),
    radial-gradient(circle, rgba(88, 50, 140, 0.80) 0%, rgba(40, 20, 80, 0.40) 60%, transparent 100%);
  box-shadow:
    0 0 60px rgba(124, 92, 255, 0.35),
    0 0 120px rgba(88, 40, 120, 0.15),
    inset 0 -20px 40px rgba(0, 0, 0, 0.30);
  animation: orb-pulse 4s ease-in-out infinite;
}

/* Orbital rings */
.hero-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
}
.hero-orb-ring-1 {
  width: 190px;
  height: 190px;
  border-color: rgba(124, 92, 255, 0.25);
  animation: spin-slow 60s linear infinite;
}
.hero-orb-ring-2 {
  width: 260px;
  height: 260px;
  border-color: rgba(212, 160, 74, 0.15);
  animation: spin-slow 90s linear infinite reverse;
}
.hero-orb-ring-3 {
  width: 320px;
  height: 320px;
  border-color: rgba(124, 92, 255, 0.10);
  border-style: dashed;
  animation: spin-slow 120s linear infinite;
}

/* Small orbit dots */
.hero-orb-ring-1::before,
.hero-orb-ring-2::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-orb-ring-1::before {
  background: var(--brand-light);
  box-shadow: 0 0 10px var(--brand-light);
}
.hero-orb-ring-2::before {
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
}

/* Zodiac symbol orbit */
.hero-zodiac-orbit {
  position: absolute;
  width: 340px;
  height: 340px;
  animation: spin-slow 180s linear infinite reverse;
}
.hero-z {
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(200, 180, 255, 0.55);
  text-shadow: 0 0 8px rgba(124, 92, 255, 0.20);
  left: 50%;
  top: 50%;
  /* Each symbol gets placed on a circle: angle = var(--i) * 30deg */
  transform: rotate(calc(var(--i) * 30deg)) translateY(-170px) rotate(calc(var(--i) * -30deg));
  transition: color 0.3s, text-shadow 0.3s;
}

/* Center star */
.hero-orb-star {
  position: absolute;
  font-size: 1.8rem;
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(212, 160, 74, 0.60);
  z-index: 2;
  animation: orb-star-pulse 3s ease-in-out infinite;
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(124,92,255,0.35), 0 0 120px rgba(88,40,120,0.15), inset 0 -20px 40px rgba(0,0,0,0.30); }
  50% { transform: scale(1.05); box-shadow: 0 0 80px rgba(124,92,255,0.45), 0 0 160px rgba(88,40,120,0.20), inset 0 -20px 40px rgba(0,0,0,0.30); }
}
@keyframes orb-star-pulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---- Responsive Hero Visual ---- */
@media (min-width: 768px) {
  .hero h1 { font-size: var(--text-4xl); }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: flex; }
  .hero-orb { width: 360px; height: 360px; }
  .hero-orb-core { width: 120px; height: 120px; }
  .hero-orb-ring-1 { width: 200px; height: 200px; }
  .hero-orb-ring-2 { width: 270px; height: 270px; }
  .hero-orb-ring-3 { width: 340px; height: 340px; }
  .hero-zodiac-orbit { width: 310px; height: 310px; }
  .hero-z { transform: rotate(calc(var(--i) * 30deg)) translateY(-155px) rotate(calc(var(--i) * -30deg)); }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: var(--text-5xl); }
  .hero-orb { width: 420px; height: 420px; }
  .hero-orb-core { width: 150px; height: 150px; }
  .hero-orb-ring-1 { width: 240px; height: 240px; }
  .hero-orb-ring-2 { width: 320px; height: 320px; }
  .hero-orb-ring-3 { width: 400px; height: 400px; }
  .hero-zodiac-orbit { width: 360px; height: 360px; }
  .hero-z { transform: rotate(calc(var(--i) * 30deg)) translateY(-180px) rotate(calc(var(--i) * -30deg)); }
}
@media (min-width: 1280px) {
  .hero-orb { width: 460px; height: 460px; }
  .hero-orb-core { width: 160px; height: 160px; }
  .hero-orb-ring-1 { width: 260px; height: 260px; }
  .hero-orb-ring-2 { width: 350px; height: 350px; }
  .hero-orb-ring-3 { width: 440px; height: 440px; }
  .hero-zodiac-orbit { width: 400px; height: 400px; }
  .hero-z { transform: rotate(calc(var(--i) * 30deg)) translateY(-200px) rotate(calc(var(--i) * -30deg)); }
}
/* Large screens (1600px+, e.g. 27" monitors) */
@media (min-width: 1600px) {
  .hero-grid { max-width: 1400px; margin: 0 auto; }
  .hero-orb { width: 520px; height: 520px; }
  .hero-orb-core { width: 180px; height: 180px; }
  .hero-orb-ring-1 { width: 290px; height: 290px; }
  .hero-orb-ring-2 { width: 390px; height: 390px; }
  .hero-orb-ring-3 { width: 500px; height: 500px; }
  .hero-zodiac-orbit { width: 450px; height: 450px; }
  .hero-z { transform: rotate(calc(var(--i) * 30deg)) translateY(-225px) rotate(calc(var(--i) * -30deg)); }
  .hero h1 { font-size: clamp(3rem, 3.5vw, 4rem); }
  .hero-visual { min-height: 540px; }
  .hero-visual::before { width: 800px; height: 800px; }
}
/* Ultra-wide screens (1920px+, e.g. 32" monitors) */
@media (min-width: 1920px) {
  .hero-grid { max-width: 1600px; }
  .hero-orb { width: 580px; height: 580px; }
  .hero-orb-core { width: 200px; height: 200px; }
  .hero-orb-ring-1 { width: 320px; height: 320px; }
  .hero-orb-ring-2 { width: 430px; height: 430px; }
  .hero-orb-ring-3 { width: 560px; height: 560px; }
  .hero-zodiac-orbit { width: 500px; height: 500px; }
  .hero-z { transform: rotate(calc(var(--i) * 30deg)) translateY(-250px) rotate(calc(var(--i) * -30deg)); }
  .hero-visual { min-height: 620px; }
  .hero-visual::before { width: 900px; height: 900px; }
}

/* ---- Features Section ---- */
.features {
  padding: var(--space-24) 0;
  position: relative;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  padding: var(--space-8);
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0;
  transition: opacity var(--duration-base);
}
.feature-card:hover {
  border-color: rgba(123, 63, 190, 0.40);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: var(--space-5);
}
.feature-icon.love    { background: rgba(236, 72, 153, 0.12); color: #ec4899; }
.feature-icon.career  { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.feature-icon.money   { background: rgba(34, 197, 94, 0.12); color: #22c55e; }
.feature-icon.spirit  { background: rgba(168, 85, 247, 0.12); color: #a855f7; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
}
.feature-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}
.feature-credit {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--green);
  background: rgba(74, 222, 128, 0.10);
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---- Chat / AI Copilot Section ---- */
.chat-section {
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}
.chat-section::before {
  content: '';
  position: absolute;
  left: -15%;
  top: 20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.chat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
.chat-content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-5);
}
.chat-content p {
  font-size: var(--text-base);
  margin-bottom: var(--space-8);
  max-width: 500px;
}
.chat-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.chat-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.chat-feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.chat-feature-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.chat-feature-text strong {
  color: var(--text);
}
.chat-phones {
  display: none;
  position: relative;
  justify-content: center;
  gap: var(--space-4);
}
.chat-phone {
  width: 220px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: var(--space-5);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}
.chat-phone:nth-child(2) {
  transform: translateY(40px);
}
.chat-phone-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-4);
}
.chat-phone-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.chat-phone-info {
  flex: 1;
}
.chat-phone-name {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
}
.chat-phone-status {
  font-size: var(--text-xs);
  color: var(--green);
}
.chat-msg {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  line-height: 1.5;
  margin-bottom: var(--space-3);
  max-width: 90%;
}
.chat-msg.ai {
  background: rgba(124, 92, 255, 0.10);
  border: 1px solid rgba(124, 92, 255, 0.15);
  color: var(--text-muted);
}
.chat-msg.user {
  background: rgba(212, 160, 74, 0.10);
  border: 1px solid rgba(212, 160, 74, 0.12);
  color: var(--text-muted);
  margin-left: auto;
  text-align: right;
}

@media (min-width: 768px) {
  .chat-grid { grid-template-columns: 1fr 1fr; }
  .chat-phones { display: flex; }
}

/* ---- Testimonials Section ---- */
.testimonials {
  padding: var(--space-24) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--glass-blur));
  padding: var(--space-8);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #FFD700;
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}
.testimonial-text {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  color: white;
}
.testimonial-name {
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
}
.testimonial-role {
  font-size: var(--text-xs);
  color: var(--text-subtle);
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- CTA / Premium Section ---- */
.cta-section {
  padding: var(--space-24) 0;
}
.cta-box {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.12) 0%, rgba(212, 160, 74, 0.08) 100%);
  border: 1px solid rgba(124, 92, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-16) var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}
.cta-box p {
  max-width: 500px;
  margin: 0 auto var(--space-8);
}

/* ---- Footer ---- */
.site-footer {
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}
.footer-brand-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 300px;
  line-height: var(--leading-relaxed);
  margin-top: var(--space-4);
}
.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-sm);
  transition: all var(--duration-fast);
}
.footer-social a:hover {
  background: rgba(124, 92, 255, 0.12);
  border-color: var(--brand);
  color: var(--brand-light);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-col a {
  color: var(--text-muted);
  font-size: var(--text-sm);
  transition: color var(--duration-fast);
}
.footer-col a:hover {
  color: var(--text);
}
.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}
.footer-copyright {
  font-size: var(--text-xs);
  color: var(--text-subtle);
}
.footer-disclaimer {
  font-size: var(--text-xs);
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---- How it Works Section ---- */
.how-it-works {
  padding: var(--space-24) 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  position: relative;
}
.step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--text-on-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  flex-shrink: 0;
  box-shadow: var(--gold-glow);
}
.step-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.step-content p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .step { flex-direction: column; align-items: center; text-align: center; }
}

/* ---- Enhanced Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)), 
              transform 1.35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
              filter 1.55s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
              -webkit-filter 1.55s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
  filter: blur(4px);
  -webkit-filter: blur(4px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity, transform, filter, -webkit-filter;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  -webkit-filter: blur(0);
}

/* Direction variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)), 
              transform 1.35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
              filter 1.55s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
              -webkit-filter 1.55s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
  filter: blur(4px);
  -webkit-filter: blur(4px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity, transform, filter, -webkit-filter;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  -webkit-filter: blur(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)), 
              transform 1.35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
              filter 1.55s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
              -webkit-filter 1.55s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
  filter: blur(4px);
  -webkit-filter: blur(4px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity, transform, filter, -webkit-filter;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  -webkit-filter: blur(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1.35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)), 
              transform 1.35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
              filter 1.55s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
              -webkit-filter 1.55s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
  filter: blur(4px);
  -webkit-filter: blur(4px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity, transform, filter, -webkit-filter;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  -webkit-filter: blur(0);
}

/* Staggered delays */
.reveal-delay-1 { transition-delay: 0.16s; }
.reveal-delay-2 { transition-delay: 0.32s; }
.reveal-delay-3 { transition-delay: 0.48s; }
.reveal-delay-4 { transition-delay: 0.64s; }
.reveal-delay-5 { transition-delay: 0.80s; }
.reveal-delay-6 { transition-delay: 0.96s; }

/* Mobile Reveal signature: stronger blur-to-sharp effect */
@media (max-width: 767px) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(10px);
    -webkit-filter: blur(10px);
    transition-duration: 2.05s;
  }

  .reveal-scale {
    opacity: 0;
    transform: scale(0.96) translateY(22px);
    filter: blur(10px);
    -webkit-filter: blur(10px);
    transition-duration: 2.05s;
  }

  .am-home-visual.reveal,
  .am-method-visual.reveal,
  .am-kybele-visual.reveal,
  .am-copilot-dialogue.reveal,
  .am-location-panel.reveal {
    transform: translateY(28px) scale(1.025);
    filter: blur(16px);
    -webkit-filter: blur(16px);
    transition-duration: 2.35s;
  }

  .reveal.visible,
  .reveal-left.visible,
  .reveal-right.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  -webkit-filter: blur(0);
  }

  .reveal-scale.visible,
  .am-home-visual.reveal.visible,
  .am-method-visual.reveal.visible,
  .am-kybele-visual.reveal.visible,
  .am-copilot-dialogue.reveal.visible,
  .am-location-panel.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  -webkit-filter: blur(0);
  }

  .reveal-delay-1 { transition-delay: 0.22s; }
  .reveal-delay-2 { transition-delay: 0.44s; }
  .reveal-delay-3 { transition-delay: 0.66s; }
  .reveal-delay-4 { transition-delay: 0.88s; }
  .reveal-delay-5 { transition-delay: 1.10s; }
  .reveal-delay-6 { transition-delay: 1.32s; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
    filter: none;
    -webkit-filter: none;
    transition: none;
  }
}

/* ---- Utilities ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
   NAV LOGGED-OUT ACTIONS – Sign-in + CTA for guests
   ============================================ */
.nav-logged-out-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-signin-btn {
  color: var(--text-muted, #94a3b8) !important;
  border: 1px solid rgba(148, 163, 184, 0.25) !important;
  border-radius: 8px !important;
  background: rgba(148, 163, 184, 0.08) !important;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none !important;
}
.nav-signin-btn:hover {
  color: #fff !important;
  border-color: rgba(124, 92, 255, 0.5) !important;
  background: rgba(124, 92, 255, 0.15) !important;
}
.nav-signin-btn i {
  margin-right: 4px;
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .nav-logged-out-actions {
    display: none;
  }
  .mobile-nav-footer [data-show-if="logged-out"],
  .mobile-nav-footer [data-show-if="logged-in"] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
}

/* ============================================
   NAV USER AREA – Logged-in user emblem, credits, dropdown
   ============================================ */
.nav-user-area {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
}

/* Credits badge in nav */
.nav-credits-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 20px;
  color: #fbbf24;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-credits-badge:hover {
  background: rgba(251, 191, 36, 0.2);
  transform: translateY(-1px);
}
.nav-credits-badge i { font-size: 0.75rem; }

/* User emblem button */
.nav-user-menu {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-user-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(124, 92, 255, 0.4);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.15), rgba(168, 85, 247, 0.15));
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.nav-user-emblem:hover {
  border-color: rgba(124, 92, 255, 0.7);
  box-shadow: 0 0 12px rgba(124, 92, 255, 0.25);
  transform: scale(1.05);
}
.nav-avatar-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #c4b5fd;
  letter-spacing: 0.5px;
  overflow: hidden;
}

/* User dropdown menu */
.nav-user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: rgba(22, 16, 40, 0.98);
  border: 1px solid rgba(124, 92, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  padding: 8px 0;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-user-dropdown.open {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.nav-user-dropdown-header {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-user-dropdown-header strong {
  color: #e2e8f0;
  font-size: 0.9rem;
}
.nav-user-dropdown-header small {
  color: #94a3b8;
  font-size: 0.75rem;
}
.nav-user-dropdown-divider {
  height: 1px;
  margin: 4px 12px;
  background: rgba(124, 92, 255, 0.12);
}
.nav-user-dropdown a,
.nav-user-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  color: #cbd5e1;
  font-size: 0.85rem;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.nav-user-dropdown a:hover,
.nav-user-dropdown button:hover {
  background: rgba(124, 92, 255, 0.1);
  color: #e2e8f0;
}
.nav-user-dropdown a i,
.nav-user-dropdown button i {
  width: 16px;
  text-align: center;
  color: #a78bfa;
  font-size: 0.8rem;
}
.nav-user-dropdown button[data-auth="logout"] {
  color: #f87171;
}
.nav-user-dropdown button[data-auth="logout"] i {
  color: #f87171;
}

/* ── Mobile Nav User Card ── */
.mobile-nav-user-section {
  list-style: none;
  padding: 0 !important;
}
.mobile-nav-user-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin: 0 8px 8px;
  background: rgba(124, 92, 255, 0.08);
  border: 1px solid rgba(124, 92, 255, 0.15);
  border-radius: 12px;
}
.mobile-nav-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.25), rgba(168, 85, 247, 0.25));
  border: 2px solid rgba(124, 92, 255, 0.3);
  color: #c4b5fd;
  font-weight: 700;
  font-size: 0.85rem;
  overflow: hidden;
}
.mobile-nav-user-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav-user-info strong {
  color: #e2e8f0;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-nav-user-info small {
  color: #94a3b8;
  font-size: 0.7rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-nav-credits-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 20px;
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Responsive: hide/show user elements ── */
@media (max-width: 768px) {
  .nav-credits-badge { display: none; }
  .nav-user-emblem { width: 32px; height: 32px; }
  .nav-avatar-circle { font-size: 0.65rem; }
}

/* ============================================
   Reveal live-site redesign: homepage header and hero
   ============================================ */
.am-site-nav {
  background: rgba(249, 247, 242, 0.94);
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  outline: 0;
}

html[data-theme="dark"] .am-site-nav {
  background: rgba(27, 28, 28, 0.92);
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.mobile-nav-active {
  overflow: hidden;
}

.am-scroll-progress {
  position: fixed;
  top: env(safe-area-inset-top, 0px);
  left: 0;
  width: 100%;
  height: 2px;
  z-index: calc(var(--z-nav) + 20);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #725B29 0%, #AF935B 48%, #E2C386 100%);
  box-shadow: none;
  transition: transform 80ms linear;
}

html[data-theme="dark"] .am-scroll-progress {
  background: linear-gradient(90deg, #8D7137 0%, #E2C386 52%, #F4DFA9 100%);
  box-shadow: none;
}

.am-site-nav .nav-inner {
  max-width: 1280px;
}

.am-reveal-brand {
  gap: 8px;
  color: #2D2D2D;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

html[data-theme="dark"] .am-reveal-brand {
  color: #F9F7F2;
}

.am-reveal-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid rgba(175, 147, 91, 0.42);
  border-radius: 999px;
  background: #AF935B;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(175, 147, 91, 0.16);
}


.am-site-nav .nav-dropdown-menu,
.am-site-nav .nav-lang-menu {
  background: #FFFCF6;
  border-color: rgba(45, 45, 45, 0.10);
  box-shadow: 0 22px 54px rgba(45, 45, 45, 0.16);
}

.am-site-nav .nav-dropdown-menu {
  min-width: 224px;
  padding: 12px 0;
  border-radius: 20px;
  z-index: 1200;
}

.am-site-nav .nav-dropdown-wide .nav-dropdown-menu {
  min-width: 286px;
}

.nav-item-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  margin-right: 10px;
  color: #AF935B;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

html[data-theme="dark"] .am-site-nav .nav-dropdown-menu,
html[data-theme="dark"] .am-site-nav .nav-lang-menu {
  background: #1B1C1C;
  border-color: rgba(249, 247, 242, 0.12);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36);
}

.am-site-nav .nav-dropdown-menu a,
.am-site-nav .nav-lang-option {
  color: #4D463A;
}

.am-site-nav .nav-dropdown-menu a {
  display: block;
  padding: 13px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  line-height: 1.25;
  opacity: 0.82;
}

.am-site-nav .nav-dropdown-menu a:hover {
  background: rgba(175, 147, 91, 0.10);
  color: #725B29;
  opacity: 1;
}

.am-site-nav .nav-dropdown-divider {
  margin: 10px 18px;
  background: rgba(45, 45, 45, 0.10);
}

html[data-theme="dark"] .am-site-nav .nav-dropdown-menu a,
html[data-theme="dark"] .am-site-nav .nav-lang-option {
  color: rgba(249, 247, 242, 0.76);
}

html[data-theme="dark"] .am-site-nav .nav-dropdown-menu a:hover {
  background: rgba(175, 147, 91, 0.14);
  color: #E2C386;
}

html[data-theme="dark"] .am-site-nav .nav-dropdown-divider {
  background: rgba(249, 247, 242, 0.12);
}

.am-theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  min-width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  border: 1px solid rgba(45, 45, 45, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: #2D2D2D;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: none;
  overflow: hidden;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.am-theme-toggle:hover {
  border-color: rgba(175, 147, 91, 0.52);
  background: rgba(175, 147, 91, 0.10);
  color: #725B29;
  transform: translateY(-1px);
}

html[data-theme="dark"] .am-theme-toggle {
  border-color: rgba(249, 247, 242, 0.18);
  background: rgba(249, 247, 242, 0.06);
  color: #F9F7F2;
}

.am-theme-toggle-label {
  display: block;
  width: 100%;
  text-align: center;
  transform: translateY(0.5px);
}

.am-mobile-theme-row .am-theme-toggle {
  flex: 0 0 40px;
}

.am-mobile-theme-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px 8px;
  color: #6B6B6B;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
}

html[data-theme="dark"] .am-mobile-theme-row {
  color: rgba(249, 247, 242, 0.68);
}

.am-site-nav .nav-links a,
.am-site-nav .nav-dropdown-toggle {
  color: #2D2D2D;
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.76;
}

html[data-theme="dark"] .am-site-nav .nav-links a,
html[data-theme="dark"] .am-site-nav .nav-dropdown-toggle {
  color: #F9F7F2;
}

.am-site-nav .nav-links a:hover,
.am-site-nav .nav-dropdown-toggle:hover {
  color: #AF935B;
  opacity: 1;
}

.am-site-nav .nav-logged-out-actions .btn-ghost,
.am-site-mobile-nav .mobile-nav-footer .btn-outline {
  min-height: 40px;
  border-radius: 999px !important;
  color: #2D2D2D !important;
  border-color: rgba(175, 147, 91, 0.34) !important;
  background: rgba(255, 255, 255, 0.52) !important;
  box-shadow: 0 10px 26px rgba(45, 45, 45, 0.07);
}

.am-site-nav .nav-logged-out-actions .btn-ghost:hover,
.am-site-mobile-nav .mobile-nav-footer .btn-outline:hover {
  color: #725B29 !important;
  border-color: rgba(175, 147, 91, 0.62) !important;
  background: rgba(175, 147, 91, 0.12) !important;
  transform: translateY(-1px);
}

html[data-theme="dark"] .am-site-nav .nav-logged-out-actions .btn-ghost,
html[data-theme="dark"] .am-site-mobile-nav .mobile-nav-footer .btn-outline {
  color: #F9F7F2 !important;
  border-color: rgba(226, 195, 134, 0.30) !important;
  background: rgba(249, 247, 242, 0.06) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.am-site-mobile-nav .mobile-nav-footer .btn-primary {
  min-height: 44px;
  border-radius: 999px !important;
  justify-content: center;
  background: #2D2D2D !important;
  border-color: #2D2D2D !important;
  color: #FFFFFF !important;
}

html[data-theme="dark"] .am-site-mobile-nav .mobile-nav-footer .btn-primary {
  background: #E2C386 !important;
  border-color: #E2C386 !important;
  color: #1B1C1C !important;
}

.am-site-nav .nav-cta-btn,
.am-home-ctas .btn-primary {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #FFFFFF;
  box-shadow: none;
}

.am-site-nav .nav-cta-btn:hover,
.am-home-ctas .btn-primary:hover {
  background: #AF935B;
  border-color: #AF935B;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.am-home-hero {
  min-height: 88vh;
  padding: calc(var(--nav-offset) + 52px) 0 68px;
  background: #F9F7F2;
  color: #2D2D2D;
}

html[data-theme="dark"] .am-home-hero {
  background: #1B1C1C;
  color: #F9F7F2;
}

.am-home-hero::after,
.am-home-visual::before {
  display: none;
}

.am-home-hero-grid {
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
}

.am-home-copy {
  max-width: 520px;
}

.am-home-kicker {
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #AF935B;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.10em;
  line-height: 1.4;
  text-transform: uppercase;
}

.am-home-copy h1 {
  max-width: 480px;
  margin-bottom: 20px;
  color: #1B1C1C;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2.05rem, 3.55vw, 3.25rem);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.am-home-copy h1 span {
  display: block;
}

html[data-theme="dark"] .am-home-copy h1 {
  color: #F9F7F2;
}

.am-home-copy > p:not(.am-home-trust) {
  max-width: 500px;
  margin-bottom: 28px;
  color: #4D463A;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.96rem, 1.05vw, 1.06rem);
  font-weight: 400;
  line-height: 1.66;
}

html[data-theme="dark"] .am-home-copy > p:not(.am-home-trust) {
  color: rgba(249, 247, 242, 0.76);
}

.am-home-ctas {
  gap: 12px;
  margin-bottom: 18px;
}

.am-home-ctas .btn {
  min-height: 46px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.am-home-ctas .btn-outline {
  border-color: rgba(175, 147, 91, 0.56);
  background: transparent;
  color: #725B29;
}

.am-home-ctas .btn-outline:hover {
  background: rgba(175, 147, 91, 0.10);
  color: #2D2D2D;
  border-color: #AF935B;
}

html[data-theme="dark"] .am-home-ctas .btn-outline {
  color: #E2C386;
}

.am-home-trust {
  max-width: 520px;
  margin: 0;
  color: #6B6B6B;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  line-height: 1.6;
}

.am-home-visual {
  display: flex;
  min-height: clamp(430px, 50vw, 700px);
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.am-home-visual img {
  display: block;
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  aspect-ratio: 1800 / 1005;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(175, 147, 91, 0.18);
  border-radius: 30px;
  box-shadow: 0 24px 64px rgba(45, 45, 45, 0.10);
}

html[data-theme="dark"] .am-home-visual img {
  border-color: rgba(175, 147, 91, 0.32);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.30);
}

.am-home-visual-mobile {
  display: none;
}

.am-method-section {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0;
  background: #FFFFFF;
  color: #2D2D2D;
  overflow: hidden;
}

.am-method-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(175, 147, 91, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(175, 147, 91, 0.04) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 76%, transparent);
  opacity: 0.38;
}

html[data-theme="dark"] .am-method-section {
  background: #141515;
  color: #F9F7F2;
}

html[data-theme="dark"] .am-method-section::before {
  opacity: 0.20;
}

.am-method-section .container {
  position: relative;
  z-index: 1;
}

.am-method-grid {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.am-section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #AF935B;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.am-method-copy h2 {
  max-width: 680px;
  margin: 0 0 18px;
  color: #1B1C1C;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(1.95rem, 3.8vw, 3.35rem);
  font-weight: 650;
  letter-spacing: -0.038em;
  line-height: 1.1;
}

html[data-theme="dark"] .am-method-copy h2 {
  color: #F9F7F2;
}

.am-method-copy p {
  max-width: 600px;
  margin: 0;
  color: #5A554D;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.68;
}

html[data-theme="dark"] .am-method-copy p {
  color: rgba(249, 247, 242, 0.74);
}

.am-method-visual {
  justify-self: stretch;
}

.am-method-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(175, 147, 91, 0.22);
  box-shadow: 0 22px 56px rgba(45, 45, 45, 0.08);
}

html[data-theme="dark"] .am-method-visual img {
  border-color: rgba(175, 147, 91, 0.30);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.am-method-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.am-method-card {
  min-height: 220px;
  padding: clamp(22px, 2.6vw, 30px);
  background: rgba(249, 247, 242, 0.76);
  border: 1px solid rgba(45, 45, 45, 0.07);
  border-radius: 24px;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.am-method-card:hover {
  border-color: rgba(175, 147, 91, 0.42);
  box-shadow: 0 18px 42px rgba(45, 45, 45, 0.08);
  transform: translateY(-3px);
}

html[data-theme="dark"] .am-method-card {
  background: rgba(249, 247, 242, 0.045);
  border-color: rgba(249, 247, 242, 0.10);
}

html[data-theme="dark"] .am-method-card:hover {
  border-color: rgba(175, 147, 91, 0.44);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.am-method-card-number {
  display: inline-block;
  margin-bottom: 24px;
  color: #AF935B;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.am-method-card h3 {
  margin: 0 0 12px;
  color: #1B1C1C;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

html[data-theme="dark"] .am-method-card h3 {
  color: #F9F7F2;
}

.am-method-card p {
  margin: 0;
  color: #6B6B6B;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  line-height: 1.62;
}

html[data-theme="dark"] .am-method-card p {
  color: rgba(249, 247, 242, 0.68);
}

.am-method-note {
  max-width: 760px;
  margin: clamp(24px, 3.5vw, 40px) auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(175, 147, 91, 0.22);
  color: #4D463A;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.66;
  text-align: center;
}

html[data-theme="dark"] .am-method-note {
  color: rgba(249, 247, 242, 0.76);
  border-top-color: rgba(175, 147, 91, 0.34);
}

.am-kybele-section {
  padding: clamp(76px, 10vw, 140px) 0;
  background: #F9F7F2;
  color: #2D2D2D;
}

html[data-theme="dark"] .am-kybele-section {
  background: #1B1C1C;
  color: #F9F7F2;
}

.am-kybele-panel {
  display: grid;
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: clamp(24px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(175, 147, 91, 0.18);
  box-shadow: 0 28px 80px rgba(45, 45, 45, 0.08);
}

html[data-theme="dark"] .am-kybele-panel {
  background: rgba(249, 247, 242, 0.045);
  border-color: rgba(175, 147, 91, 0.24);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26);
}

.am-kybele-visual {
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  overflow: visible;
}

.am-kybele-visual img {
  display: block;
  width: min(112%, 760px);
  max-width: none;
  min-height: clamp(420px, 44vw, 640px);
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(175, 147, 91, 0.24);
  box-shadow: 0 26px 70px rgba(45, 45, 45, 0.10);
}

html[data-theme="dark"] .am-kybele-visual img {
  border-color: rgba(175, 147, 91, 0.32);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.30);
}

.am-kybele-copy h2 {
  max-width: 700px;
  margin: 0 0 22px;
  color: #1B1C1C;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.85rem);
  font-weight: 700;
  letter-spacing: -0.042em;
  line-height: 1.08;
}

html[data-theme="dark"] .am-kybele-copy h2 {
  color: #F9F7F2;
}

.am-kybele-copy > p:not(.am-kybele-note) {
  max-width: 660px;
  margin: 0 0 26px;
  color: #5A554D;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

html[data-theme="dark"] .am-kybele-copy > p:not(.am-kybele-note) {
  color: rgba(249, 247, 242, 0.74);
}

.am-kybele-list {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.am-kybele-list li {
  display: block;
  color: #4D463A;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.62;
  max-width: 560px;
}

html[data-theme="dark"] .am-kybele-list li {
  color: rgba(249, 247, 242, 0.72);
}


.am-kybele-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.am-kybele-actions .btn {
  min-height: 48px;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.am-kybele-actions .btn-primary {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #FFFFFF;
  box-shadow: none;
}

.am-kybele-actions .btn-primary:hover {
  background: #AF935B;
  border-color: #AF935B;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.am-kybele-actions .btn-outline {
  border-color: rgba(175, 147, 91, 0.56);
  background: transparent;
  color: #725B29;
}

html[data-theme="dark"] .am-kybele-actions .btn-outline {
  color: #E2C386;
}

.am-kybele-actions .btn-outline:hover {
  background: rgba(175, 147, 91, 0.10);
  border-color: #AF935B;
  color: #2D2D2D;
}

html[data-theme="dark"] .am-kybele-actions .btn-outline:hover {
  color: #F9F7F2;
}

.am-kybele-note {
  max-width: 620px;
  margin: 0;
  color: #6B6B6B;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  line-height: 1.62;
}

html[data-theme="dark"] .am-kybele-note {
  color: rgba(249, 247, 242, 0.62);
}

.am-kybele-copy,
.am-analysis-card,
.am-process-step-content,
.am-copilot-copy,
.am-copilot-card,
.am-copilot-window,
.am-trust-card,
.am-location-copy,
.am-location-panel,
.am-location-card,
.am-location-stat {
  min-width: 0;
}

.am-kybele-copy h2,
.am-analysis-header h2,
.am-analysis-card h3,
.am-process-header h2,
.am-process-step h3,
.am-copilot-copy h2,
.am-copilot-card h3,
.am-copilot-message p,
.am-trust-header h2,
.am-trust-card blockquote,
.am-location-copy h2,
.am-location-card h3,
.am-location-stat span,
.am-footer-col a {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.am-analysis-section {
  position: relative;
  padding: clamp(76px, 10vw, 136px) 0;
  background: #FFFFFF;
  color: #2D2D2D;
  overflow: hidden;
}

html[data-theme="dark"] .am-analysis-section {
  background: #141515;
  color: #F9F7F2;
}

.am-analysis-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 52vw);
  height: min(520px, 52vw);
  pointer-events: none;
  background: radial-gradient(circle, rgba(175, 147, 91, 0.14), transparent 66%);
  transform: translate(20%, -28%);
}

html[data-theme="dark"] .am-analysis-section::before {
  opacity: 0.55;
}

.am-analysis-section .container {
  position: relative;
  z-index: 1;
}

.am-analysis-header {
  max-width: 800px;
  margin-bottom: clamp(34px, 5vw, 60px);
}

.am-analysis-header h2 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #1B1C1C;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2.05rem, 4.4vw, 3.9rem);
  font-weight: 700;
  letter-spacing: -0.042em;
  line-height: 1.08;
}

html[data-theme="dark"] .am-analysis-header h2 {
  color: #F9F7F2;
}

.am-analysis-header p {
  max-width: 700px;
  margin: 0;
  color: #5A554D;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

html[data-theme="dark"] .am-analysis-header p {
  color: rgba(249, 247, 242, 0.74);
}

.am-analysis-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(45, 45, 45, 0.10);
  border-left: 1px solid rgba(45, 45, 45, 0.10);
}

html[data-theme="dark"] .am-analysis-grid {
  border-color: rgba(249, 247, 242, 0.10);
}

.am-analysis-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(249, 247, 242, 0.42);
  border-right: 1px solid rgba(45, 45, 45, 0.10);
  border-bottom: 1px solid rgba(45, 45, 45, 0.10);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.am-analysis-card:hover {
  background: #F9F7F2;
  box-shadow: 0 18px 44px rgba(45, 45, 45, 0.08);
  transform: translateY(-3px);
}

html[data-theme="dark"] .am-analysis-card {
  background: rgba(249, 247, 242, 0.035);
  border-color: rgba(249, 247, 242, 0.10);
}

html[data-theme="dark"] .am-analysis-card:hover {
  background: rgba(249, 247, 242, 0.065);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.am-analysis-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 42px;
}

.am-analysis-number,
.am-analysis-eyebrow {
  color: #AF935B;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.am-analysis-eyebrow {
  max-width: 100%;
  color: #6B6B6B;
  text-align: right;
  overflow-wrap: anywhere;
}

html[data-theme="dark"] .am-analysis-eyebrow {
  color: rgba(249, 247, 242, 0.52);
}

.am-analysis-card h3 {
  margin: 0 0 16px;
  color: #1B1C1C;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(1.45rem, 2.25vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.034em;
  line-height: 1.12;
}

html[data-theme="dark"] .am-analysis-card h3 {
  color: #F9F7F2;
}

.am-analysis-card p {
  margin: 0 0 28px;
  color: #6B6B6B;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.72;
}

html[data-theme="dark"] .am-analysis-card p {
  color: rgba(249, 247, 242, 0.68);
}

.am-analysis-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  color: #725B29;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.am-analysis-link:hover {
  color: #AF935B;
}


html[data-theme="dark"] .am-analysis-link {
  color: #E2C386;
}

.am-process-section {
  padding: clamp(76px, 10vw, 132px) 0;
  background: #F9F7F2;
  color: #2D2D2D;
}

html[data-theme="dark"] .am-process-section {
  background: #1B1C1C;
  color: #F9F7F2;
}

.am-process-header {
  max-width: 820px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.am-process-header h2 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #1B1C1C;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2.05rem, 4.4vw, 3.9rem);
  font-weight: 700;
  letter-spacing: -0.042em;
  line-height: 1.08;
}

html[data-theme="dark"] .am-process-header h2 {
  color: #F9F7F2;
}

.am-process-header p {
  max-width: 700px;
  margin: 0;
  color: #5A554D;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

html[data-theme="dark"] .am-process-header p {
  color: rgba(249, 247, 242, 0.74);
}

.am-process-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(175, 147, 91, 0.26);
}

.am-process-step {
  display: grid;
  grid-template-columns: minmax(88px, 0.18fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  padding: clamp(28px, 4.6vw, 56px) 0;
  border-bottom: 1px solid rgba(45, 45, 45, 0.10);
}

html[data-theme="dark"] .am-process-step {
  border-bottom-color: rgba(249, 247, 242, 0.10);
}

.am-process-number {
  color: #AF935B;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.am-process-step-content {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
}

.am-process-step h3 {
  margin: 0;
  color: #1B1C1C;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

html[data-theme="dark"] .am-process-step h3 {
  color: #F9F7F2;
}

.am-process-step p {
  max-width: 640px;
  margin: 0;
  color: #6B6B6B;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.74;
}

html[data-theme="dark"] .am-process-step p {
  color: rgba(249, 247, 242, 0.68);
}

.am-copilot-section {
  padding: clamp(76px, 10vw, 136px) 0;
  background: #FFFFFF;
  color: #2D2D2D;
}

html[data-theme="dark"] .am-copilot-section {
  background: #141515;
  color: #F9F7F2;
}

.am-copilot-grid {
  display: grid;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.am-copilot-copy h2 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #1B1C1C;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2.05rem, 4.4vw, 3.9rem);
  font-weight: 700;
  letter-spacing: -0.042em;
  line-height: 1.08;
}

html[data-theme="dark"] .am-copilot-copy h2 {
  color: #F9F7F2;
}

.am-copilot-copy > p {
  max-width: 690px;
  margin: 0 0 34px;
  color: #5A554D;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

html[data-theme="dark"] .am-copilot-copy > p {
  color: rgba(249, 247, 242, 0.74);
}

.am-copilot-cards {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.am-copilot-card {
  display: grid;
  grid-template-columns: 42px minmax(140px, 0.44fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid rgba(45, 45, 45, 0.10);
}

.am-copilot-card:last-child {
  border-bottom: 1px solid rgba(45, 45, 45, 0.10);
}

html[data-theme="dark"] .am-copilot-card,
html[data-theme="dark"] .am-copilot-card:last-child {
  border-color: rgba(249, 247, 242, 0.10);
}

.am-copilot-card span {
  color: #AF935B;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
}

.am-copilot-card h3 {
  margin: 0;
  color: #1B1C1C;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(1.15rem, 1.7vw, 1.48rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

html[data-theme="dark"] .am-copilot-card h3 {
  color: #F9F7F2;
}

.am-copilot-card p {
  margin: 0;
  color: #6B6B6B;
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  line-height: 1.7;
}

html[data-theme="dark"] .am-copilot-card p {
  color: rgba(249, 247, 242, 0.68);
}

.am-copilot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.am-copilot-actions .btn {
  min-height: 48px;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.am-copilot-actions .btn-primary {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #FFFFFF;
  box-shadow: none;
}

.am-copilot-actions .btn-primary:hover {
  background: #AF935B;
  border-color: #AF935B;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.am-copilot-actions .btn-outline {
  border-color: rgba(175, 147, 91, 0.56);
  background: transparent;
  color: #725B29;
}

.am-copilot-actions .btn-outline:hover {
  background: rgba(175, 147, 91, 0.10);
  color: #2D2D2D;
  border-color: #AF935B;
}

html[data-theme="dark"] .am-copilot-actions .btn-outline {
  color: #E2C386;
}

.am-copilot-dialogue {
  justify-self: stretch;
}

.am-copilot-window {
  position: relative;
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(249, 247, 242, 0.96), rgba(255, 255, 255, 0.86)),
    linear-gradient(135deg, rgba(175, 147, 91, 0.12), transparent 56%);
  border: 1px solid rgba(175, 147, 91, 0.28);
  box-shadow: 0 26px 70px rgba(45, 45, 45, 0.10);
}

html[data-theme="dark"] .am-copilot-window {
  background:
    linear-gradient(135deg, rgba(249, 247, 242, 0.07), rgba(249, 247, 242, 0.035)),
    linear-gradient(135deg, rgba(175, 147, 91, 0.14), transparent 56%);
  border-color: rgba(175, 147, 91, 0.32);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
}

.am-copilot-window-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.10);
}

html[data-theme="dark"] .am-copilot-window-header {
  border-bottom-color: rgba(249, 247, 242, 0.10);
}

.am-copilot-orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #AF935B;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.am-copilot-window-header strong {
  display: block;
  color: #1B1C1C;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

html[data-theme="dark"] .am-copilot-window-header strong {
  color: #F9F7F2;
}

.am-copilot-window-header small {
  display: block;
  margin-top: 2px;
  color: #6B6B6B;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

html[data-theme="dark"] .am-copilot-window-header small {
  color: rgba(249, 247, 242, 0.58);
}

.am-copilot-message {
  max-width: 92%;
  padding: 20px;
  border: 1px solid rgba(45, 45, 45, 0.10);
  background: rgba(255, 255, 255, 0.66);
}

html[data-theme="dark"] .am-copilot-message {
  border-color: rgba(249, 247, 242, 0.10);
  background: rgba(249, 247, 242, 0.055);
}

.am-copilot-message-user {
  justify-self: end;
  background: rgba(175, 147, 91, 0.12);
  border-color: rgba(175, 147, 91, 0.24);
}

.am-copilot-message-ai {
  justify-self: start;
}

.am-copilot-message span {
  display: inline-block;
  margin-bottom: 10px;
  color: #AF935B;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.am-copilot-message p {
  margin: 0;
  color: #3F3B34;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.7;
}

html[data-theme="dark"] .am-copilot-message p {
  color: rgba(249, 247, 242, 0.78);
}

.am-trust-section {
  padding: clamp(76px, 10vw, 132px) 0;
  background: #F9F7F2;
  color: #2D2D2D;
}

html[data-theme="dark"] .am-trust-section {
  background: #1B1C1C;
  color: #F9F7F2;
}

.am-trust-header {
  max-width: 840px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.am-trust-header h2 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #1B1C1C;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2.05rem, 4.4vw, 3.9rem);
  font-weight: 700;
  letter-spacing: -0.042em;
  line-height: 1.08;
}

html[data-theme="dark"] .am-trust-header h2 {
  color: #F9F7F2;
}

.am-trust-header p {
  max-width: 700px;
  margin: 0;
  color: #5A554D;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

html[data-theme="dark"] .am-trust-header p {
  color: rgba(249, 247, 242, 0.74);
}

.am-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.am-trust-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 34px);
  background: #FFFFFF;
  border: 1px solid rgba(45, 45, 45, 0.08);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.am-trust-card:hover {
  border-color: rgba(175, 147, 91, 0.42);
  box-shadow: 0 18px 44px rgba(45, 45, 45, 0.08);
  transform: translateY(-3px);
}

html[data-theme="dark"] .am-trust-card {
  background: rgba(249, 247, 242, 0.045);
  border-color: rgba(249, 247, 242, 0.10);
}

html[data-theme="dark"] .am-trust-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.am-trust-number {
  display: inline-block;
  margin-bottom: 34px;
  color: #AF935B;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.am-trust-card blockquote {
  margin: 0 0 32px;
  color: #2D2D2D;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(1.1rem, 1.55vw, 1.32rem);
  line-height: 1.55;
}

html[data-theme="dark"] .am-trust-card blockquote {
  color: rgba(249, 247, 242, 0.84);
}

.am-trust-card footer {
  display: grid;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(45, 45, 45, 0.10);
}

html[data-theme="dark"] .am-trust-card footer {
  border-top-color: rgba(249, 247, 242, 0.10);
}

.am-trust-card strong {
  color: #1B1C1C;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

html[data-theme="dark"] .am-trust-card strong {
  color: #F9F7F2;
}

.am-trust-card small {
  color: #6B6B6B;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
}

html[data-theme="dark"] .am-trust-card small {
  color: rgba(249, 247, 242, 0.56);
}

.am-final-cta-section {
  padding: clamp(76px, 10vw, 136px) 0;
  background: #FFFFFF;
  color: #2D2D2D;
}

html[data-theme="dark"] .am-final-cta-section {
  background: #141515;
  color: #F9F7F2;
}

.am-final-cta-box {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(249, 247, 242, 0.96), rgba(255, 255, 255, 0.86)),
    linear-gradient(135deg, rgba(175, 147, 91, 0.14), transparent 58%);
  border: 1px solid rgba(175, 147, 91, 0.28);
  box-shadow: 0 26px 70px rgba(45, 45, 45, 0.10);
}

html[data-theme="dark"] .am-final-cta-box {
  background:
    linear-gradient(135deg, rgba(249, 247, 242, 0.07), rgba(249, 247, 242, 0.035)),
    linear-gradient(135deg, rgba(175, 147, 91, 0.14), transparent 58%);
  border-color: rgba(175, 147, 91, 0.32);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
}

.am-final-cta-box h2 {
  max-width: 760px;
  margin: 0 auto 22px;
  color: #1B1C1C;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 4.35rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

html[data-theme="dark"] .am-final-cta-box h2 {
  color: #F9F7F2;
}

.am-final-cta-box p {
  max-width: 660px;
  margin: 0 auto 32px;
  color: #5A554D;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

html[data-theme="dark"] .am-final-cta-box p {
  color: rgba(249, 247, 242, 0.74);
}

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

.am-final-cta-actions .btn {
  min-height: 50px;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.am-final-cta-actions .btn-primary {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #FFFFFF;
  box-shadow: none;
}

.am-final-cta-actions .btn-primary:hover {
  background: #AF935B;
  border-color: #AF935B;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.am-final-cta-actions .btn-outline {
  border-color: rgba(175, 147, 91, 0.56);
  background: transparent;
  color: #725B29;
}

html[data-theme="dark"] .am-final-cta-actions .btn-outline {
  color: #E2C386;
}

.am-reveal-footer {
  padding: clamp(54px, 7vw, 84px) 0 28px;
  background: #F9F7F2;
  color: #2D2D2D;
  border-top: 1px solid rgba(45, 45, 45, 0.08);
}

html[data-theme="dark"] .am-reveal-footer {
  background: #1B1C1C;
  color: #F9F7F2;
  border-top-color: rgba(249, 247, 242, 0.10);
}

.am-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(4, minmax(120px, 0.7fr));
  gap: clamp(28px, 5vw, 56px);
  padding-bottom: 42px;
}

.am-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #1B1C1C;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

html[data-theme="dark"] .am-footer-brand {
  color: #F9F7F2;
}

.am-footer-brand-block p {
  max-width: 360px;
  margin: 0;
  color: #6B6B6B;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.72;
}

html[data-theme="dark"] .am-footer-brand-block p {
  color: rgba(249, 247, 242, 0.64);
}

.am-footer-col h4 {
  margin: 0 0 18px;
  color: #AF935B;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.am-footer-col ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.am-footer-col a {
  color: #4D463A;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  text-decoration: none;
}

.am-footer-col a:hover {
  color: #AF935B;
}

html[data-theme="dark"] .am-footer-col a {
  color: rgba(249, 247, 242, 0.68);
}

html[data-theme="dark"] .am-footer-col a:hover {
  color: #E2C386;
}

.am-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(45, 45, 45, 0.10);
}

html[data-theme="dark"] .am-footer-bottom {
  border-top-color: rgba(249, 247, 242, 0.10);
}

.am-footer-bottom p {
  max-width: 720px;
  margin: 0;
  color: #6B6B6B;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  line-height: 1.6;
}

html[data-theme="dark"] .am-footer-bottom p {
  color: rgba(249, 247, 242, 0.54);
}

.am-location-section {
  padding: clamp(76px, 10vw, 136px) 0;
  background: #F9F7F2;
  color: #2D2D2D;
}

html[data-theme="dark"] .am-location-section {
  background: #1B1C1C;
  color: #F9F7F2;
}

.am-location-grid {
  display: grid;
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}

.am-location-copy h2 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #1B1C1C;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2.05rem, 4.4vw, 3.9rem);
  font-weight: 700;
  letter-spacing: -0.042em;
  line-height: 1.08;
}

html[data-theme="dark"] .am-location-copy h2 {
  color: #F9F7F2;
}

.am-location-copy > p {
  max-width: 690px;
  margin: 0 0 30px;
  color: #5A554D;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

html[data-theme="dark"] .am-location-copy > p {
  color: rgba(249, 247, 242, 0.74);
}

.am-location-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.am-location-stat {
  padding: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(175, 147, 91, 0.20);
}

html[data-theme="dark"] .am-location-stat {
  background: rgba(249, 247, 242, 0.045);
  border-color: rgba(175, 147, 91, 0.24);
}

.am-location-stat strong {
  display: block;
  margin-bottom: 6px;
  color: #AF935B;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.am-location-stat span {
  display: block;
  color: #6B6B6B;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  line-height: 1.35;
  text-transform: uppercase;
}

html[data-theme="dark"] .am-location-stat span {
  color: rgba(249, 247, 242, 0.62);
}

.am-location-cta {
  min-height: 48px;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.am-location-panel {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(249, 247, 242, 0.94), rgba(255, 255, 255, 0.84)),
    radial-gradient(circle at top right, rgba(175, 147, 91, 0.16), transparent 56%);
  border: 1px solid rgba(175, 147, 91, 0.26);
  box-shadow: 0 26px 70px rgba(45, 45, 45, 0.08);
}

html[data-theme="dark"] .am-location-panel {
  background:
    linear-gradient(135deg, rgba(249, 247, 242, 0.07), rgba(249, 247, 242, 0.035)),
    radial-gradient(circle at top right, rgba(175, 147, 91, 0.16), transparent 58%);
  border-color: rgba(175, 147, 91, 0.30);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.24);
}

.am-location-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(45, 45, 45, 0.10);
}

.am-location-card:last-child {
  border-bottom: 0;
}

html[data-theme="dark"] .am-location-card {
  border-bottom-color: rgba(249, 247, 242, 0.10);
}

.am-location-card > span {
  color: #AF935B;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
}

.am-location-card h3 {
  margin: 0 0 8px;
  color: #1B1C1C;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(1.18rem, 1.8vw, 1.58rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

html[data-theme="dark"] .am-location-card h3 {
  color: #F9F7F2;
}

.am-location-card p {
  margin: 0;
  color: #6B6B6B;
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

html[data-theme="dark"] .am-location-card p {
  color: rgba(249, 247, 242, 0.68);
}

/* Reveal homepage calm visual system
   Keeps the rounded hero-image language consistent across all public homepage sections. */
.am-method-section,
.am-kybele-section,
.am-analysis-section,
.am-process-section,
.am-copilot-section,
.am-trust-section,
.am-location-section,
.am-final-cta-section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.am-method-copy h2,
.am-kybele-copy h2,
.am-analysis-header h2,
.am-process-header h2,
.am-copilot-copy h2,
.am-trust-header h2,
.am-location-copy h2,
.am-final-cta-box h2 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.45vw, 3.18rem);
  font-weight: 600;
  letter-spacing: -0.034em;
  line-height: 1.13;
}

.am-method-copy p,
.am-kybele-copy > p:not(.am-kybele-note),
.am-analysis-header p,
.am-process-header p,
.am-copilot-copy > p,
.am-trust-header p,
.am-location-copy > p,
.am-final-cta-box p {
  max-width: 620px;
  color: #5A554D;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.96rem, 1.08vw, 1.06rem);
  font-weight: 400;
  line-height: 1.68;
}

.am-method-visual img,
.am-kybele-panel,
.am-kybele-visual img,
.am-analysis-card,
.am-copilot-window,
.am-copilot-message,
.am-trust-card,
.am-final-cta-box,
.am-location-stat,
.am-location-panel,
.am-location-card {
  border-radius: 28px;
}

.am-method-visual img,
.am-kybele-visual img {
  overflow: hidden;
}

.am-method-card,
.am-analysis-card,
.am-copilot-card,
.am-trust-card,
.am-location-card {
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(45, 45, 45, 0.08);
  box-shadow: none;
}

html[data-theme="dark"] .am-method-card,
html[data-theme="dark"] .am-analysis-card,
html[data-theme="dark"] .am-copilot-card,
html[data-theme="dark"] .am-trust-card,
html[data-theme="dark"] .am-location-card {
  background: rgba(249, 247, 242, 0.045);
  border-color: rgba(249, 247, 242, 0.10);
}

.am-method-card:hover,
.am-analysis-card:hover,
.am-copilot-card:hover,
.am-trust-card:hover,
.am-location-card:hover {
  box-shadow: 0 18px 44px rgba(45, 45, 45, 0.07);
  transform: translateY(-2px);
}

.am-analysis-grid {
  gap: 16px;
  border: 0;
}

.am-analysis-card {
  min-height: 300px;
  border-right: 1px solid rgba(45, 45, 45, 0.08);
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

.am-analysis-card h3,
.am-process-step h3,
.am-copilot-card h3,
.am-location-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.am-trust-card blockquote,
.am-copilot-message p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
  line-height: 1.68;
}

.am-process-step {
  padding: clamp(24px, 3.8vw, 46px) 0;
}

.am-copilot-cards {
  gap: 14px;
}

.am-copilot-card,
.am-location-card {
  padding: 18px;
}

.am-copilot-card:last-child,
.am-location-card,
.am-location-card:last-child {
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

html[data-theme="dark"] .am-copilot-card:last-child,
html[data-theme="dark"] .am-location-card,
html[data-theme="dark"] .am-location-card:last-child {
  border-bottom-color: rgba(249, 247, 242, 0.10);
}

.am-kybele-actions .btn,
.am-copilot-actions .btn,
.am-final-cta-actions .btn,
.am-location-cta {
  min-height: 46px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .am-method-grid,
  .am-kybele-panel,
  .am-copilot-grid,
  .am-location-grid {
    gap: clamp(30px, 5vw, 72px);
  }

  .am-kybele-panel {
    grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
  }

  .am-kybele-visual img {
    width: 100%;
    max-width: 820px;
    min-height: clamp(420px, 42vw, 620px);
  }
}

.am-site-mobile-nav .mobile-nav-section,
.am-site-mobile-nav .mobile-nav-links a {
  font-family: 'Inter', sans-serif;
}

.am-site-mobile-nav .mobile-nav-links a {
  gap: 10px;
}

.am-site-mobile-nav .nav-item-kicker {
  min-width: 26px;
  margin-right: 2px;
}

@media (min-width: 768px) {
  .am-home-hero-grid {
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  }

  .am-method-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  }

  .am-kybele-panel {
    grid-template-columns: minmax(320px, 1.12fr) minmax(0, 0.88fr);
  }

  .am-copilot-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  }

  .am-location-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.86fr);
  }
}

@media (min-width: 1180px) {
  .am-home-copy h1 {
    font-size: clamp(2.85rem, 3.1vw, 3.35rem);
  }

  .am-home-visual {
    transform: translateY(-8px);
  }

  .am-home-visual img {
    width: 100%;
    max-width: 1120px;
  }
}

@media (max-width: 1100px) {
  .am-analysis-grid,
  .am-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .am-process-step-content {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .am-copilot-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .am-copilot-card p {
    grid-column: 2;
  }
}

@media (max-width: 767px) {
  .am-site-nav .nav-brand {
    font-size: 1.12rem;
  }

  .am-site-nav .nav-inner {
    padding: 0 16px;
  }

  .am-site-nav .nav-hamburger {
    min-width: 54px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(175, 147, 91, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.50);
    color: #2D2D2D;
    font-family: 'Inter', sans-serif;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
  }

  html[data-theme="dark"] .am-site-nav .nav-hamburger {
    background: rgba(249, 247, 242, 0.06);
    border-color: rgba(226, 195, 134, 0.28);
    color: #F9F7F2;
  }

  .am-site-mobile-nav .mobile-nav-footer {
    padding: 16px 0 calc(18px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(175, 147, 91, 0.14);
  }

  .am-home-hero {
    min-height: auto;
    padding: calc(var(--nav-offset) + 48px) 0 56px;
  }

  .am-home-ctas {
    flex-direction: column;
  }

  .am-home-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .am-home-copy h1 {
    max-width: 520px;
    font-size: clamp(2.18rem, 12vw, 3.35rem);
  }

  .am-home-visual {
    min-height: 280px;
    justify-content: center;
  }

  .am-home-visual img {
    width: 100%;
  }

  .am-home-visual-desktop {
    display: none;
  }

  .am-home-visual-mobile {
    display: flex;
    min-height: auto;
    margin: 0 0 28px;
    justify-content: center;
  }

  .am-home-visual-mobile img {
    max-width: 100%;
    width: 100%;
  }

  .am-method-section {
    padding: 64px 0;
  }

  .am-method-grid {
    margin-bottom: 30px;
  }

  .am-method-cards {
    grid-template-columns: 1fr;
  }

  .am-method-card {
    min-height: auto;
  }

  .am-method-card-number {
    margin-bottom: 20px;
  }

  .am-method-note {
    text-align: left;
  }

  .am-kybele-section {
    padding: 64px 0;
  }

  .am-kybele-panel {
    padding: 22px;
  }

  .am-kybele-visual img {
    width: 100%;
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }

  .am-kybele-actions {
    flex-direction: column;
  }

  .am-kybele-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .am-analysis-section {
    padding: 64px 0;
  }

  .am-analysis-grid {
    grid-template-columns: 1fr;
  }

  .am-analysis-card {
    min-height: auto;
  }

  .am-analysis-card-top {
    margin-bottom: 28px;
  }

  .am-process-section {
    padding: 64px 0;
  }

  .am-process-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .am-process-number {
    font-size: 1.1rem;
  }

  .am-copilot-section {
    padding: 64px 0;
  }

  .am-copilot-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .am-copilot-actions {
    flex-direction: column;
  }

  .am-copilot-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .am-copilot-window {
    padding: 22px;
  }

  .am-copilot-message {
    max-width: 100%;
  }

  .am-trust-section,
  .am-location-section,
  .am-final-cta-section {
    padding: 64px 0;
  }

  .am-trust-grid {
    grid-template-columns: 1fr;
  }

  .am-trust-card {
    min-height: auto;
  }

  .am-trust-number {
    margin-bottom: 20px;
  }

  .am-location-stats {
    grid-template-columns: 1fr;
  }

  .am-location-panel {
    padding: 22px;
  }

  .am-location-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  .am-copilot-card p {
    grid-column: auto;
  }

  .am-final-cta-actions {
    flex-direction: column;
  }

  .am-final-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .am-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .am-footer-bottom {
    flex-direction: column;
  }
}
