/* ================================================================
   ALGOMART PREMIUM DARK THEME
   Inspired by: ailex-wbs, landerx, landeros framer templates
   Design: Ultra-dark with electric blue accents, atmospheric glows
   ================================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  /* Backgrounds - ultra dark like reference sites */
  --bg-void:       #000000;
  --bg-primary:    #04060e;
  --bg-secondary:  #080c18;
  --bg-card:       #0c1020;
  --bg-elevated:   #111628;
  --bg-surface:    #161b30;
  --bg-overlay:    rgba(4, 6, 14, 0.92);

  /* Accent palette */
  --accent:             #00D4FF;
  --accent-rgb:         0, 212, 255;
  --accent-hover:       #33DDFF;
  --accent-dim:         rgba(0, 212, 255, 0.08);
  --accent-glow:        rgba(0, 212, 255, 0.25);
  --accent-glow-strong: rgba(0, 212, 255, 0.45);
  --accent-cyan:        #00FFE5;
  --accent-purple:      #8B5CF6;
  --accent-purple-rgb:  139, 92, 246;

  /* Status */
  --color-success: #00FF88;
  --color-warning: #FFAA00;
  --color-error:   #FF4455;

  /* Text */
  --text-primary:   #FFFFFF;
  --text-secondary: #94a3b8;
  --text-muted:     #475569;
  --text-link:      var(--accent);

  /* Borders */
  --border-subtle:  rgba(255, 255, 255, 0.04);
  --border-default: rgba(255, 255, 255, 0.06);
  --border-accent:  rgba(0, 212, 255, 0.2);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  /* Sizing */
  --container-max: 1200px;
  --section-pad: clamp(60px, 8vw, 100px);
  --section-pad-sm: clamp(40px, 6vw, 72px);

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md:   0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg:   0 16px 48px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 30px rgba(var(--accent-rgb), 0.2);
  --shadow-glow-strong: 0 0 60px rgba(var(--accent-rgb), 0.35);

  /* Transitions */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition:      0.3s var(--ease-smooth);
  --transition-fast: 0.15s ease;
  --transition-slow: 0.6s var(--ease-out);

  /* Z-index */
  --z-base:    1;
  --z-dropdown: 100;
  --z-overlay: 200;
  --z-modal:   300;
  --z-toast:   400;
}


/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p { color: var(--text-secondary); line-height: 1.7; }
a { color: var(--text-link); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }

::selection { background: rgba(var(--accent-rgb), 0.3); color: #fff; }


/* ---- LAYOUT ---- */
.am-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}


/* ---- BUTTONS ---- */
.am-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.am-btn svg { flex-shrink: 0; }

.am-btn--primary {
  background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
  color: #fff;
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.3), 0 4px 16px rgba(0,0,0,0.3);
}
.am-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.45), 0 8px 24px rgba(0,0,0,0.4);
  color: #fff;
}
.am-btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.am-btn--primary:hover::after { opacity: 1; }

.am-btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
}
.am-btn--outline:hover {
  background: rgba(var(--accent-rgb), 0.08);
  border-color: rgba(var(--accent-rgb), 0.5);
  color: var(--accent-hover);
  transform: translateY(-2px);
}

.am-btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.08);
}
.am-btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.15);
}

.am-btn--secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
}
.am-btn--secondary:hover {
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent-hover);
}

