* { box-sizing: border-box; }
:root {
  --bg: #ffffff;
  --fg: #0b0f19;
  --muted: #64748b;
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --card: #ffffff;
  --card-border: rgba(15, 23, 42, 0.08);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius: 16px;
  --border-radius-lg: 24px;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--fg);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
html { scroll-behavior: smooth; }

/* Background canvas */
#bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    width: 95vw;
    padding: 0 16px;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  z-index: 100;
  padding: 12px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  width: 100%;
  max-width: 1200px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--fg);
  z-index: 102;
}
.brand-name {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.logo-img {
  height: 32px;
  width: auto;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 102;
  transition: all 300ms ease;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 300ms ease;
  transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation - Desktop Default */
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.nav-link {
  color: var(--fg);
  text-decoration: none;
  font-weight: 500;
  transition: color 140ms ease;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  background: var(--card);
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: var(--shadow);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn.primary {
  background: var(--accent);
  color: white;
  border: 2px solid var(--accent);
}
.btn.primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  box-shadow: var(--shadow-xl);
}
.btn.ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn.ghost:hover { 
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-3px);
}

/* Cosmic Particle Animation */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background:
    radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 45% 55%, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  animation: cosmicFlow 16s ease-in-out infinite;
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background:
    linear-gradient(135deg, transparent 0%, rgba(37, 99, 235, 0.03) 20%, transparent 40%, rgba(59, 130, 246, 0.03) 60%, transparent 80%, transparent 100%);
  animation: cosmicWaves 20s linear infinite;
  z-index: -1;
  pointer-events: none;
}

/* Optimized purple cosmic orbs */
.hero::before {
  content: '';
  position: fixed;
  top: 18%;
  left: 12%;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 30% 30%, rgba(147, 51, 234, 0.25) 0%, rgba(168, 85, 247, 0.15) 50%, transparent 80%);
  border-radius: 50%;
  animation: purpleCosmicOrb1 14s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
  box-shadow:
    0 0 40px rgba(147, 51, 234, 0.3),
    inset 0 0 40px rgba(168, 85, 247, 0.2);
}

.hero::after {
  content: '';
  position: fixed;
  top: 72%;
  right: 10%;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 70% 30%, rgba(168, 85, 247, 0.22) 0%, rgba(147, 51, 234, 0.12) 50%, transparent 80%);
  border-radius: 50%;
  animation: purpleCosmicOrb2 18s ease-in-out infinite reverse;
  z-index: -1;
  pointer-events: none;
  box-shadow:
    0 0 35px rgba(168, 85, 247, 0.25),
    inset 0 0 35px rgba(147, 51, 234, 0.15);
}

/* Optimized purple space rocks */
.site-header::before {
  content: '';
  position: fixed;
  top: 25%;
  right: 20%;
  width: 30px;
  height: 30px;
  background: radial-gradient(ellipse at 30% 30%, rgba(120, 80, 140, 0.25) 0%, rgba(90, 60, 110, 0.15) 60%, transparent 80%);
  border-radius: 50% 40% 60% 30%;
  animation: purpleSpaceRock1 45s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
  box-shadow: 0 0 15px rgba(120, 80, 140, 0.15);
}

.site-header::after {
  content: '';
  position: fixed;
  bottom: 30%;
  left: 15%;
  width: 25px;
  height: 25px;
  background: radial-gradient(ellipse at 70% 30%, rgba(110, 70, 130, 0.2) 0%, rgba(80, 50, 100, 0.12) 60%, transparent 80%);
  border-radius: 40% 60% 30% 50%;
  animation: purpleSpaceRock2 50s ease-in-out infinite reverse;
  z-index: -1;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(110, 70, 130, 0.12);
}

/* Optimized purple cosmic particles */
.hero .container::before {
  content: '';
  position: fixed;
  top: 35%;
  left: 8%;
  width: 25px;
  height: 25px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.4) 0%, rgba(147, 51, 234, 0.1) 70%, transparent 100%);
  border-radius: 50%;
  animation: purpleCosmicParticle1 10s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
}

.hero .container::after {
  content: '';
  position: fixed;
  bottom: 28%;
  right: 15%;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, rgba(168, 85, 247, 0.1) 70%, transparent 100%);
  border-radius: 50%;
  animation: purpleCosmicParticle2 13s ease-in-out infinite reverse;
  z-index: -1;
  pointer-events: none;
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.3);
}

/* Optimized purple cosmic core */
.hero .hero-logo::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background:
    radial-gradient(circle at center, transparent 30%, rgba(147, 51, 234, 0.04) 31%, rgba(147, 51, 234, 0.04) 32%, transparent 33%),
    radial-gradient(circle at center, transparent 50%, rgba(168, 85, 247, 0.03) 51%, rgba(168, 85, 247, 0.03) 52%, transparent 53%);
  border-radius: 50%;
  animation: purpleCosmicCore 25s ease-in-out infinite;
  z-index: -2;
  pointer-events: none;
}

