/* ── Animeista — Anime & Manga Social Network ──────────────── */
/* Landing Page Theme - Cyber-Luxe Stealth Sapphire Edition     */
/* ──────────────────────────────────────────────────────────── */

@charset "utf-8";

/* ── Design Tokens (Clean Technical Palette) ────────────────── */
:root {
  --primary:     #0a84ff; /* Pure Electric Blue */
  --deep:        #001428; /* Deep Space Navy Shadow */
  --accent:      #64d2ff; /* Vivid Ice Cyan */
  --steel:       #0052cc; /* Dark Steel Blue Mid-Tone Bridge */
  --dark:        #000000; /* Pure OLED Black Background */
  --dark2:       #04060a; /* Premium Charcoal-Black Card Base */
  --dark3:     #090d16; /* Elevated Container Accent */
  --glass:       rgba(255, 255, 255, 0.02);
  --glass-b:     rgba(10, 132, 255, 0.12); /* Electric Blue Border Glow */
  --text:        #f2f2f7; /* High Contrast White */
  --text-muted:  #ebebf599; /* Smooth Secondary Text */
  --radius:      14px;
  --radius-lg:   24px;

  /* Re-engineered High-Fidelity Non-Feminine Gradients */
  --grad-cyber:     linear-gradient(135deg, var(--primary) 0%, var(--steel) 50%, var(--deep) 100%);
  --grad-glow:      linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  --grad-text-main: linear-gradient(135deg, #ffffff 15%, var(--accent) 65%, var(--primary) 100%);
  --grad-text-sub:  linear-gradient(135deg, #ffffff 40%, var(--primary) 100%);
  --grad-btn-ios:   linear-gradient(135deg, #05070c 0%, #111622 100%);
}

/* ── Reset & Baseline ──────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; transition: color 0.2s, text-shadow 0.2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Premium Background Layering ────────────────────────────── */
.bg-layer {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(circle at 85% 25%, rgba(10, 132, 255, 0.05), transparent 35%),
    radial-gradient(circle at 15% 75%, rgba(100, 210, 255, 0.06), transparent 40%),
    var(--dark);
}

/* Cyber Stardust / Petal Cascade Animation */
.sakura-container {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden;
}
.sakura {
  position: absolute;
  bottom: -30px;
  width: 8px; height: 8px;
  border-radius: 50% 0 50% 0;
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.2), rgba(100, 210, 255, 0.1));
  box-shadow: 0 0 8px rgba(10, 132, 255, 0.1);
  opacity: 0;
  animation: sakura-rise 14s linear infinite;
}
@keyframes sakura-rise {
  0%   { transform: translateY(0) rotate(0deg) scale(0.8); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.15; }
  100% { transform: translateY(-110vh) rotate(720deg) scale(1.2); opacity: 0; }
}

/* Scanline / Grain Aesthetic Overlays */
.scanlines {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.12) 2px,
    rgba(0,0,0,0.12) 4px
  );
}
.grain-overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── Navbar ──────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  height: 80px;
  display: flex; align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(10, 132, 255, 0.15);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px; margin: 0 auto;
}