.am-btn--success { background: linear-gradient(135deg, #00FF88, #00CC66); color: #04060e; }
.am-btn--danger  { background: linear-gradient(135deg, #FF4455, #CC0011); color: #fff; }
.am-btn--lg { padding: 18px 40px; font-size: 16px; }
.am-btn--sm { padding: 10px 20px; font-size: 13px; }
.am-btn--full { width: 100%; }
.am-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }


/* ---- BADGES ---- */
.am-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.am-badge--free      { background: rgba(0,255,136,0.08); color: var(--color-success); border: 1px solid rgba(0,255,136,0.15); }
.am-badge--essential { background: rgba(var(--accent-rgb),0.08); color: var(--accent); border: 1px solid rgba(var(--accent-rgb),0.15); }
.am-badge--pro       { background: rgba(255,170,0,0.08); color: var(--color-warning); border: 1px solid rgba(255,170,0,0.15); }
.am-badge--crypto    { background: rgba(var(--accent-purple-rgb),0.08); color: var(--accent-purple); border: 1px solid rgba(var(--accent-purple-rgb),0.15); }
.am-badge--indian    { background: rgba(255,140,0,0.08); color: #FF8C00; border: 1px solid rgba(255,140,0,0.15); }
.am-badge--beta      { background: rgba(255,105,180,0.08); color: #FF69B4; border: 1px solid rgba(255,105,180,0.15); }
.am-badge--active    { background: rgba(0,255,136,0.08); color: var(--color-success); }
.am-badge--expired   { background: rgba(255,68,85,0.08); color: var(--color-error); }
.am-badge--pending   { background: rgba(255,170,0,0.08); color: var(--color-warning); }


/* ---- SECTION SYSTEM ---- */
.am-section {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.am-section--dark {
  background: var(--bg-secondary);
}
.am-section__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.07;
  pointer-events: none;
}
.am-section__glow--left  { background: var(--accent); top: -200px; left: -200px; }
.am-section__glow--right { background: var(--accent-purple); bottom: -200px; right: -200px; }

.am-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.am-section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(var(--accent-rgb), 0.06);
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  border-radius: var(--radius-full);
}
.am-section__title {
  margin-bottom: 20px;
}
.am-section__desc {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-secondary);
  line-height: 1.7;
}
.am-section__action {
  text-align: center;
  margin-top: clamp(40px, 5vw, 64px);
}


/* ---- HERO ---- */
.am-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-void);
  padding: 120px 0 80px;
}

.am-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.am-hero__mesh {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(var(--accent-rgb), 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 30% 60%, rgba(var(--accent-purple-rgb), 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(var(--accent-rgb), 0.06) 0%, transparent 50%);
  animation: meshFloat 20s ease-in-out infinite;
}
@keyframes meshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(2%, -3%) scale(1.02); }
  66%      { transform: translate(-2%, 2%) scale(0.98); }
}

.am-hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--accent-rgb), 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.am-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.am-hero__orb--1 {
  width: 500px; height: 500px;
  background: rgba(var(--accent-rgb), 0.15);
  top: -15%; right: -5%;
  animation: orbFloat1 15s ease-in-out infinite;
}
.am-hero__orb--2 {
  width: 350px; height: 350px;
  background: rgba(var(--accent-purple-rgb), 0.12);
  bottom: -10%; left: -5%;
  animation: orbFloat2 18s ease-in-out infinite;
}
.am-hero__orb--3 {
  width: 250px; height: 250px;
  background: rgba(var(--accent-rgb), 0.08);
  top: 40%; left: 50%;
  animation: orbFloat3 12s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 40px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -40px); }
}

.am-hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.am-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.am-hero__content {
  text-align: center;
  max-width: 800px;
}

.am-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(var(--accent-rgb), 0.06);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.am-hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.6);
}

.am-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.04em;
}
.am-hero__title-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-cyan) 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.am-hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.am-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(56px, 8vw, 80px);
}

.am-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.am-hero__stat {
  text-align: center;
  padding: 0 clamp(20px, 3vw, 48px);
}
.am-hero__stat-value {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.am-hero__stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.am-hero__stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(var(--accent-rgb), 0.3), transparent);
  flex-shrink: 0;
}

/* Scroll indicator */
.am-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}
.am-hero__scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.am-hero__scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
.am-hero__scroll-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 500;
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(12px); }
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* Particle system */
.am-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleDrift linear infinite;
}
@keyframes particleDrift {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}


/* ---- TRUSTED BY ---- */
.am-trusted {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
}
.am-trusted__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.am-trusted__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}
.am-trusted__list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.am-trusted__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}
.am-trusted__item svg { flex-shrink: 0; border-radius: 2px; }
.am-trusted__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}