/* Optimized purple distant object */
.hero .hero-logo::after {
  content: '';
  position: fixed;
  top: 35%;
  right: 30%;
  width: 50px;
  height: 50px;
  background: radial-gradient(ellipse at 40% 30%, rgba(130, 90, 160, 0.15) 0%, rgba(100, 70, 130, 0.08) 50%, transparent 80%);
  border-radius: 50% 30% 40% 60%;
  animation: purpleDistantObject1 90s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(130, 90, 160, 0.08);
}

/* Optimized purple animation keyframes */
@keyframes purpleSpaceDrift {
  0%, 100% {
    background:
      radial-gradient(ellipse at 20% 30%, rgba(88, 28, 135, 0.6) 0%, rgba(48, 16, 80, 0.4) 30%, transparent 70%),
      radial-gradient(ellipse at 80% 70%, rgba(98, 38, 145, 0.5) 0%, rgba(58, 26, 90, 0.3) 35%, transparent 75%),
      radial-gradient(circle at 40% 40%, rgba(147, 51, 234, 0.02) 0%, transparent 60%),
      radial-gradient(circle at 60% 60%, rgba(168, 85, 247, 0.015) 0%, transparent 70%);
    transform: translateX(0) translateY(0) scale(1);
  }
  33% {
    background:
      radial-gradient(ellipse at 25% 25%, rgba(95, 35, 142, 0.55) 0%, rgba(55, 23, 87, 0.35) 35%, transparent 75%),
      radial-gradient(ellipse at 75% 75%, rgba(105, 45, 152, 0.45) 0%, rgba(65, 33, 97, 0.25) 40%, transparent 80%),
      radial-gradient(circle at 45% 35%, rgba(147, 51, 234, 0.018) 0%, transparent 65%),
      radial-gradient(circle at 55% 65%, rgba(168, 85, 247, 0.013) 0%, transparent 75%);
    transform: translateX(-8px) translateY(-4px) scale(1.015);
  }
  66% {
    background:
      radial-gradient(ellipse at 30% 35%, rgba(92, 32, 138, 0.58) 0%, rgba(52, 20, 83, 0.38) 32%, transparent 72%),
      radial-gradient(ellipse at 70% 65%, rgba(102, 42, 148, 0.48) 0%, rgba(62, 30, 93, 0.28) 37%, transparent 77%),
      radial-gradient(circle at 35% 45%, rgba(147, 51, 234, 0.019) 0%, transparent 62%),
      radial-gradient(circle at 65% 55%, rgba(168, 85, 247, 0.014) 0%, transparent 72%);
    transform: translateX(6px) translateY(-10px) scale(1.01);
  }
}

@keyframes purpleNebulaFlow {
  0%, 100% {
    background:
      radial-gradient(ellipse 600px 300px at 25% 25%, rgba(147, 51, 234, 0.03) 0%, transparent 60%),
      radial-gradient(ellipse 500px 250px at 75% 75%, rgba(168, 85, 247, 0.025) 0%, transparent 65%);
    opacity: 0.5;
    transform: translateX(0) translateY(0);
  }
  50% {
    background:
      radial-gradient(ellipse 650px 350px at 30% 20%, rgba(147, 51, 234, 0.028) 0%, transparent 65%),
      radial-gradient(ellipse 550px 300px at 70% 80%, rgba(168, 85, 247, 0.022) 0%, transparent 70%);
    opacity: 0.7;
    transform: translateX(15px) translateY(-12px);
  }
}

@keyframes purpleStarDrift1 {
  0% {
    transform: translate(0, 0);
    opacity: 0.6;
    box-shadow: 0 0 8px rgba(147, 51, 234, 0.4);
  }
  50% {
    transform: translate(300px, -150px);
    opacity: 0.8;
    box-shadow: 0 0 12px rgba(147, 51, 234, 0.6);
  }
  100% {
    transform: translate(600px, -300px);
    opacity: 0.6;
    box-shadow: 0 0 8px rgba(147, 51, 234, 0.4);
  }
}

@keyframes purpleStarDrift2 {
  0% {
    transform: translate(0, 0);
    opacity: 0.5;
    box-shadow: 0 0 6px rgba(168, 85, 247, 0.35);
  }
  50% {
    transform: translate(-350px, 120px);
    opacity: 0.7;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
  }
  100% {
    transform: translate(-700px, 240px);
    opacity: 0.5;
    box-shadow: 0 0 6px rgba(168, 85, 247, 0.35);
  }
}

