:root {
  --bg-dark: #050510;
  --bg-surface: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.15);

  --primary: #8B5CF6;
  --primary-light: #a78bfa;
  --secondary: #3B82F6;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #475569;

  --success: #10b981;
  --accent: #ef4444;

  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Background Atmosphere */
.stars,
.twinkling {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.stars {
  background: black url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='10' cy='10' r='0.5' fill='white'/%3E%3Ccircle cx='40' cy='80' r='0.8' fill='white'/%3E%3C/svg%3E") repeat;
  background-size: 200px 200px;
}

.twinkling {
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='30' r='0.5' fill='white' opacity='0.7'/%3E%3C/svg%3E") repeat top center;
  z-index: -1;
  animation: move-twinkling 200s linear infinite;
  background-size: 150px 150px;
}

.glow-orb {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(5, 5, 16, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.top-left {
  top: -200px;
  left: -200px;
}

.bottom-right {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(5, 5, 16, 0) 70%);
}

@keyframes move-twinkling {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -10000px 5000px;
  }
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), #d8b4fe);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-panel {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 5, 16, 0.8);
  padding: 15px 0;
  border-bottom: 1px solid var(--glass-border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-shield {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.logo-shield svg {
  width: 20px;
  height: 20px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: white;
}

.nav-links a.nav-active {
  color: white;
  position: relative;
}

.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn.large {
  padding: 14px 32px;
  font-size: 1.05rem;
  border-radius: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover::after {
  left: 100%;
}

.shadow-glow {
  box-shadow: 0 10px 30px -10px var(--primary);
}

.shadow-glow:hover {
  box-shadow: 0 15px 40px -5px var(--primary);
  transform: translateY(-2px);
}

.glass-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--glass-highlight);
}

.btn-secondary {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #bfdbfe;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.6);
  color: #ffffff;
}


/* Hero Section */
.hero {
  padding: 120px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 24px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.1);
}

.hero-title {
  font-size: 4rem;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Mockup CSS */
.hero-mockup {
  position: relative;
  perspective: 1000px;
}

.mockup-frame {
  padding: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.tilt-effect:hover .mockup-frame {
  transform: rotateX(5deg) rotateY(-10deg) translateY(-10px);
  box-shadow: 20px 30px 60px -10px rgba(139, 92, 246, 0.3);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--glass-border);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #ef4444;
}

.dot.yellow {
  background: #f59e0b;
}

.dot.green {
  background: #10b981;
}

.url-bar {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 10px;
  border: 1px solid var(--glass-border);
}

.mockup-body {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.mockup-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% {
    left: 200%;
  }
}

.mockup-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.pulse {
  animation: pulse-border 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(139, 92, 246, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
  }
}

.mockup-body h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  background: linear-gradient(to right, #e2e8f0, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mockup-body p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.mockup-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
}

.floating-pill {
  position: absolute;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  animation: float 4s ease-in-out infinite;
}

.floating-pill svg {
  width: 18px;
  height: 18px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.float-up {
  animation: float 5s ease-in-out infinite;
}

.float-down {
  animation: float 6s ease-in-out infinite reverse;
}

/* Features Grid */
.features-section {
  padding: 100px 24px;
}

.section-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.15rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 30px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(139, 92, 246, 0.05);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-light);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Workflow */
.workflow {
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.workflow-content h2 {
  font-size: 3rem;
  margin-bottom: 40px;
}

.step-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step {
  display: flex;
  gap: 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-light);
}

.step h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.app-mockup {
  padding: 24px;
  border-radius: 16px;
  background: rgba(11, 15, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.app-row {
  padding: 16px;
  border-radius: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-row.header {
  background: transparent;
  border: none;
  justify-content: flex-start;
  gap: 10px;
  font-size: 1.2rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
  border-radius: 0;
  padding-bottom: 20px;
}

.app-row span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.app-row strong {
  font-family: 'Outfit', sans-serif;
}

/* Footer */
.app-footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 0;
  margin-top: 50px;
  background: rgba(5, 5, 16, 0.5);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

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

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* Privacy micro-badge in hero */
.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.privacy-badge svg {
  width: 14px;
  height: 14px;
  color: var(--success);
  stroke: var(--success);
}

/* Mockup quote */
.mockup-quote {
  font-style: italic;
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 8px !important;
  opacity: 0.8;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 40px;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  margin-bottom: 80px;
  backdrop-filter: blur(12px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  gap: 4px;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* Categories Section */
.categories-section {
  padding: 0 24px 100px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.category-card {
  padding: 28px;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.category-card h4 {
  font-size: 1.05rem;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 14px;
}

.domain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.domain-tags span {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}

/* Privacy Section */
.privacy-section {
  padding: 0 24px 100px;
}

.privacy-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px 56px;
}

.privacy-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.privacy-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.privacy-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.priv-pill {
  font-size: 0.82rem;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--success);
  font-weight: 500;
}

/* Browser Compat Section */
.compat-section {
  padding: 0 24px 100px;
}

.compat-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.compat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 40px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.compat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--text-main);
}

.status-badge {
  font-size: 0.65rem;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.status-available {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-soon {
  background: rgba(59, 130, 246, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 110px;
    padding-bottom: 60px;
    gap: 40px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .privacy-badge {
    justify-content: center;
  }

  .workflow {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 60px;
    gap: 50px;
  }

  .workflow-content h2 {
    font-size: 2.4rem;
  }

  .step {
    text-align: left;
  }

  .workflow-image {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }

  .features-section {
    padding: 70px 24px;
  }

  .section-title h2 {
    font-size: 2.4rem;
  }

  .privacy-inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 28px;
  }

  .privacy-pills {
    justify-content: center;
  }

  .stats-bar {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 0 20px;
  }
}

/* ── Mobile (≤ 600px) ── */
@media (max-width: 600px) {
  html {
    zoom: 1;
  }

  /* Navbar */
  .navbar {
    padding: 14px 0;
  }

  .nav-links {
    display: none;
  }

  .navbar .btn {
    display: none;
  }

  .logo {
    font-size: 1.05rem;
  }

  /* Hero */
  .hero {
    padding: 90px 16px 50px;
    gap: 36px;
  }

  .hero-title {
    font-size: 2.4rem;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
  }

  .floating-pill {
    display: none;
  }

  /* Mockup */
  .hero-mockup {
    margin: 0 auto;
    max-width: 340px;
    width: 100%;
  }

  .mockup-body {
    padding: 20px 12px;
  }

  .mockup-body h2 {
    font-size: 1.4rem;
  }

  .mockup-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  /* Stats */
  .stats-bar {
    padding: 16px;
    margin-bottom: 50px;
    border-radius: 14px;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  .stat-item {
    padding: 8px 16px;
  }

  /* Features */
  .features-section {
    padding: 50px 16px;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .section-title p {
    font-size: 1rem;
  }

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

  .feature-card {
    padding: 22px;
  }

  /* Categories */
  .categories-section {
    padding: 0 16px 60px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-card {
    padding: 20px;
  }

  /* How it works */
  .workflow {
    padding: 50px 16px;
    gap: 36px;
  }

  .workflow-content h2 {
    font-size: 2rem;
    margin-bottom: 28px;
  }

  .step-container {
    gap: 22px;
  }

  .step h4 {
    font-size: 1.05rem;
  }

  .workflow-image {
    max-width: 100%;
    padding: 16px;
  }

  .app-mockup {
    padding: 16px;
  }

  /* Privacy */
  .privacy-section {
    padding: 0 16px 60px;
  }

  .privacy-inner {
    padding: 28px 20px;
    gap: 20px;
  }

  .privacy-text h2 {
    font-size: 1.6rem;
  }

  .privacy-text p {
    font-size: 0.9rem;
  }

  .privacy-icon {
    width: 70px;
    height: 70px;
  }

  /* Compat */
  .compat-section {
    padding: 0 16px 60px;
  }

  .compat-card {
    padding: 20px 28px;
  }

  /* Footer */
  .app-footer {
    padding: 40px 16px;
    margin-top: 30px;
  }

  .footer-title {
    font-size: 1.1rem;
  }
}