/* ---- FEATURES ---- */
.am-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.am-feature {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.am-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.am-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(var(--accent-rgb), 0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.am-feature:hover {
  border-color: rgba(var(--accent-rgb), 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 30px rgba(var(--accent-rgb), 0.08);
}
.am-feature:hover::before { opacity: 1; }
.am-feature:hover::after { opacity: 1; }

.am-feature__icon {
  width: 56px;
  height: 56px;
  background: rgba(var(--accent-rgb), 0.06);
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}
.am-feature:hover .am-feature__icon {
  background: rgba(var(--accent-rgb), 0.12);
  border-color: rgba(var(--accent-rgb), 0.25);
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.15);
}
.am-feature__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.am-feature__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}


/* ---- INDICATOR CARDS ---- */
.am-indicators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.am-indicator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.am-indicator-card:hover {
  border-color: rgba(var(--accent-rgb), 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(var(--accent-rgb), 0.08);
}
.am-indicator-card__visual {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--bg-secondary);
}
.am-indicator-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.am-indicator-card:hover .am-indicator-card__visual img {
  transform: scale(1.05);
}
.am-indicator-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.am-indicator-card__placeholder--1 {
  background: linear-gradient(135deg, #060d1f 0%, #0d0a20 50%, #060d1f 100%);
}
.am-indicator-card__placeholder--2 {
  background: linear-gradient(135deg, #0a0520 0%, #050d20 50%, #0a0520 100%);
}
.am-indicator-card__placeholder--3 {
  background: linear-gradient(135deg, #050d20 0%, #0d0820 50%, #050d20 100%);
}
.am-indicator-card__lock {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 14, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.am-indicator-card__body {
  padding: 24px;
}
.am-indicator-card__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.am-indicator-card__title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.am-indicator-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ---- STEPS ---- */
.am-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.am-steps__line {
  position: absolute;
  top: 36px;
  left: calc(16.67% + 36px);
  right: calc(16.67% + 36px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.3), transparent);
}
.am-step {
  text-align: center;
  position: relative;
}
.am-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid rgba(var(--accent-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.am-step__num span {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.am-step:hover .am-step__num {
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.15);
}
.am-step__content { position: relative; z-index: 1; }
.am-step__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.am-step__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ---- PRICING ---- */
.am-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.am-pricing__card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}
.am-pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.am-pricing__card--featured {
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.1), var(--shadow-lg);
  transform: scale(1.04);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.04) 0%, var(--bg-card) 30%);
  z-index: 1;
}
.am-pricing__card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}
.am-pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-purple));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.am-pricing__header { margin-bottom: 32px; }
.am-pricing__tier {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.am-pricing__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.am-pricing__amount {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.am-pricing__amount--free {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-success);
}
.am-pricing__period {
  font-size: 14px;
  color: var(--text-muted);
}
.am-pricing__tagline {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.am-pricing__features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.am-pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.am-pricing__feature--yes::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,255,136,0.1);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2300FF88' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.am-pricing__feature--no {
  opacity: 0.4;
}
.am-pricing__feature--no::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='3' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}


/* ---- TESTIMONIALS ---- */
.am-testimonials {
  overflow: hidden;
  position: relative;
}
.am-testimonials__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 0 24px;
  -webkit-overflow-scrolling: touch;
}
.am-testimonials__track::-webkit-scrollbar { display: none; }

.am-testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: 340px;
  max-width: 400px;
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: all var(--transition);
}
.am-testimonial:hover {
  border-color: rgba(var(--accent-rgb), 0.15);
}
.am-testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.am-testimonial__quote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: normal;
}
.am-testimonial__quote::before { content: none; }
.am-testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.am-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.15), rgba(var(--accent-purple-rgb), 0.15));
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.am-testimonial__avatar span {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}
.am-testimonial__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.am-testimonial__role {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}


/* ---- FAQ ---- */
.am-faq {
  max-width: 720px;
  margin: 0 auto;
}
.am-faq__item {
  border-bottom: 1px solid var(--border-subtle);
}
.am-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
  letter-spacing: -0.01em;
}
.am-faq__question:hover { color: var(--accent); }
.am-faq__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.06);
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  transition: all var(--transition);
}
.am-faq__item.open .am-faq__icon {
  transform: rotate(45deg);
  background: rgba(var(--accent-rgb), 0.12);
}
.am-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}
.am-faq__item.open .am-faq__answer {
  max-height: 500px;
  padding-bottom: 24px;
}
.am-faq__answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}


/* ---- CTA ---- */
.am-cta {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
  text-align: center;
  background: var(--bg-primary);
}
.am-cta__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.am-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.am-cta__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(var(--accent-rgb), 0.1);
  top: -30%;
  left: 30%;
}
.am-cta__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(var(--accent-purple-rgb), 0.08);
  bottom: -30%;
  right: 20%;
}
.am-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.am-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.am-cta__desc {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}
.am-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ---- FOOTER ---- */
.am-footer {
  background: var(--bg-void);
  border-top: 1px solid var(--border-subtle);
  padding: clamp(64px, 8vw, 100px) 0 clamp(32px, 4vw, 48px);
}
.am-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.am-footer__logo {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.am-footer__logo span {
  background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.am-footer__logo:hover { opacity: 0.9; color: var(--text-primary); }
.am-footer__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.am-footer__social {
  display: flex;
  gap: 12px;
}
.am-footer__social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.am-footer__social a:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.06);
}
.am-footer__heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.am-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.am-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.am-footer__links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.am-footer__links svg {
  flex-shrink: 0;
  opacity: 0.6;
}
.am-footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.am-footer__copy {
  font-size: 13px;
  color: var(--text-muted);
}
.am-footer__payments {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.am-footer__payments-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}


