/**
 * AllMyApps Landing Page Stylesheet
 * Aesthetic, Typography & Palette inspired by appstead.app
 * High-end dark theme, Manrope & Plus Jakarta Sans, vibrant ASC copper accents.
 */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Appstead Palette Tokens */
  --ama-bg: #0c0d10;
  --ama-bg-subtle: #121318;
  --ama-card-bg: #161820;
  --ama-card-bg-elevated: #1e202a;
  --ama-card-border: rgba(255, 255, 255, 0.08);
  --ama-card-border-hover: rgba(255, 255, 255, 0.16);
  --ama-card-glow: rgba(249, 115, 22, 0.08);

  /* Typography Colors */
  --ama-text-primary: #ffffff;
  --ama-text-secondary: #e4e4e7;
  --ama-text-muted: #a1a1aa;
  --ama-text-light: #ffffff;

  /* Accent Colors */
  --ama-accent-orange: #f97316;
  --ama-accent-orange-light: #fb923c;
  --ama-accent-orange-glow: rgba(249, 115, 22, 0.25);
  --ama-accent-green: #10b981;
  --ama-accent-green-glow: rgba(16, 185, 129, 0.2);
  --ama-accent-blue: #38bdf8;
  --ama-accent-blue-glow: rgba(56, 189, 248, 0.2);
  --ama-accent-purple: #818cf8;

  /* Typography */
  --ama-font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  --ama-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;

  /* Radii */
  --ama-radius-sm: 10px;
  --ama-radius-md: 16px;
  --ama-radius-lg: 24px;
  --ama-radius-xl: 32px;
  --ama-radius-full: 9999px;

  /* Transitions */
  --ama-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Page Reset & Base */
body.allmyapps-page {
  background: #0c0d10 !important;
  background-color: #0c0d10 !important;
  background-image: none !important;
  color: #ffffff;
  font-family: var(--ama-font-body);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.allmyapps-page::before {
  display: none !important;
}

.allmyapps-page * {
  box-sizing: border-box;
}

/* Ambient Background Glow */
.ama-ambient-glow {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1400px;
  height: 600px;
  background: radial-gradient(circle at 50% 10%, rgba(249, 115, 22, 0.12) 0%, rgba(56, 189, 248, 0.04) 35%, rgba(12, 13, 16, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Container */
.ama-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Navigation */
.ama-nav {
  position: sticky;
  top: 12px;
  max-width: 1180px;
  width: calc(100% - 24px);
  margin: 0 auto;
  z-index: 100;
  background: rgba(12, 13, 16, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--ama-card-border);
  border-radius: 18px;
  padding: 14px 0;
  transition: var(--ama-transition);
}

.ama-nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ama-nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ama-text-primary);
}

.ama-nav-brand {
  font-family: var(--ama-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ama-nav-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.ama-nav-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(249, 115, 22, 0.15);
  color: var(--ama-accent-orange-light);
  border: 1px solid rgba(249, 115, 22, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ama-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ama-nav-link {
  color: var(--ama-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--ama-transition);
}

.ama-nav-link:hover {
  color: var(--ama-text-primary);
}

.ama-nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ama-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--ama-radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ama-card-border);
  color: var(--ama-text-primary);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--ama-transition);
}

.ama-btn-back:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* Language Selector (Dark Theme High Contrast) */
.allmyapps-page .lang-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff !important;
  padding: 7px 14px;
  border-radius: var(--ama-radius-full);
}

.allmyapps-page .current-lang {
  color: #ffffff !important;
  font-weight: 600;
}

.allmyapps-page .lang-arrow {
  color: #ffffff !important;
}

.allmyapps-page .lang-btn:hover,
.allmyapps-page .lang-btn[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
}

.allmyapps-page .lang-dropdown {
  background: rgba(22, 24, 32, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7);
  border-radius: 14px;
}

.allmyapps-page .lang-option {
  color: #a1a1aa;
}

.allmyapps-page .lang-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.allmyapps-page .lang-option.active {
  color: #ffffff;
  background: rgba(249, 115, 22, 0.22);
  font-weight: 600;
}

/* Hero Section */
.ama-hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.ama-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--ama-radius-full);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--ama-accent-orange-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.1);
}

.ama-badge-pill .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ama-accent-orange);
  box-shadow: 0 0 8px var(--ama-accent-orange);
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.ama-hero-title {
  font-family: var(--ama-font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #ffffff;
  max-width: 920px;
  margin: 0 auto 20px;
}

.ama-hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #ffffff !important;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.ama-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.ama-hero-actions .app-store-badge {
  margin-top: 0;
}

.ama-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--ama-radius-full);
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  font-family: var(--ama-font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transition: var(--ama-transition);
}

.ama-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.45);
}

.ama-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--ama-radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ama-card-border);
  color: var(--ama-text-primary);
  font-size: 0.92rem;
  font-weight: 500;
}