/* Logo Framework */
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--grad-cyber);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(10, 132, 255, 0.2);
}
.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700; font-size: 1.15rem; letter-spacing: 1px;
  background: var(--grad-text-sub);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* Navigation Links */
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-link {
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.5px;
  color: var(--text-muted);
  position: relative; padding: 4px 0;
  transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--grad-glow);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--grad-cyber);
  color: #fff !important; font-weight: 700 !important;
  padding: 8px 20px; border-radius: 50px;
  /* Fixed: Inset shadow avoids corner cropping artifacts */
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 4px 15px rgba(10, 132, 255, 0.2);
  transition: opacity 0.2s, transform 0.2s !important;
  -webkit-text-fill-color: #fff !important;
  border: none;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.95; transform: translateY(-1px) !important; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25), 0 6px 20px rgba(10, 132, 255, 0.35); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Canvas ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 5% 80px;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass); 
  box-shadow: inset 0 0 0 1px rgba(10, 132, 255, 0.25);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 1px;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 28px;
  border: none;
  animation: fade-up 0.6s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10, 132, 255, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(10, 132, 255, 0); }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  animation: fade-up 0.6s 0.1s ease both;
}
.hero-title .line1 {
  display: block;
  background: var(--grad-text-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-title .line2 {
  display: block;
  background: var(--grad-cyber);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  padding-bottom: 6px;
}

.hero-sub {
  max-width: 580px; margin: 0 auto 48px;
  font-size: 1.05rem; line-height: 1.8;
  color: var(--text-muted); font-weight: 400;
  animation: fade-up 0.6s 0.2s ease both;
}

/* Statistics Cluster */
.hero-stats {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fade-up 0.6s 0.3s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 1.75rem; font-weight: 900;
  background: var(--grad-text-sub);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 2px;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fade-up 0.6s 0.4s ease both;
}

/* Global Store Buttons */
.store-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 26px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  min-width: 175px;
}
.store-btn:hover { transform: translateY(-3px); }
.store-btn .btn-icon { display: flex; align-items: center; justify-content: center; }
.store-btn .btn-text { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.store-btn .btn-text small { font-size: 0.68rem; font-weight: 400; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.5px; }
.store-btn .btn-text strong { font-size: 1.05rem; }

.btn-ios {
  background: var(--grad-btn-ios);
  color: #fff;
  /* Fixed: Inset shadow maps onto inner curves flawlessly without anti-alias distortion */
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), 0 4px 24px rgba(0,0,0,0.6);
  border: none;
}
.btn-ios:hover { box-shadow: inset 0 0 0 1px var(--primary), 0 8px 32px rgba(10,132,255,0.25); }

.btn-android {
  background: var(--grad-cyber);
  color: #fff;
  /* Fixed: Eliminates the border cropping issue on the gradient layer */
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 4px 24px rgba(10,132,255,0.25);
  border: none;
}
.btn-android:hover { box-shadow: inset 0 0 0 1px var(--accent), 0 8px 32px rgba(10,132,255,0.4); }

/* ── Section Typographic Elements ───────────────────── */
.section-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 6px;
}
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  background: var(--grad-text-sub);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted); font-size: 1rem; line-height: 1.8;
  max-width: 580px;
}

section { padding: 100px 5%; max-width: 1200px; margin: 0 auto; }

/* ── Glassmorphic Grid (Features) ───────────────────── */
.features { text-align: center; }
.features .section-sub { margin: 0 auto 60px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: left;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 132, 255, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(10, 132, 255, 0.08);
}

.feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
  background: rgba(10, 132, 255, 0.06);
  border: 1px solid rgba(10, 132, 255, 0.12);
}
.feature-card h3 { font-family: 'Orbitron', monospace; font-weight: 700; font-size: 1.15rem; margin-bottom: 12px; color: #fff; }
.feature-card p  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ── Showcase Box Layout (About) ─────────────────────── */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.about-graphic {
  width: 100%; aspect-ratio: 1;
  max-width: 360px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--dark2), #090e18);
  border: 1px solid var(--glass-b);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.8), inset 0 0 40px rgba(10,132,255,0.03);
  position: relative; overflow: hidden;
}
.about-graphic .glow-ring {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 2px dashed rgba(10, 132, 255, 0.15);
  animation: spin-slow 16s linear infinite;
}
.about-graphic .glow-ring-2 {
  width: 290px; height: 290px;
  border-color: rgba(100, 210, 255, 0.08);
  animation: spin-slow 24s linear infinite reverse;
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.about-text .section-sub { max-width: 100%; margin-bottom: 32px; }
.about-list { display: flex; flex-direction: column; gap: 14px; }
.about-list-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 1rem; font-weight: 500;
  color: var(--text-muted);
}
.about-list-item .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad-cyber);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: #fff; flex-shrink: 0;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