/* ---- SCROLL REVEAL ---- */
.am-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.am-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.am-reveal-delay-1 { transition-delay: 0.1s; }
.am-reveal-delay-2 { transition-delay: 0.2s; }
.am-reveal-delay-3 { transition-delay: 0.3s; }
.am-reveal-delay-4 { transition-delay: 0.4s; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}


/* ---- UTILITY ---- */
.am-text-center { text-align: center; }
.am-text-muted  { color: var(--text-muted); }
.am-gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.am-hidden { display: none !important; }


/* ---- FORMS ---- */
.am-form-group { margin-bottom: 20px; }
.am-label { display: block; margin-bottom: 8px; color: var(--text-secondary); font-size: 14px; font-weight: 500; }
.am-input, .am-textarea, .am-select {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 15px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.am-input:focus, .am-textarea:focus, .am-select:focus {
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.08);
}
.am-input::placeholder { color: var(--text-muted); }
.am-textarea { resize: vertical; min-height: 120px; }
.am-select option { background: var(--bg-secondary); }

.am-alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border-left: 3px solid;
  margin-bottom: 16px;
  font-size: 14px;
}
.am-alert--success { background: rgba(0,255,136,0.04); border-color: var(--color-success); color: var(--color-success); }
.am-alert--error   { background: rgba(255,68,85,0.04); border-color: var(--color-error); color: var(--color-error); }
.am-alert--warning { background: rgba(255,170,0,0.04); border-color: var(--color-warning); color: var(--color-warning); }
.am-alert--info    { background: rgba(var(--accent-rgb),0.04); border-color: var(--accent); color: var(--accent); }

.am-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.am-card:hover {
  border-color: rgba(var(--accent-rgb), 0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.am-loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* ---- LOCKED CONTENT ---- */
.am-locked-content { position: relative; }
.am-locked-preview { max-height: 200px; overflow: hidden; position: relative; }
.am-locked-preview::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px; background: linear-gradient(to bottom, transparent, var(--bg-primary)); }
.am-locked-overlay { background: var(--bg-card); border: 1px solid rgba(var(--accent-rgb), 0.15); border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.am-locked-overlay__icon { margin-bottom: 16px; color: var(--accent); }
.am-locked-overlay__title { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.am-locked-overlay__desc { color: var(--text-secondary); margin-bottom: 28px; }


/* ---- LICENSE KEY ---- */
.am-license-key {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-secondary);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}
.am-license-key__code {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--accent-cyan);
  flex: 1;
  letter-spacing: 0.08em;
}
.am-license-key__copy {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition-fast);
}
.am-license-key__copy:hover { color: var(--accent); }


/* ---- DASHBOARD ---- */
.am-dashboard {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px clamp(20px, 4vw, 40px);
  min-height: calc(100vh - 70px);
}
.am-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 90px;
}
.am-sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.am-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition-fast);
}
.am-sidebar-nav a:hover,
.am-sidebar-nav a.active {
  background: rgba(var(--accent-rgb), 0.06);
  color: var(--accent);
}


/* ---- GENERATEPRESS OVERRIDES ---- */

/* Override GP's :root light theme variables globally */
:root {
  --base: #04060e !important;
  --base-2: #080c18 !important;
  --base-3: #04060e !important;
  --contrast: #ffffff !important;
  --contrast-2: #94a3b8 !important;
  --contrast-3: #475569 !important;
  --accent: #00D4FF !important;
}

body, .site {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
}

