:root {
  --bg: #ffffff;
  --bg-warm: #fbf9f7;
  --bg-cool: #f7f8fa;
  --bg-tint: #f5f3ff;
  --bg-elevated: #ffffff;
  --separator: #e6e4e0;
  --separator-subtle: rgba(230,228,224,0.4);
  --text-primary: #1a1a1e;
  --text-secondary: #6e6c68;
  --text-tertiary: #9e9c98;
  --accent: #6366f1;
  --accent-soft: rgba(99, 102, 241, 0.08);
  --accent-mid: rgba(99, 102, 241, 0.15);
  --accent-glow: rgba(99, 102, 241, 0.2);
  --accent-gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
  --accent-gradient-2: linear-gradient(135deg, #6366f1, #a78bfa, #c084fc);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.07);
  --nav-bg: rgba(255,255,255,0.75);
  --nav-border: rgba(230,228,224,0.5);
  --card-bg: #ffffff;
  --hero-radial: radial-gradient(circle at 50% 0%, rgba(99,102,241,0.07) 0%, rgba(139,92,246,0.04) 30%, transparent 60%);
  --section-bg-start: #fdfcfb;
  --section-bg-mid: #ffffff;
  --section-bg-end: #fbf9f7;
  --grid-color: rgba(99,102,241,0.07);
  --logo-gradient: linear-gradient(135deg, var(--text-primary), var(--accent));
  --btn-primary-text: #ffffff;
  --btn-secondary-border: var(--separator);
  --btn-secondary-text: var(--text-primary);
  --pill-bg: var(--accent-soft);
  --pill-border: rgba(99,102,241,0.12);
  --pill-text: var(--accent);
  --footer-link-color: var(--text-secondary);
  --backdrop-blur: blur(24px) saturate(1.4);
}

[data-theme="dark"] {
  --bg: #0d0d10;
  --bg-warm: #111114;
  --bg-cool: #131316;
  --bg-tint: #14141a;
  --bg-elevated: #18181d;
  --separator: #2a2a30;
  --separator-subtle: rgba(42,42,48,0.5);
  --text-primary: #efefef;
  --text-secondary: #a0a0a8;
  --text-tertiary: #6b6b73;
  --accent: #818cf8;
  --accent-soft: rgba(129, 140, 248, 0.1);
  --accent-mid: rgba(129, 140, 248, 0.18);
  --accent-glow: rgba(129, 140, 248, 0.25);
  --accent-gradient: linear-gradient(135deg, #818cf8, #a78bfa);
  --accent-gradient-2: linear-gradient(135deg, #818cf8, #a78bfa, #c4b5fd);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.5);
  --nav-bg: rgba(13,13,16,0.8);
  --nav-border: rgba(42,42,48,0.5);
  --card-bg: #18181d;
  --hero-radial: radial-gradient(circle at 50% 0%, rgba(129,140,248,0.08) 0%, rgba(167,139,250,0.04) 30%, transparent 60%);
  --section-bg-start: #0d0d10;
  --section-bg-mid: #0f0f14;
  --section-bg-end: #111114;
  --grid-color: rgba(129,140,248,0.09);
  --logo-gradient: linear-gradient(135deg, var(--text-primary), var(--accent));
  --btn-primary-text: #0d0d10;
  --btn-secondary-border: var(--separator);
  --btn-secondary-text: var(--text-primary);
  --pill-bg: var(--accent-soft);
  --pill-border: rgba(129,140,248,0.15);
  --pill-text: var(--accent);
  --footer-link-color: var(--text-secondary);
  --backdrop-blur: blur(24px) saturate(1.2);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, var(--section-bg-start) 0%, var(--section-bg-mid) 40%, var(--section-bg-end) 100%);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  overflow-wrap: break-word;
  scrollbar-width: thin;
  scrollbar-color: var(--separator) transparent;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}

body::-webkit-scrollbar {
  width: 6px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background: var(--separator);
  border-radius: 3px;
  transition: background 0.2s;
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(0.5deg); }
  66% { transform: translateY(5px) rotate(-0.5deg); }
}

@keyframes gridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  margin-top: 0;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h2 {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 16px;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--accent);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 0;
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

button, a, input, textarea, select {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid var(--nav-border);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.logo {
  flex: 0 0 auto;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.4px;
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--text-primary);
}

#theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1.5px solid var(--separator-subtle);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0;
  flex-shrink: 0;
  position: relative;
}

#theme-toggle:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.05);
}

#theme-toggle:active {
  transform: scale(0.92);
}

#theme-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

#theme-toggle .sun-icon {
  display: block;
}

#theme-toggle .moon-icon {
  display: none;
}

[data-theme="dark"] #theme-toggle .sun-icon {
  display: none;
}

[data-theme="dark"] #theme-toggle .moon-icon {
  display: block;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 36px;
  background: var(--accent);
  color: var(--btn-primary-text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 20px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.primary-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px var(--accent-glow);
  color: var(--btn-primary-text);
}

.primary-btn:hover::before {
  opacity: 1;
}