/* ── Activity Feed (Community Spotlight) ─────────────── */
.community { text-align: center; }
.community .section-sub { margin: 0 auto 50px; }
.activity-feed {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 720px; margin: 0 auto;
}
.activity-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--glass); border: 1px solid var(--glass-b);
  border-radius: var(--radius); padding: 16px 20px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.activity-item:hover {
  border-color: rgba(10, 132, 255, 0.3);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.activity-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
  background: var(--dark3);
  border: 2px solid rgba(10, 132, 255, 0.2);
}
.activity-body { flex: 1; text-align: left; line-height: 1.5; }
.activity-body strong { font-size: 0.95rem; font-weight: 700; color: #fff; }
.activity-body span  { color: var(--text-muted); font-size: 0.9rem; }
.activity-body em { color: var(--accent); font-style: normal; font-weight: 600; }
.activity-meta { font-size: 0.8rem; color: var(--text-muted); white-space: nowrap; }
.activity-tag {
  display: inline-block;
  background: rgba(10, 132, 255, 0.1);
  color: var(--accent); font-size: 0.78rem; font-weight: 700;
  padding: 2px 10px; border-radius: 50px;
  margin-left: 8px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ── Banner Panel (Download CTA) ─────────────────────── */
.download-cta { text-align: center; padding: 100px 5% !important; }
.cta-card {
  background: linear-gradient(135deg, rgba(0, 40, 80, 0.3), rgba(10, 132, 255, 0.03));
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  max-width: 800px; margin: 0 auto;
  position: relative; overflow: hidden;
  box-shadow: 0 24px 50px rgba(0,0,0,0.7);
}
.cta-card::before {
  content: ''; position: absolute;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 210, 255, 0.06), transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.cta-card .section-title { margin-bottom: 12px; }
.cta-card .section-sub   { margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Interactive Elements (Contact Form) ─────────────── */
.contact-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-family: 'Orbitron', monospace; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1px; color: var(--accent); margin-bottom: 8px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  width: 100%; background: var(--glass);
  border: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 14px 18px;
  color: var(--text); font-family: inherit; font-size: 0.98rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 1px var(--primary), 0 0 0 3px rgba(10, 132, 255, 0.15);
}
.submit-btn {
  width: 100%; padding: 16px;
  background: var(--grad-cyber);
  border: none; border-radius: var(--radius);
  color: #fff; font-family: inherit; font-size: 1rem; font-weight: 700;
  cursor: pointer; letter-spacing: 0.5px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 4px 24px rgba(10, 132, 255, 0.2);
}
.submit-btn:hover { opacity: 0.95; transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 6px 24px rgba(10, 132, 255, 0.35); }

.contact-info h3 {
  font-family: 'Orbitron', sans-serif; font-size: 1.35rem;
  margin-bottom: 28px; background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.info-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--glass); border: 1px solid var(--glass-b);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.info-details h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; }
.info-details p  { font-size: 1rem; color: #fff; }

.social-links { display: flex; gap: 14px; margin-top: 36px; }
.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--glass); border: 1px solid var(--glass-b);
  font-size: 1.1rem; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.social-btn:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(10,132,255,0.15); }

/* ── Global Document Footer ─────────────────────────── */
footer {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 40px 5%; max-width: 100%;
  background: #030407;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); transition: color 0.2s; font-weight: 500; }
.footer-links a:hover { color: var(--accent); }
.copyright { font-size: 0.88rem; color: var(--text-muted); }
.copyright a { color: var(--accent); text-decoration: none; }
.copyright a:hover { color: var(--primary); text-shadow: 0 0 8px rgba(10,132,255,0.5); }

/* ── Animation Library ───────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive Adaptations ─────────────────────────── */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { order: -1; }
  .about-graphic { max-width: 280px; }
  .contact-section { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 700px) {
  #navbar { 
    top: -40px !important; 
    height: 114px !important; 
    padding-top: 40px !important; 
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    border-top: none !important;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background-clip: padding-box;
  }
  .nav-links {
	top: -40px !important; 
    position: fixed; top: 74px; left: 0; right: 0;
    background: rgba(0, 0, 0, 0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    flex-direction: column; gap: 0; padding: 20px 0;
    transform: translateY(-110%); transition: transform 0.35s ease;
    border-bottom: 1px solid var(--glass-b);
  }
  .nav-links.active { transform: translateY(0); }
  .nav-links li { width: 100%; text-align: center; }
  .nav-link { display: block; padding: 14px 0; font-size: 1.05rem; }
  .nav-link::after { display: none; }
  .nav-cta { margin: 12px 10%; display: block; }
  .menu-toggle { display: flex; }
  .hero-stats { gap: 28px; }
  .cta-card { padding: 48px 24px; }
}