@keyframes purpleSpaceRock1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.3;
  }
  33% {
    transform: translate(30px, -40px) rotate(120deg) scale(1.05);
    opacity: 0.5;
  }
  66% {
    transform: translate(-25px, -80px) rotate(240deg) scale(0.95);
    opacity: 0.25;
  }
}

@keyframes purpleSpaceRock2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.25;
  }
  50% {
    transform: translate(-40px, 30px) rotate(-180deg) scale(1.1);
    opacity: 0.4;
  }
}

@keyframes purpleSpaceDust1 {
  0% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: translate(400px, -200px);
    opacity: 0.6;
  }
  100% {
    transform: translate(800px, -400px);
    opacity: 0.3;
  }
}

@keyframes purpleSpaceDust2 {
  0% {
    transform: translate(0, 0);
    opacity: 0.25;
  }
  50% {
    transform: translate(-450px, 150px);
    opacity: 0.5;
  }
  100% {
    transform: translate(-900px, 300px);
    opacity: 0.25;
  }
}

@keyframes purpleCosmicOrb1 {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.7;
    box-shadow:
      0 0 40px rgba(147, 51, 234, 0.3),
      inset 0 0 40px rgba(168, 85, 247, 0.2);
  }
  20% {
    transform: translate(25px, -35px) scale(1.15) rotate(72deg);
    opacity: 0.9;
    box-shadow:
      0 0 60px rgba(147, 51, 234, 0.5),
      inset 0 0 60px rgba(168, 85, 247, 0.3);
  }
  40% {
    transform: translate(-20px, -60px) scale(0.85) rotate(144deg);
    opacity: 0.5;
    box-shadow:
      0 0 30px rgba(147, 51, 234, 0.2),
      inset 0 0 30px rgba(168, 85, 247, 0.1);
  }
  60% {
    transform: translate(35px, -25px) scale(1.1) rotate(216deg);
    opacity: 0.8;
    box-shadow:
      0 0 50px rgba(147, 51, 234, 0.4),
      inset 0 0 50px rgba(168, 85, 247, 0.25);
  }
  80% {
    transform: translate(-15px, -45px) scale(0.9) rotate(288deg);
    opacity: 0.6;
    box-shadow:
      0 0 35px rgba(147, 51, 234, 0.25),
      inset 0 0 35px rgba(168, 85, 247, 0.15);
  }
}

@keyframes purpleCosmicOrb2 {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.6;
    box-shadow:
      0 0 35px rgba(168, 85, 247, 0.25),
      inset 0 0 35px rgba(147, 51, 234, 0.15);
  }
  30% {
    transform: translate(-30px, 25px) scale(1.25) rotate(-90deg);
    opacity: 0.9;
    box-shadow:
      0 0 55px rgba(168, 85, 247, 0.4),
      inset 0 0 55px rgba(147, 51, 234, 0.25);
  }
  60% {
    transform: translate(20px, -40px) scale(0.8) rotate(-180deg);
    opacity: 0.4;
    box-shadow:
      0 0 25px rgba(168, 85, 247, 0.15),
      inset 0 0 25px rgba(147, 51, 234, 0.1);
  }
  90% {
    transform: translate(-25px, 30px) scale(1.15) rotate(-270deg);
    opacity: 0.7;
    box-shadow:
      0 0 45px rgba(168, 85, 247, 0.3),
      inset 0 0 45px rgba(147, 51, 234, 0.2);
  }
}

@keyframes purpleCosmicParticle1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
  }
  25% {
    transform: translate(40px, -50px) scale(1.4);
    opacity: 0.9;
    box-shadow: 0 0 35px rgba(147, 51, 234, 0.6);
  }
  50% {
    transform: translate(-25px, -80px) scale(0.7);
    opacity: 0.3;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.2);
  }
  75% {
    transform: translate(50px, -30px) scale(1.2);
    opacity: 0.7;
    box-shadow: 0 0 28px rgba(147, 51, 234, 0.5);
  }
}

@keyframes purpleCosmicParticle2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
    box-shadow: 0 0 18px rgba(168, 85, 247, 0.3);
  }
  30% {
    transform: translate(-40px, 30px) scale(1.5);
    opacity: 0.8;
    box-shadow: 0 0 32px rgba(168, 85, 247, 0.6);
  }
  60% {
    transform: translate(30px, -45px) scale(0.6);
    opacity: 0.2;
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.15);
  }
  90% {
    transform: translate(-20px, 35px) scale(1.3);
    opacity: 0.6;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
  }
}

