:root {
  /* Light mode colors */
  --bg: #faf5ff;
  --surface: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;

  /* Brand colors - exact match from app */
  --primary: #a78bfa;
  --primary-600: #8b5cf6;
  --primary-700: #7c3aed;
  --secondary: #ec4899;
  --accent: #22d3ee;

  /* Neon colors */
  --neon-pink: #FF10F0;
  --neon-purple: #B026FF;
  --neon-blue: #00D9FF;

  /* Glassmorphism */
  --glass: rgba(255, 255, 255, 0.7);
  --glass-purple: rgba(139, 92, 246, 0.15);

  /* Borders & shadows */
  --border: rgba(139, 92, 246, 0.2);
  --shadow-sm: 0 4px 14px -3px rgba(139, 92, 246, 0.25);
  --shadow-md: 0 8px 24px -4px rgba(139, 92, 246, 0.35);
  --shadow-lg: 0 12px 32px -4px rgba(139, 92, 246, 0.4);

  /* Border radius */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(139, 92, 246, 0.15), transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(236, 72, 153, 0.12), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(34, 211, 238, 0.1), transparent 50%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.6;
}

header {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 1.5rem 2rem;
  position: relative;
}

/* Content pages (non-hero) header decoration */
header:not(.hero-header)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 4px;
  background: linear-gradient(90deg,
    transparent,
    var(--neon-purple) 20%,
    var(--secondary) 50%,
    var(--accent) 80%,
    transparent);
  border-radius: 2px;
  opacity: 0.6;
  animation: gradient-flow 8s ease infinite;
}

@keyframes gradient-flow {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 0.8; transform: translateX(-50%) scaleX(1.1); }
}

.hero-header {
  text-align: center;
  padding: clamp(1.5rem, 5vw, 3rem) 1.5rem clamp(1.25rem, 3vw, 2rem);
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--glass-purple), rgba(236, 72, 153, 0.1));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-700);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-purple);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 var(--neon-purple);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(176, 38, 255, 0.1);
  }
}

.site-logo {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  height: 100px;
  width: auto;
  z-index: 1000;
  filter: drop-shadow(0 2px 12px rgba(139, 92, 246, 0.3));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fade-in 0.8s ease-out;
}

.site-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 20px rgba(139, 92, 246, 0.5));
}

.site-title {
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  background: linear-gradient(135deg, var(--neon-purple) 0%, var(--secondary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  color: var(--text-muted);
  font-weight: 500;
  margin: 0 0 1.25rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.tagline {
  color: var(--text-muted);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 500;
  margin: 0.5rem 0 0 0;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.badge-placeholder {
  color: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.6;
}

.badge-placeholder:hover {
  transform: scale(1.05);
  opacity: 1;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

nav a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

nav a:hover,
nav a:focus {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--primary-700);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.9);
}

nav a:active {
  transform: translateY(0);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  animation: fade-in 0.6s ease-out backwards;
  position: relative;
  overflow: hidden;
}

/* Staggered animation for multiple cards */
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }
.card:nth-child(7) { animation-delay: 0.7s; }
.card:nth-child(8) { animation-delay: 0.8s; }

/* Subtle gradient accent on top border only */
.card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--neon-purple) 0%,
    var(--secondary) 50%,
    var(--accent) 100%);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease;
}

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

.features-section {
  margin-bottom: 4rem;
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.features-header {
  text-align: center;
  margin-bottom: 3.5rem;
  animation: fade-in 0.6s ease-out;
}

.features-title {
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-700), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.features-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  position: relative;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1.5px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 4px 20px -4px rgba(139, 92, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fade-in 0.6s ease-out;
  animation-delay: calc(var(--card-index) * 0.1s);
  animation-fill-mode: both;
  overflow: hidden;
}

/* Card color schemes based on index */
.feature-card[style*="--card-index: 0"] {
  background: linear-gradient(135deg,
    rgba(254, 243, 199, 0.4) 0%,
    rgba(253, 224, 71, 0.15) 100%);
}

.feature-card[style*="--card-index: 0"] .feature-icon-wrapper {
  background: linear-gradient(135deg,
    rgba(245, 158, 11, 0.2),
    rgba(251, 191, 36, 0.15));
}

.feature-card[style*="--card-index: 1"] {
  background: linear-gradient(135deg,
    rgba(219, 234, 254, 0.4) 0%,
    rgba(147, 197, 253, 0.15) 100%);
}

.feature-card[style*="--card-index: 1"] .feature-icon-wrapper {
  background: linear-gradient(135deg,
    rgba(59, 130, 246, 0.2),
    rgba(96, 165, 250, 0.15));
}

.feature-card[style*="--card-index: 2"] {
  background: linear-gradient(135deg,
    rgba(254, 226, 226, 0.4) 0%,
    rgba(252, 165, 165, 0.15) 100%);
}

.feature-card[style*="--card-index: 2"] .feature-icon-wrapper {
  background: linear-gradient(135deg,
    rgba(239, 68, 68, 0.2),
    rgba(248, 113, 113, 0.15));
}

.feature-card[style*="--card-index: 3"] {
  background: linear-gradient(135deg,
    rgba(243, 232, 255, 0.4) 0%,
    rgba(216, 180, 254, 0.15) 100%);
}

.feature-card[style*="--card-index: 3"] .feature-icon-wrapper {
  background: linear-gradient(135deg,
    rgba(168, 85, 247, 0.2),
    rgba(192, 132, 252, 0.15));
}

.feature-card[style*="--card-index: 4"] {
  background: linear-gradient(135deg,
    rgba(207, 250, 254, 0.4) 0%,
    rgba(165, 243, 252, 0.15) 100%);
}

.feature-card[style*="--card-index: 4"] .feature-icon-wrapper {
  background: linear-gradient(135deg,
    rgba(6, 182, 212, 0.2),
    rgba(34, 211, 238, 0.15));
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: linear-gradient(135deg,
    rgba(139, 92, 246, 0.3),
    rgba(236, 72, 153, 0.2),
    rgba(34, 211, 238, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 12px 40px -8px rgba(139, 92, 246, 0.35),
    0 0 0 1px rgba(139, 92, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(250, 245, 255, 0.95) 100%);
}

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

.feature-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(236, 72, 153, 0.08) 50%,
    rgba(34, 211, 238, 0.1) 100%);
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(139, 92, 246, 0.4),
    rgba(236, 72, 153, 0.3),
    rgba(34, 211, 238, 0.4));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  filter: blur(10px);
}