.primary-btn:active {
  transform: translateY(0) scale(0.97);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 36px;
  background: transparent;
  color: var(--btn-secondary-text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  border: 1.5px solid var(--btn-secondary-border);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  gap: 8px;
  white-space: nowrap;
}

.secondary-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.hero {
  padding: 120px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: gridMove 30s linear infinite;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: var(--hero-radial);
  pointer-events: none;
  z-index: 0;
  animation: float 12s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167,139,250,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: float 15s ease-in-out infinite reverse;
}

.hero > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero h1 {
  max-width: 860px;
  margin: 0 auto 20px;
  animation: fadeUp 0.8s ease forwards;
}

.hero h1 .gradient-text {
  background: var(--accent-gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

.hero-description {
  max-width: 520px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  animation: fadeUp 0.8s ease 0.15s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  animation: fadeUp 0.8s ease 0.4s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 4px;
  font-weight: 400;
}

.hero-image {
  margin-top: 72px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 10px 30px rgba(0,0,0,0.03);
  animation: fadeUp 0.8s ease 0.5s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
  border: 1px solid var(--separator-subtle);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-image:hover img {
  transform: scale(1.02);
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-inspiration {
  background: linear-gradient(180deg, var(--bg), var(--bg-tint), var(--bg));
  transition: background 0.3s ease;
}

.section-header {
  margin-bottom: 48px;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  max-width: 480px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text-secondary);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.showcase-item {
  display: block;
  position: relative;
  background: var(--card-bg);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--separator-subtle);
}

.showcase-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--accent-mid);
}

.showcase-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.showcase-item:hover img {
  transform: scale(1.07);
}

.showcase-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 20px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  backdrop-filter: blur(2px);
}

.demo-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.15) 1%,
    black 1.8%,
    black 98.2%,
    rgba(0,0,0,0.15) 99%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.15) 1%,
    black 1.8%,
    black 98.2%,
    rgba(0,0,0,0.15) 99%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.demo-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}

.demo-slide {
  flex: 0 0 340px;
  display: block;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--separator-subtle);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--text-primary);
}

.demo-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.demo-slide h3 {
  font-size: 16px;
  font-weight: 600;
  padding: 16px 16px 0;
  margin: 0;
}

.demo-btn {
  margin: 12px 16px 16px;
  height: 38px;
  padding: 0 20px;
  font-size: 13px;
  display: inline-flex;
}

.oss {
  text-align: center;
  padding: 120px 0;
  position: relative;
}

.oss::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--separator), transparent);
}

.oss h2 {
  margin-bottom: 12px;
}

.oss p {
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 17px;
  color: var(--text-secondary);
}

.oss-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.site-footer {
  padding: 56px 24px 48px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: var(--footer-link-color);
  position: relative;
  transition: color 0.2s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-copy {
  font-size: 14px;
  color: var(--text-tertiary);
  margin: 0 0 2px;
}

.footer-credit {
  font-size: 14px;
  color: var(--text-tertiary);
  margin: 0;
}

.footer-credit a {
  color: var(--text-tertiary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--separator);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--text-primary);
  text-decoration-color: var(--accent);
}

#back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--separator-subtle);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

#back-to-top:hover {
  background: var(--accent);
  color: var(--btn-primary-text);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--accent-glow);
  border-color: var(--accent);
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--pill-text);
  background: var(--pill-bg);
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid var(--pill-border);
  animation: fadeUp 0.8s ease 0.05s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

#hamburger {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1.5px solid var(--separator-subtle);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}

#hamburger:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

#hamburger svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 860px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 30px;
  }
  .hero {
    padding: 80px 0 0;
    min-height: auto;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-image {
    margin-top: 48px;
    border-radius: var(--radius);
  }
  .hero-stats {
    gap: 32px;
    margin-top: 36px;
  }
  .hero-stat-value {
    font-size: 22px;
  }
  .primary-btn, .secondary-btn {
    height: 46px;
    padding: 0 28px;
    font-size: 14px;
  }
  .section {
    padding: 80px 0;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .demo-slide {
    flex: 0 0 280px;
  }
  .demo-slide img {
    height: 180px;
  }
  .oss {
    padding: 80px 0;
  }
  .site-footer {
    padding: 40px 16px 36px;
  }
  .footer-links {
    gap: 24px;
  }
  nav {
    height: 60px;
    padding: 0 16px;
  }
  .logo {
    font-size: 15px;
  }
  .nav-links {
    gap: 20px;
  }
  .nav-links a {
    font-size: 13px;
  }
  .hero::before {
    background-size: 40px 40px;
  }
}

@media (max-width: 640px) {
  #hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--nav-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    padding: 16px;
    gap: 8px;
    border-bottom: 1px solid var(--nav-border);
    z-index: 99;
    align-items: stretch;
    transform: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
    transition: background 0.15s;
  }

  .nav-links a:hover {
    background: var(--accent-soft);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .container {
    padding: 0 16px;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 26px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .showcase-item img {
    height: 200px;
  }
  .demo-carousel {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0,0,0,0.12) 1%,
      black 2%,
      black 98%,
      rgba(0,0,0,0.12) 99%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0,0,0,0.12) 1%,
      black 2%,
      black 98%,
      rgba(0,0,0,0.12) 99%,
      transparent 100%
    );
  }
  .demo-slide {
    flex: 0 0 calc(100vw - 32px);
  }
  .demo-slide img {
    height: 200px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    width: 100%;
    max-width: 320px;
  }
  .oss-actions {
    flex-direction: column;
    align-items: center;
  }
  .oss-actions .primary-btn,
  .oss-actions .secondary-btn {
    width: 100%;
    max-width: 320px;
  }
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 28px;
  }
  .hero-stat-value {
    font-size: 20px;
  }
  .hero-stat {
    flex: 0 0 calc(50% - 12px);
  }
}