@keyframes purpleCosmicCore {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 0.3;
  }
  20% {
    transform: translate(-50%, -50%) scale(1.08) rotate(72deg);
    opacity: 0.6;
  }
  40% {
    transform: translate(-50%, -50%) scale(1.15) rotate(144deg);
    opacity: 0.8;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.05) rotate(216deg);
    opacity: 0.5;
  }
  80% {
    transform: translate(-50%, -50%) scale(1.12) rotate(288deg);
    opacity: 0.7;
  }
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: min(1000px, 92vw);
}
/* Hero logo visibility and centering */
.hero-logo {
  height: 72px;
  width: auto;
  margin: 0 auto 16px;
  display: block;
  filter: brightness(1.2) contrast(1.1);
  opacity: 1;
  z-index: 10;
  position: relative;
}

/* Perfect center alignment for hero content */
.hero {
  position: relative;
  padding: clamp(100px, 16vh, 160px) 0 clamp(80px, 14vh, 120px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 32px;
  width: min(1000px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0;
  font-weight: 900;
  background: linear-gradient(135deg, var(--fg) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  width: 100%;
}

/* Cards */
/* Features section - no background */
.features {
  padding: 80px 0 100px;
  background: transparent;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
/* Cards - solid white only */
.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.card h3 {
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Feature cards with icons */
.feature-card { 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.feature-card .icon {
  width: 64px; 
  height: 64px; 
  border-radius: 20px; 
  display: flex; 
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 2px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
  transition: all 300ms ease;
}
.feature-card:hover .icon {
  transform: scale(1.1) rotateY(10deg);
  box-shadow: 0 12px 48px rgba(37, 99, 235, 0.2);
}
.comparison-card {
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
  border: 2px solid rgba(37, 99, 235, 0.15);
  position: relative;
}
.comparison-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  text-align: left;
}
.feature-list li {
  padding: 4px 0;
  color: var(--muted);
  font-size: 15px;
}

/* Sections */
.section {
  padding: 100px 0 120px;
}
.js-enabled .section.reveal { opacity: 0; transform: translateY(32px); transition: opacity 600ms ease, transform 600ms ease; }
.section.reveal.show { opacity: 1; transform: translateY(0); }
.js-enabled .hero.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.hero.reveal.show { opacity: 1; transform: translateY(0); }
.section-title {
  font-size: clamp(36px, 6vw, 52px);
  letter-spacing: -0.03em;
  margin: 0 0 16px 0;
  text-align: center;
  font-weight: 800;
  color: var(--fg);
}
.section-sub {
  color: var(--muted);
  margin: 0 auto 48px;
  max-width: 640px;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}

/* Trusted by */
/* Trusted section - no background */
.trusted {
  padding: 60px 0;
  background: transparent;
}
.trusted-title { 
  color: var(--muted); 
  font-weight: 600; 
  margin-bottom: 24px; 
  text-align: center;
  font-size: 16px;
}
.trusted-list {
  display: flex; 
  gap: 20px; 
  flex-wrap: wrap; 
  padding: 0; 
  margin: 0; 
  list-style: none;
  justify-content: center;
  align-items: center;
}
/* Trusted list items with icons */
.trusted-list li {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 24px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--fg);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 200ms ease;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
  flex: 0 0 auto;
  height: 64px;
}
.trusted-list li img.trusted-logo {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 1;
}
/* Mobile trusted logos - 3 column grid */
@media (max-width: 768px) {
  .trusted-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 100%;
  }

  .trusted-list li {
    min-width: auto;
    height: auto;
    padding: 12px 8px;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .trusted-list li img.trusted-logo {
    width: 32px;
    height: 32px;
    margin: 0 auto 6px;
    display: block;
    order: -1;
  }
}

/* Extra small mobile - 2 column grid */
@media (max-width: 480px) {
  .trusted-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .trusted-list li {
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .trusted-list li img.trusted-logo {
    width: 28px;
    height: 28px;
    margin: 0 auto 4px;
    display: block;
    order: -1;
  }
}
/* Testimonials section - no background */
.testimonials {
  background: transparent;
  padding: 100px 0;
}
.testimonials-scroll {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonials-scroll::-webkit-scrollbar {
  display: none;
}
/* Testimonial cards - solid white only */
.testimonial-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: all 300ms ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.testimonial-content {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.author-info {
  flex: 1;
}
.author-name {
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.author-title {
  font-size: 14px;
  color: var(--muted);
}

/* Grid layouts */
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 1200px) {
  .grid-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .grid-6 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-card { flex: 0 0 320px; }
}
@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 280px; }
}

/* Work */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
/* Project cards - solid white only */
.project-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.project-card .thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #eef3ff, #ffffff);
  border-bottom: 1px solid var(--card-border);
}
.project-card .meta { padding: 14px 16px 18px; }
.project-card .meta h3 { margin: 0 0 6px 0; }
.project-card .meta p { margin: 0; color: var(--muted); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: start;
}
.about-list { margin: 14px 0 0 0; padding-left: 18px; color: var(--muted); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
/* FAQ Section - Add bottom margin to reduce space before footer */
.faq {
  margin-bottom: 0;
}

/* How It Works */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
/* Steps cards - solid white only */
.steps li {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.steps li:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.step-num {
  width: 56px; 
  height: 56px; 
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  display: flex; 
  align-items: center;
  justify-content: center; 
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.25);
}
.step-body h3 { 
  margin: 0 0 12px 0; 
  font-size: 24px; 
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--fg);
}
.step-body p { 
  margin: 0; 
  color: var(--muted); 
  font-size: 16px;
  line-height: 1.6;
}

/* Footer styles */
/* Footer - no background */
.site-footer {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 40px;
  margin-top: 80px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-brand {
  flex: 1;
  max-width: 400px;
}
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-col h4 {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  transition: color 200ms ease;
}
.footer-col a:hover {
  color: var(--accent);
}
.foot-note {
  color: var(--muted);
  margin: 16px 0 0;
  max-width: 360px;
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
  font-size: 14px;
  color: var(--muted);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-legal a:hover {
  color: var(--accent);
}
@media (max-width: 768px) {
  .site-footer {
    padding: 50px 0 30px;
    margin-top: 60px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-brand .brand {
    justify-content: center;
    margin-bottom: 16px;
  }
  
  .foot-note {
    font-size: 14px;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .footer-links {
    gap: 30px;
    justify-content: center;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-col h4 {
    margin-bottom: 16px;
    font-size: 16px;
  }
  
  .footer-col ul {
    gap: 8px;
  }
  
  .footer-col li a {
    font-size: 14px;
    padding: 8px 0;
    display: block;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
  }
  
  .footer-bottom span {
    font-size: 13px;
  }
  
  .footer-legal {
    gap: 20px;
  }
  
  .footer-legal a {
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .site-footer {
    padding: 40px 0 30px;
    margin-top: 60px;
  }
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}

  .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .referral-content { grid-template-columns: 1fr; gap: 3rem; }
  .referral-stats { flex-direction: column; gap: 1.5rem; }
@media (max-width: 640px) {
  .projects-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(36px, 7vw, 48px); }
  .btn { padding: 12px 20px; font-size: 15px; }
  .faq-list { grid-template-columns: 1fr; }
  .section { padding: 60px 0 80px; }
  .hero { padding: clamp(80px, 12vh, 120px) 0 clamp(60px, 10vh, 80px); }
  .trusted { padding: 40px 0; }
  .features { padding: 60px 0 80px; }
  .pricing { padding: 60px 0 80px; }
  .referral { padding: 60px 0 80px; }
  .shortcuts { padding: 60px 0 80px; }
  .referral-form-container { padding: 2rem; }
  .referral-card h3 { font-size: 1.3rem; }
  .referral-card p { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .referral-link-container { flex-direction: column; gap: 1rem; }
  .referral-link-container input { font-size: 0.85rem; padding: 0.75rem; }
  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.75rem; }
  .share-buttons { flex-direction: column; gap: 0.5rem; }
  .share-btn { width: 100%; padding: 0.75rem; font-size: 0.85rem; }
  .shortcuts-table-container { padding: 1.5rem; }
  .shortcuts-table th,
  .shortcuts-table td { padding: 0.75rem 0.5rem; font-size: 0.85rem; }
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

/* Price cards - solid white only */
.price-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.price-card .card-header {
  margin-bottom: 16px;
  text-align: center;
}

.price-card h3 {
  font-size: 20px;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.price-card .price {
  font-size: 26px;
  font-weight: 700;
  color: var(--fg);
}

.price-card .price .term {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}

.price-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
}

.price-card .card-footer {
  margin-top: auto;
  text-align: center;
}

/* Highlighted Pro Plan */
.price-card.highlight {
  border: 2px solid var(--accent);
  position: relative;
}

.price-card .badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}


/* FAQ Cards */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

/* FAQ cards - solid white only */
.faq-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 0;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--fg);
  line-height: 1.4;
}

.faq-q .toggle {
  color: var(--accent);
  margin-left: 16px;
  font-size: 24px;
  font-weight: 300;
  transition: transform 200ms ease;
}

.faq-q[aria-expanded="true"] .toggle {
  transform: rotate(45deg);
}

.faq-a {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
}

/* Steps/How It Works Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.step-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: transform 140ms ease, box-shadow 140ms ease;
  position: relative;
}

.step-card.small {
  padding: 20px;
  gap: 12px;
}

.step-number {
  background: var(--accent);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  margin-bottom: 8px;
}

.step-icon {
  background: #f0f9ff;
  color: var(--accent);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}

.step-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* Mobile responsiveness for steps */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-card {
    padding: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-card.small {
    padding: 16px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-bottom: 8px;
    margin-right: 0;
  }

  .step-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
    margin-right: 0;
    margin-bottom: 4px;
  }

  .step-content h3 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 14px;
  }
}

/* Legal Pages Styles */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  margin: 40px 0 16px 0;
  padding-top: 20px;
  border-top: 1px solid var(--card-border);
}

.legal-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 16px;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--muted);
}

.legal-content li {
  margin-bottom: 8px;
  font-size: 16px;
}

.legal-content strong {
  color: var(--fg);
  font-weight: 600;
}

/* Authentication Styles */
#auth-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-btn {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
}

.auth-btn:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--border-radius);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-weight: 600;
  color: var(--fg);
  font-size: 14px;
}

