/* M3IOX 3D Universe - Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

:root {
  --primary: #00ffff;
  --secondary: #ff006e;
  --accent: #8338ec;
  --highlight: #06ffa5;
  --text: #ffffff;
  --bg-base: #000000;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg-base);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  transition: background 3s ease;
}

/* Custom Cursor */
.cursor {
  width: 20px; height: 20px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transition: transform 0.2s ease;
}

.cursor-trail {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

#webgl-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.content { position: relative; z-index: 1; }

/* Weather Widget */
.weather-widget {
  position: fixed;
  top: 7rem;
  right: 2rem;
  z-index: 99;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 1.5rem;
  width: 320px;
  transition: all 0.5s ease;
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.weather-widget.collapsed {
  width: 60px;
  padding: 1rem;
  cursor: pointer;
}

.weather-widget.collapsed .weather-current,
.weather-widget.collapsed .weather-details,
.weather-widget.collapsed .forecast-title,
.weather-widget.collapsed .forecast-list,
.weather-widget.collapsed .weather-header div:first-child {
  display: none;
}

.weather-toggle {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary);
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.weather-toggle:hover { background: var(--primary); color: var(--bg-base); }

.weather-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  padding-right: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: move;
  user-select: none;
}

.weather-location {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.weather-location::before {
  content: '⋮⋮';
  margin-right: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  letter-spacing: -2px;
}

.weather-time {
  font-size: 0.75rem;
  color: var(--primary);
  font-family: 'JetBrains Mono', monospace;
  transition: color 1s ease;
}

.weather-current {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.weather-icon {
  font-size: 4rem;
  filter: drop-shadow(0 0 20px var(--primary));
  transition: filter 1s ease;
}

.weather-temp {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
}

.weather-temp small {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
}

.weather-condition {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.25rem;
}

.weather-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.weather-detail {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem;
  border-radius: 8px;
}

.weather-detail-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.weather-detail-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  font-family: 'JetBrains Mono', monospace;
  transition: color 1s ease;
}

.forecast-title {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.forecast-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.forecast-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.forecast-day:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.forecast-day-name {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  width: 60px;
}

.forecast-day-icon { font-size: 1.5rem; flex-grow: 1; text-align: center; }

.forecast-day-temp {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 600;
}

.forecast-day-temp .high { color: var(--text); }
.forecast-day-temp .low { color: rgba(255, 255, 255, 0.5); margin-left: 0.5rem; }

/* Scene Indicator */
.scene-indicator {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 99;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.scene-indicator-dot {
  width: 10px; height: 10px;
  background: var(--highlight);
  border-radius: 50%;
  animation: pulse 2s infinite;
  transition: background 1s ease;
}

.scene-indicator-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}

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

/* Navigation */
nav {
  position: fixed;
  top: 0; width: 100%;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 100%);
  backdrop-filter: blur(15px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 44px; height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px var(--primary));
  transition: filter 1s ease;
}

.logo-text { display: flex; flex-direction: column; }

.logo-text .name {
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}

.logo-text .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
  transition: color 1s ease;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s;
}

.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s, background 1s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 0.6rem 1.5rem;
  background: var(--primary);
  color: var(--bg-base) !important;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s, background 1s ease;
}

.nav-cta:hover { transform: translateY(-2px); }
.nav-cta::after { display: none; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero-content { position: relative; z-index: 2; max-width: 1200px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  animation: fadeInDown 1s ease-out;
  transition: border-color 1s ease;
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--highlight);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  color: var(--text);
  text-shadow: 0 0 60px var(--primary);
  animation: fadeInUp 1s ease-out 0.2s both;
  transition: text-shadow 1s ease;
}

.hero h1 em {
  font-style: italic;
  color: var(--primary);
  font-weight: 300;
  transition: color 1s ease;
}

.hero .subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.5;
  animation: fadeInUp 1s ease-out 0.4s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero .subtitle span {
  color: var(--primary);
  font-weight: 600;
  transition: color 1s ease;
}

.cta-container {
  display: flex; gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-btn {
  padding: 1.2rem 3rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  font-family: 'Space Grotesk', sans-serif;
  display: inline-block;
}

.cta-primary {
  background: var(--primary);
  color: var(--bg-base);
  box-shadow: 0 0 40px var(--primary);
  transition: all 0.4s, background 1s ease, box-shadow 1s ease;
}

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

.cta-primary:hover::before { left: 100%; }
.cta-primary:hover { transform: translateY(-5px); }

.cta-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--primary);
  transition: all 0.4s, border-color 1s ease;
}