.feature-card:hover .feature-icon-wrapper::before {
  opacity: 1;
}

.feature-card:hover .feature-icon-wrapper {
  transform: translateY(-8px) scale(1.05);
  background: linear-gradient(135deg,
    rgba(139, 92, 246, 0.15) 0%,
    rgba(236, 72, 153, 0.12) 50%,
    rgba(34, 211, 238, 0.15) 100%);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.3));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 16px rgba(139, 92, 246, 0.5));
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  background: linear-gradient(135deg, var(--primary-700), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.feature-card:hover p {
  color: var(--text);
}

.cta-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1rem;
  color: var(--text);
}

/* Subtle gradient for h2 in cards */
.card h2 {
  background: linear-gradient(135deg,
    var(--primary-700) 0%,
    var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin: 0 0 0.75rem;
  color: var(--text);
}

/* Subtle color for h3 in cards */
.card h3 {
  color: var(--primary-700);
  font-weight: 600;
}

/* Subtle highlight for strong text in cards */
.card strong {
  color: var(--primary-700);
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

ul, ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

/* Colorful list markers for cards */
.card ul li::marker {
  color: var(--primary);
}

.card ol {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.card ol li {
  counter-increment: item;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
}

.card ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

table th, table td {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

table th {
  background: linear-gradient(135deg,
    rgba(139, 92, 246, 0.15),
    rgba(236, 72, 153, 0.1));
  font-weight: 600;
  color: var(--text);
  position: relative;
}

table th::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    var(--neon-purple),
    var(--secondary),
    var(--accent));
  opacity: 0.5;
}

table tbody tr {
  transition: background-color 0.2s ease;
}

table tbody tr:hover {
  background: rgba(139, 92, 246, 0.03);
}

table tr:last-child td {
  border-bottom: none;
}

.hero-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  margin-top: 1.5rem;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--glass-purple), rgba(236, 72, 153, 0.08));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.hero-card h3 {
  margin-bottom: 0.5rem;
}

.hero-card p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.hero-card a {
  display: inline-flex;
  align-items: center;
  color: var(--primary-700);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-card a:hover {
  color: var(--neon-purple);
}

.hero-card a::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.hero-card a:hover::after {
  transform: translateX(4px);
}

.notice {
  border-left: 3px solid var(--primary);
  background: var(--glass-purple);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.notice a {
  color: var(--primary-700);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
  transition: all 0.2s ease;
}

.notice a:hover {
  color: var(--neon-purple);
  border-bottom-color: var(--neon-purple);
}

.email-cta {
  background: linear-gradient(135deg, var(--glass-purple), rgba(236, 72, 153, 0.1));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.email-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-700);
  margin-bottom: 0.75rem;
}

.email-link {
  display: inline-block;
  font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
  font-weight: 600;
  color: var(--primary-700);
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  background: var(--surface);
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  margin: 0.5rem 0;
}

.email-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-color: var(--neon-purple);
  box-shadow: var(--shadow-md);
}

.email-link:active {
  transform: translateY(0);
}

.email-subtext {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

footer {
  position: relative;
  margin-top: 4rem;
  padding: 3rem 1.5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.05) 0%,
    rgba(236, 72, 153, 0.03) 50%,
    rgba(34, 211, 238, 0.05) 100%
  );
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 92, 246, 0.3) 50%,
    transparent
  );
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  margin: 0 0 0.75rem 0;
  filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.2));
  transition: all 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-700), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0.5rem 0;
  letter-spacing: -0.02em;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-700), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  justify-content: end;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer-column a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-700), var(--secondary));
  transition: width 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-700);
  transform: translateX(4px);
}

.footer-column a:hover::after {
  width: 100%;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 92, 246, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-update {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8125rem;
  opacity: 0.7;
}

a {
  color: var(--primary-700);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-600);
}

/* Enhanced link styling in cards */
.card a:not(.email-link) {
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.card a:not(.email-link)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.3;
  transition: opacity 0.2s ease;
}

.card a:not(.email-link):hover::after {
  opacity: 1;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .hero-header {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .site-logo {
    top: 1rem;
    left: 1rem;
    height: 65px;
  }

  nav {
    gap: 0.625rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .features-section {
    padding: 2rem 1.25rem;
    margin-bottom: 3rem;
  }

  .features-header {
    margin-bottom: 2.5rem;
  }

  .features-title {
    font-size: 1.75rem;
  }

  .features-subtitle {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    padding: 1rem;
  }

  .feature-card {
    padding: 1.75rem 1.25rem;
  }

  .feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }

  .feature-icon {
    font-size: 2.25rem;
  }

  .store-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  footer {
    margin-top: 3rem;
    padding: 2rem 1.25rem 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-logo-img {
    height: 60px;
  }

  .footer-brand-name {
    font-size: 1.25rem;
  }

  .footer-logo {
    font-size: 1.25rem;
  }

  .footer-tagline {
    font-size: 0.875rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1.5rem;
    gap: 0.5rem;
  }

  .footer-copyright,
  .footer-update {
    font-size: 0.8125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