.ama-status-chip .apple-badge {
  font-size: 0.8rem;
  color: var(--ama-accent-orange-light);
  font-weight: 600;
}

/* Hero Showcase Centerpiece */
.ama-hero-showcase {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}

.ama-hero-glow-circle {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22) 0%, rgba(249, 115, 22, 0) 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.ama-phone-mockup {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 320px;
  border-radius: 46px;
  padding: 10px;
  background: linear-gradient(145deg, #2b2d38 0%, #15161d 100%);
  box-shadow: 
    0 25px 60px -15px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 40px rgba(249, 115, 22, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ama-phone-mockup:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 
    0 30px 70px -15px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 50px rgba(249, 115, 22, 0.25);
}

.ama-phone-screen {
  border-radius: 38px;
  overflow: hidden;
  background: #000000;
  display: block;
  line-height: 0;
}

.ama-phone-screen img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating Metric Badges */
.ama-float-badge {
  position: absolute;
  z-index: 3;
  padding: 12px 18px;
  border-radius: var(--ama-radius-md);
  background: rgba(22, 24, 32, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  animation: float-soft 4s ease-in-out infinite;
}

.ama-float-badge--left {
  left: 30px;
  top: 25%;
  animation-delay: 0s;
}

.ama-float-badge--right {
  right: 30px;
  bottom: 25%;
  animation-delay: 2s;
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.ama-float-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ama-float-icon.orange {
  background: rgba(249, 115, 22, 0.18);
  color: var(--ama-accent-orange-light);
}

.ama-float-icon.green {
  background: rgba(16, 185, 129, 0.18);
  color: var(--ama-accent-green);
}

.ama-float-title {
  font-size: 0.78rem;
  color: var(--ama-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.ama-float-value {
  font-family: var(--ama-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ama-text-primary);
}

.ama-float-value span.highlight {
  color: var(--ama-accent-green);
  font-size: 0.85rem;
  margin-left: 4px;
}

/* Feature Pillars Bar (Appstead Style) */
.ama-pillars-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 90px;
}

.ama-pillar-item {
  background: var(--ama-card-bg);
  border: 1px solid var(--ama-card-border);
  border-radius: var(--ama-radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--ama-transition);
}

.ama-pillar-item:hover {
  background: var(--ama-card-bg-elevated);
  border-color: var(--ama-card-border-hover);
  transform: translateY(-2px);
}

.ama-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--ama-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.ama-pillar-icon.orange { background: rgba(249, 115, 22, 0.15); color: var(--ama-accent-orange); }
.ama-pillar-icon.blue { background: rgba(56, 189, 248, 0.15); color: var(--ama-accent-blue); }
.ama-pillar-icon.green { background: rgba(16, 185, 129, 0.15); color: var(--ama-accent-green); }
.ama-pillar-icon.purple { background: rgba(129, 140, 248, 0.15); color: var(--ama-accent-purple); }

.ama-pillar-title {
  font-family: var(--ama-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: -0.01em;
}

.ama-pillar-desc {
  font-size: 0.9rem;
  color: #e4e4e7 !important;
  line-height: 1.5;
}

/* Section Common */
.ama-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.ama-section-eyebrow {
  display: inline-block;
  font-family: var(--ama-font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ama-accent-orange-light);
  margin-bottom: 12px;
}

.ama-section-title {
  font-family: var(--ama-font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff !important;
  line-height: 1.15;
  margin: 0 0 16px;
}

.ama-section-subtitle {
  font-size: 1.2rem;
  color: #ffffff !important;
  font-weight: 500;
  line-height: 1.65;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Bento Showcase Grid */
.ama-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.ama-bento-card {
  background: var(--ama-card-bg);
  border: 1px solid var(--ama-card-border);
  border-radius: var(--ama-radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--ama-transition);
  position: relative;
}

.ama-bento-card:hover {
  background: var(--ama-card-bg-elevated);
  border-color: var(--ama-card-border-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.ama-bento-card--col-7 { grid-column: span 7; }
.ama-bento-card--col-5 { grid-column: span 5; }
.ama-bento-card--col-6 { grid-column: span 6; }
.ama-bento-card--col-4 { grid-column: span 4; }
.ama-bento-card--col-8 { grid-column: span 8; }
.ama-bento-card--col-12 { grid-column: span 12; }

.ama-card-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
}

.ama-bento-card--col-6 .ama-card-body {
  flex: 1 0 auto;
}

.ama-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ama-accent-orange);
}

.ama-card-title {
  font-family: var(--ama-font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff !important;
  margin: 0;
  line-height: 1.25;
}

.ama-bento-card--col-6 .ama-card-title {
  min-height: 2.5em;
}

.ama-card-desc {
  font-size: 0.98rem;
  color: #e4e4e7 !important;
  line-height: 1.6;
  margin: 0;
}

.ama-bento-card--col-6 .ama-card-desc {
  min-height: 4.8em;
}

/* 2-Column Aligned Feature Grid */
.ama-features-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 22px;
  margin: 16px 0 0;
  padding: 0;
}

.ama-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  min-height: 3.2em;
}

.ama-feature-item-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.ama-feature-item-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.35;
}

.ama-feature-item-desc {
  font-size: 0.85rem;
  color: #a1a1aa !important;
  line-height: 1.45;
}

/* Feature Bullets (Single Column with Structured Alignment) */
.ama-feature-bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ama-feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.ama-bullet-check {
  color: var(--ama-accent-green, #34d399);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Card Visual / Screenshot Canvas */
.ama-card-media {
  padding: 0 36px 36px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.ama-bento-card--col-6 .ama-card-media {
  margin-top: auto;
  flex: 0 0 470px;
  height: 470px;
}

.ama-phone-frame-bento {
  max-width: 280px;
  width: 100%;
  border-radius: 36px;
  background: #111;
  padding: 8px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.ama-bento-card--col-6 .ama-phone-frame-bento {
  max-width: 250px;
}

.ama-bento-card:hover .ama-phone-frame-bento {
  transform: translateY(-4px);
}

.ama-phone-frame-bento img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

/* Dual Phones Layout for Col-7 or Col-12 */
.ama-card-media-dual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  padding: 0 36px 36px;
}

.ama-card-media-dual .ama-phone-frame-bento {
  max-width: 240px;
}

/* Security Highlight Banner (Appstead Styled Bento) */
.ama-security-box {
  background: linear-gradient(135deg, rgba(22, 24, 32, 0.95) 0%, rgba(30, 33, 45, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--ama-radius-xl);
  padding: 48px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.ama-security-box::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.ama-security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ama-security-content h3 {
  font-family: var(--ama-font-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ama-text-primary);
  margin: 0 0 16px;
}

.ama-security-content p {
  color: var(--ama-text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.ama-security-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ama-sec-item {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--ama-radius-md);
  padding: 20px;
}

.ama-sec-item-title {
  font-family: var(--ama-font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ama-text-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ama-sec-item-desc {
  font-size: 0.85rem;
  color: var(--ama-text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Call to Action Card */
.ama-cta-card {
  background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.18) 0%, rgba(20, 22, 28, 1) 75%);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: var(--ama-radius-xl);
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 80px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  position: relative;
}

.ama-cta-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin: 0 auto 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.ama-cta-title {
  font-family: var(--ama-font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ama-text-primary);
  margin: 0 0 16px;
}

.ama-cta-desc {
  font-size: 1.15rem;
  color: var(--ama-text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* Footer */
.ama-footer {
  border-top: 1px solid var(--ama-card-border);
  padding: 40px 0;
  font-size: 0.85rem;
  color: var(--ama-text-muted);
}

.ama-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.ama-footer-disclaimer {
  max-width: 700px;
  line-height: 1.6;
  font-size: 0.8rem;
  color: var(--ama-text-muted);
}

.ama-footer-links {
  display: flex;
  gap: 20px;
}

.ama-footer-link {
  color: var(--ama-text-secondary);
  text-decoration: none;
  transition: var(--ama-transition);
}

.ama-footer-link:hover {
  color: var(--ama-text-primary);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .ama-pillars-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .ama-bento-card--col-7,
  .ama-bento-card--col-5,
  .ama-bento-card--col-6,
  .ama-bento-card--col-8,
  .ama-bento-card--col-4 {
    grid-column: span 12;
  }

  .ama-security-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ama-float-badge--left {
    left: 10px;
    top: 15%;
  }

  .ama-float-badge--right {
    right: 10px;
    bottom: 15%;
  }
}

@media (max-width: 768px) {
  .ama-nav-links {
    display: none;
  }

  .ama-hero {
    padding: 50px 0 40px;
  }

  .ama-float-badge {
    display: none;
  }

  .ama-pillars-bar {
    grid-template-columns: 1fr;
  }

  .ama-features-2col {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ama-card-body {
    padding: 28px;
  }

  .ama-bento-card--col-6 .ama-card-body {
    flex: auto;
  }

  .ama-bento-card--col-6 .ama-card-title,
  .ama-bento-card--col-6 .ama-card-desc,
  .ama-feature-item {
    min-height: auto;
  }

  .ama-bento-card--col-6 .ama-card-media {
    height: auto;
    min-height: 380px;
    flex: auto;
  }

  .ama-card-media {
    padding: 0 20px 28px;
  }

  .ama-card-media-dual {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .ama-security-box {
    padding: 32px 24px;
  }

  .ama-security-features {
    grid-template-columns: 1fr;
  }

  .ama-cta-card {
    padding: 40px 20px;
  }
}