.cta-secondary::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 100%;
  background: var(--primary);
  transition: width 0.4s;
  z-index: -1;
}

.cta-secondary:hover::before { width: 100%; }
.cta-secondary:hover { color: var(--bg-base); transform: translateY(-5px); }

/* Sections */
.section {
  min-height: 70vh;
  padding: 8rem 2rem;
  position: relative;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
  transition: color 1s ease;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.section-title em {
  font-style: italic;
  color: var(--primary);
  font-weight: 300;
  transition: color 1s ease;
}

.section-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
}

.card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: none;
  backdrop-filter: blur(20px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(0, 255, 255, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

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

.card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 30px 80px rgba(0, 255, 255, 0.3);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px var(--primary));
  transition: filter 1s ease;
}

.card-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid var(--primary);
  border-radius: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: all 1s ease;
}

.card-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.card-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.card-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.card-features li {
  padding: 0.6rem 0;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.card-features li::before {
  content: '▹';
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: color 1s ease;
}

.card-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.stat { text-align: center; }

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  font-family: 'JetBrains Mono', monospace;
  transition: color 1s ease;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid var(--primary);
  border-radius: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s, border-color 1s ease, color 1s ease;
}

.card-link:hover {
  background: var(--primary);
  color: var(--bg-base);
  transform: translateX(5px);
}

.card-link::after { content: '→'; transition: transform 0.3s; }
.card-link:hover::after { transform: translateX(5px); }

/* Pricing Cards */
.pricing-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: none;
  backdrop-filter: blur(20px);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 30px 80px rgba(0, 255, 255, 0.3);
}

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(131, 56, 236, 0.15), rgba(0, 0, 0, 0.6));
}

.pricing-card.featured:hover { transform: scale(1.08) translateY(-10px); }

.pricing-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: var(--accent);
  border-radius: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'JetBrains Mono', monospace;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1;
  transition: color 1s ease;
}

.pricing-price small {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.pricing-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.6rem 0;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--highlight);
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: color 1s ease;
}

/* Footer */
.footer {
  padding: 5rem 2rem 3rem;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: left;
}

.footer-col h4 {
  color: var(--primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  transition: color 1s ease;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--primary); }

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

.footer-social {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social h4 {
  color: var(--primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  transition: color 1s ease;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg-base);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile menu toggle */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: none;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.8rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .weather-widget { width: 280px; }
  .hero h1 { font-size: 4rem; }
}

/* PWA Install Button */
.pwa-install-prompt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 98;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.4);
  display: none;
  align-items: center;
  gap: 1rem;
  animation: slideInUp 0.5s ease-out;
  max-width: 320px;
}

.pwa-install-prompt.show {
  display: flex;
}

.pwa-install-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.pwa-install-content {
  flex-grow: 1;
}

.pwa-install-title {
  font-weight: 700;
  color: var(--bg-base);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.pwa-install-desc {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.7);
}

.pwa-install-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pwa-install-btn {
  padding: 0.6rem 1.2rem;
  background: var(--bg-base);
  color: var(--primary);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: none;
  transition: all 0.3s;
  font-family: 'Space Grotesk', sans-serif;
  white-space: nowrap;
}

.pwa-install-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pwa-dismiss-btn {
  background: transparent;
  color: var(--bg-base);
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
}

@keyframes slideInUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  nav { padding: 1rem; }
  .hero { padding: 7rem 1rem 3rem; }
  .hero h1 { font-size: 3rem; }
  .cta-container { flex-direction: column; width: 100%; }
  .cta-btn { width: 100%; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }
  .nav-links.open { display: flex; }
  .mobile-menu-btn { display: block; }
  .logo-text .tag { display: none; }
  .card-stats { grid-template-columns: 1fr; }
  .weather-widget {
    top: auto;
    bottom: 5rem;
    right: 1rem;
    width: 280px;
  }
  .scene-indicator {
    bottom: 1rem;
    left: 1rem;
    padding: 0.6rem 1rem;
  }
  .scene-indicator-text { font-size: 0.7rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  /* PWA Install on mobile */
  .pwa-install-prompt {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
    flex-direction: column;
    text-align: center;
  }
  
  .pwa-install-actions {
    width: 100%;
  }
  
  .pwa-install-btn {
    width: 100%;
  }
}