.logout-btn {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  transition: all 200ms ease;
}

.logout-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* Auth Modal */
.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.auth-modal-content {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 400px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.auth-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 24px;
}

.auth-modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}

.auth-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 200ms ease;
}

.auth-modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--fg);
}

.auth-modal-body {
  padding: 0 24px 24px;
  text-align: center;
}

.auth-modal-body p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 16px;
}

.auth-google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
}

.auth-google-btn svg {
  flex-shrink: 0;
}

.auth-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-signin-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 8px 0;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--card-border);
}

.auth-divider span {
  background: white;
  padding: 0 16px;
  color: var(--muted);
  font-size: 14px;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  /* Fix header layout for mobile */
  .site-header .container {
    padding: 0 16px;
  }
  
  .brand .logo-img {
    display: none;
  }
  
  .brand {
    justify-content: flex-start;
    margin-right: auto;
  }
  
  .mobile-menu-btn {
    display: flex;
    position: relative;
    z-index: 102;
    order: -1;
    margin-right: 0;
  }
  
  /* Hide desktop navigation */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 300ms ease;
    z-index: 101;
    gap: 0;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 32px;
  }
  
  .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid var(--card-border);
    font-size: 18px;
    font-weight: 600;
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-auth {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  #auth-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .auth-btn, .btn.primary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
  }
  
  .user-menu {
    width: 100%;
    justify-content: space-between;
    padding: 12px 16px;
  }
  
  .user-name {
    display: block;
  }
  
  /* Mobile overlay */
  .mobile-nav-overlay {
    display: block;
  }
  
  /* Mobile hero adjustments */
  .hero {
    padding: clamp(100px, 14vh, 140px) 0 clamp(60px, 10vh, 80px);
    text-align: center;
  }
  
  .hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }

  .hero-logo {
    height: 56px;
    width: auto;
    margin: 0 auto 20px;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 48px);
    text-align: center;
  }

  .hero .sub {
    font-size: 16px;
    max-width: 100%;
    text-align: center;
  }

  .cta {
    flex-direction: row;
    gap: 16px;
    width: 100%;
    align-items: stretch;
    justify-content: center;
  }
  
  .btn {
    width: auto;
    justify-content: center;
    flex: 1;
    max-width: 200px;
  }
  
  /* Mobile cards */
  .grid-6 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card {
    padding: 24px 20px;
  }
  
  .feature-card .icon {
    width: 48px;
    height: 48px;
  }
  
  /* Mobile testimonials */
  .testimonials-scroll {
    padding: 16px 0;
    gap: 16px;
  }
  
  .faq-card {
    padding: 20px;
  }
  
  .faq-q {
    font-size: 16px;
  }
  
  .faq-q .toggle {
    font-size: 20px;
    margin-left: 12px;
  }
  
  .faq-a {
    font-size: 15px;
    margin-top: 12px;
  }
  
  /* Mobile Features */
  .features {
    padding: 50px 0 60px;
  }

  .section-title {
    font-size: clamp(28px, 6vw, 36px);
    margin-bottom: 24px;
  }

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

  .feature-card {
    padding: 24px 20px;
    text-align: center;
  }

  .feature-card .icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
  }

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

  .feature-card p {
    font-size: 15px;
    line-height: 1.5;
  }
  
  /* Mobile steps */
  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .steps li {
    padding: 32px 24px;
  }
  
  /* Mobile auth modal */
  .auth-modal-content {
    margin: 20px;
    width: calc(100% - 40px);
  }
  
  /* Mobile footer */
  .site-footer {
    padding: 40px 0 25px;
    margin-top: 50px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .footer-brand {
    text-align: center;
    max-width: 100%;
  }
  
  .footer-brand .brand {
    justify-content: center;
    margin-bottom: 12px;
  }
  
  .foot-note {
    font-size: 14px;
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.5;
  }
  
  .footer-links {
    justify-content: center;
    gap: 25px;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-col h4 {
    margin-bottom: 12px;
    font-size: 15px;
  }
  
  .footer-col ul {
    gap: 8px;
  }
  
  .footer-col li a {
    font-size: 14px;
    padding: 6px 0;
    display: block;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    margin-top: 25px;
    padding-top: 16px;
    border-top: 1px solid var(--card-border);
  }
  .footer-bottom span {
    font-size: 11px;
  }
  
  .footer-legal a {
    font-size: 10px;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  /* Ensure mobile-first responsive design */
  html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }

  /* Prevent horizontal scrolling */
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  /* Ensure all elements fit within viewport */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-logo {
    height: 52px;
    width: auto;
    margin: 0 auto 18px;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero h1 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .section-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .faq-card {
    padding: 18px;
  }

  .faq-q {
    font-size: 15px;
  }

  .faq-a {
    font-size: 14px;
    margin-top: 10px;
  }

  .site-footer {
    padding: 35px 0 20px;
    margin-top: 40px;
  }

  .footer-content {
    gap: 20px;
    margin-bottom: 20px;
  }

  .footer-brand .brand {
    margin-bottom: 10px;
  }

  .foot-note {
    font-size: 13px;
    max-width: 280px;
  }

  .footer-links {
    gap: 20px;
  }

  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-col li a {
    font-size: 13px;
    padding: 5px 0;
  }

  .footer-bottom {
    gap: 10px;
    margin-top: 20px;
    padding-top: 14px;
  }
  .footer-bottom span {
    font-size: 11px;
  }

  .footer-legal a {
    font-size: 11px;
  }
}

/* Registration Section Styles */
.register {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.register::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.register-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.register-info h2 {
  color: white;
  margin-bottom: 1rem;
}

.register-info .section-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.launch-benefits {
  margin-bottom: 2rem;
}

.launch-benefits h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.countdown-container {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-container h4 {
  color: white;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.2rem;
}

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

.time-unit {
  text-align: center;
}

.time-unit .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.time-unit .label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.register-form-container {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.register-form h3 {
  color: var(--fg);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.register-form p {
  color: var(--muted);
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.register-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.success-message {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.success-content h3 {
  color: var(--fg);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.success-content p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.social-share p {
  color: var(--fg);
  font-weight: 600;
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.share-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Mobile FAQ and Footer Optimizations */
@media (max-width: 768px) {
  /* FAQ Mobile Styles */
  .faq-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-card {
    padding: 20px;
  }

  .faq-q {
    font-size: 16px;
  }

  .faq-q .toggle {
    font-size: 20px;
    margin-left: 12px;
  }

  .faq-a {
    font-size: 15px;
    margin-top: 12px;
    line-height: 1.5;
  }

  /* Footer Mobile Styles */
  .site-footer {
    padding: 40px 0 25px;
    margin-top: 50px;
  }

  .footer-content {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    margin-bottom: 25px;
  }

  .footer-brand {
    text-align: center;
    max-width: 100%;
  }

  .footer-brand .brand {
    justify-content: center;
    margin-bottom: 12px;
  }

  .foot-note {
    font-size: 14px;
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.5;
  }

  .footer-links {
    justify-content: center;
    gap: 25px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h4 {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .footer-col ul {
    gap: 8px;
  }

  .footer-col li a {
    font-size: 14px;
    padding: 6px 0;
    display: block;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    margin-top: 25px;
    padding-top: 16px;
    border-top: 1px solid var(--card-border);
  }

  .footer-bottom span {
    font-size: 12px;
  }

  .footer-legal {
    gap: 16px;
  }

  .footer-legal a {
    font-size: 12px;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .faq-card {
    padding: 18px;
  }

  .faq-q {
    font-size: 15px;
  }

  .faq-a {
    font-size: 14px;
    margin-top: 10px;
  }

  .site-footer {
    padding: 35px 0 20px;
    margin-top: 40px;
  }

  .footer-content {
    gap: 20px;
    margin-bottom: 20px;
  }

  .footer-brand .brand {
    margin-bottom: 10px;
  }

  .foot-note {
    font-size: 13px;
    max-width: 280px;
  }

  .footer-links {
    gap: 20px;
  }

  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-col li a {
    font-size: 13px;
    padding: 5px 0;
  }

  .footer-bottom {
    gap: 10px;
    margin-top: 20px;
    padding-top: 14px;
  }

  .footer-bottom span {
    font-size: 11px;
  }

  .footer-legal {
    gap: 14px;
  }

  .footer-legal a {
    font-size: 11px;
  }
}
/* Mobile responsiveness for registration section */
@media (max-width: 768px) {
  .register-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  
  .register-form-container {
    padding: 2rem;
  }
  
  .register-form h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .register-form p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.25rem;
  }
  
  .form-group input,
  .form-group select {
    padding: 0.875rem;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  
  .checkbox-label {
    font-size: 0.875rem;
    line-height: 1.4;
  }
  
  .register-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .form-note {
    font-size: 0.8rem;
  }
  
  .countdown {
    gap: 0.75rem;
    justify-content: space-between;
  }
  
  .time-unit {
    flex: 1;
    min-width: 60px;
  }
  
  .time-unit .number {
    font-size: 1.8rem;
  }
  
  .time-unit .label {
    font-size: 0.75rem;
  }
  
  .countdown-container {
    padding: 1rem;
    border-radius: 10px;
  }

  .countdown-container h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .countdown {
    gap: 0.25rem;
  }

  .time-unit .number {
    font-size: 1.3rem;
  }

  .time-unit .label {
    font-size: 0.65rem;
    margin-top: 0.2rem;
  }
  
  .share-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .register-info .section-sub {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .launch-benefits h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
  
  .benefits-list {
    gap: 0.5rem;
  }
  
  .benefits-list li {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
  
  .share-btn {
    width: 200px;
  }
}
@media (max-width: 480px) {
  .register-form-container {
    padding: 1.5rem;
    border-radius: 16px;
  }
  .register-form h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .register-form p {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }
  
  .form-group input,
  .form-group select {
    padding: 0.75rem;
    font-size: 0.9rem;
    border-radius: 8px;
  }
  
  .checkbox-label {
    font-size: 0.8rem;
    gap: 0.5rem;
  }
  
  .register-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  
  .form-note {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  
  .site-footer {
    padding: 35px 0 20px;
    margin-top: 40px;
  }
  
  .footer-content {
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .footer-brand .brand {
    margin-bottom: 10px;
  }
  
  .foot-note {
    font-size: 13px;
    max-width: 280px;
  }
  
  .footer-links {
    gap: 20px;
  }
  
  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .footer-col li a {
    font-size: 13px;
    padding: 5px 0;
  }
  
  .footer-bottom {
    gap: 10px;
    margin-top: 20px;
    padding-top: 14px;
  }
  
  .footer-bottom span {
    font-size: 11px;
  }
  
  .footer-legal {
    gap: 14px;
  }
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

/* Price cards - solid white only */
.price-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.price-card .card-header {
  margin-bottom: 16px;
  text-align: center;
}

.price-card h3 {
  font-size: 20px;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.price-card .price {
  font-size: 26px;
  font-weight: 700;
  color: var(--fg);
}

.price-card .price .term {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}

.price-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
}

.price-card .card-footer {
  margin-top: auto;
  text-align: center;
}

/* Highlighted Pro Plan */
.price-card.highlight {
  border: 2px solid var(--accent);
  position: relative;
}

.price-card .badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* Referral Section */
.referral {
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
  position: relative;
}

.referral-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.referral-info h2 {
  color: var(--fg);
  margin-bottom: 1rem;
}

.referral-info .section-sub {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.referral-benefits {
  margin-bottom: 2rem;
}

.referral-benefits h3 {
  color: var(--fg);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.referral-benefits .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.referral-benefits .benefits-list li {
  padding: 0.75rem 0;
  color: var(--muted);
  font-size: 1rem;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.referral-benefits .benefits-list li:last-child {
  border-bottom: none;
}

.referral-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

.referral-form-container {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}

.referral-card h3 {
  color: var(--fg);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  text-align: center;
}

.referral-card p {
  color: var(--muted);
  text-align: center;
  margin-bottom: 2rem;
}

.referral-link-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.referral-link-container input {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  background: #f8fafc;
}

.referral-link-container .btn {
  white-space: nowrap;
}

.social-share p {
  color: var(--fg);
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.share-btn {
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 0.9rem;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.share-btn.email {
  background: var(--accent);
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Shortcuts Table */
.shortcuts-table-container {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  overflow-x: auto;
  margin-top: 2rem;
}

.shortcuts-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.shortcuts-table th,
.shortcuts-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.shortcuts-table th {
  background: #f8fafc;
  font-weight: 700;
  color: var(--fg);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shortcuts-table td {
  color: var(--muted);
  font-size: 0.95rem;
  vertical-align: middle;
}

.shortcuts-table tr:hover {
  background: #f8fafc;
}

.shortcuts-table kbd {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  font-family: 'Inter', monospace;
  color: var(--fg);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.shortcuts-tip {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.shortcuts-tip h3 {
  color: var(--fg);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.shortcuts-tip p {
  color: var(--muted);
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}