/* ---- Header ---- */
.site-header, #site-header {
  background: rgba(4, 6, 14, 0.9) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid var(--border-subtle) !important;
  position: sticky !important;
  top: 0;
  z-index: 999;
}
.site-header .inside-header {
  padding: 12px 30px !important;
}
.main-navigation, .nav-bar-items,
.inside-header, .header-widget {
  background: transparent !important;
}
.main-navigation a, .menu-toggle { color: var(--text-secondary) !important; }
.main-navigation a:hover { color: #fff !important; }
.main-title, .main-title a, .site-title, .site-title a {
  color: #fff !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}
.inside-site-header { padding: 0 !important; }

/* ---- Global dark overrides ---- */
.entry-content, .entry-summary { color: var(--text-secondary); }
.entry-title, .entry-title a { color: var(--text-primary); }
.sidebar-widget-area { background: transparent; }
.separate-containers .inside-article,
.separate-containers .comments-area,
.separate-containers .page-header,
.separate-containers .paging-navigation {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.comment-form input, .comment-form textarea {
  background: var(--bg-secondary) !important;
  border-color: var(--border-subtle) !important;
  color: var(--text-primary) !important;
}

/* ==============================================
   HOMEPAGE TEMPLATE — CRITICAL GP OVERRIDES
   ============================================== */

/* Force the grid-container to be full-width on homepage */
.page-template-template-homepage-php .site.grid-container,
.page-template-template-homepage .site.grid-container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* CRITICAL: Override display:flex on site-content that makes sections horizontal */
.page-template-template-homepage-php .site-content,
.page-template-template-homepage .site-content {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Override any content-area width constraints and sidebar space */
.page-template-template-homepage-php .content-area,
.page-template-template-homepage .content-area,
.page-template-template-homepage-php .site-main,
.page-template-template-homepage .site-main,
.page-template-template-homepage-php #content,
.page-template-template-homepage .#content {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  flex: none !important;
}

/* Remove article wrappers styling */
.page-template-template-homepage-php .inside-article,
.page-template-template-homepage .inside-article,
.page-template-template-homepage-php .entry-content,
.page-template-template-homepage .entry-content {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Hide unnecessary GP elements on homepage */
.page-template-template-homepage-php .entry-header,
.page-template-template-homepage-php .post-navigation,
.page-template-template-homepage-php .comments-area,
.page-template-template-homepage-php .entry-meta,
.page-template-template-homepage-php article.page > header,
.page-template-template-homepage-php .inside-page-header,
.page-template-template-homepage-php .page-header {
  display: none !important;
}

/* Hide any sidebar that might exist */
.page-template-template-homepage-php .widget-area,
.page-template-template-homepage-php #right-sidebar,
.page-template-template-homepage-php .sidebar,
.page-template-template-homepage-php .right-sidebar-toggle {
  display: none !important;
}

/* Hide GP footer on homepage (we have custom footer) */
.page-template-template-homepage-php .site-footer,
.page-template-template-homepage .site-footer {
  display: none !important;
}

/* Ensure body doesn't create separate-containers styling */
.page-template-template-homepage-php.separate-containers .site-main > *,
.page-template-template-homepage-php.separate-containers .inside-article {
  background: transparent !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}


/* ---- RESPONSIVE ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .am-reveal { opacity: 1; transform: none; }
}

@media (max-width: 1024px) {
  .am-features-grid { grid-template-columns: repeat(2, 1fr); }
  .am-indicators-grid { grid-template-columns: repeat(2, 1fr); }
  .am-pricing { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .am-pricing__card--featured { transform: none; }
  .am-pricing__card--featured:hover { transform: translateY(-4px); }
  .am-footer__grid { grid-template-columns: 1fr 1fr; }
  .am-steps { gap: 32px; }
  .am-dashboard { grid-template-columns: 1fr; }
  .am-sidebar { position: static; }
}

@media (max-width: 768px) {
  .am-features-grid { grid-template-columns: 1fr; }
  .am-indicators-grid { grid-template-columns: 1fr; }
  .am-steps { grid-template-columns: 1fr; gap: 32px; }
  .am-steps__line { display: none; }
  .am-footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .am-hero__stat-divider { display: none; }
  .am-hero__stats { gap: 24px; }
  .am-hero { padding: 100px 0 60px; }
  .am-trusted__inner { flex-direction: column; gap: 12px; }
  .am-trusted__list { justify-content: center; }
}

@media (max-width: 480px) {
  .am-hero__actions { flex-direction: column; align-items: center; }
  .am-hero__actions .am-btn { width: 100%; max-width: 280px; }
  .am-hero__stats { flex-direction: column; gap: 20px; }
  .am-hero__stat-divider { width: 48px; height: 1px; }
}
