@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700;14..32,800;14..32,900&display=swap');

:root {
  --orange: #FF6B00;
  --black: #000000;
  --white: #FFFFFF;
  --md-default-bg-color: #000000 !important;
  --md-primary-fg-color: #FF6B00 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html, body {
  background: var(--black) !important;
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  overflow-x: hidden;
}

.md-container,
.md-main,
.md-main__inner,
.md-content,
.md-content__inner {
  background: transparent !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.md-header,
.md-footer,
.md-sidebar,
.md-tabs,
.md-search {
  display: none !important;
}

.md-typeset {
  font-size: 1rem;
  color: var(--white);
}

.md-typeset h1 {
  margin: 0 !important;
  border: none !important;
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  position: absolute;
  top: -40%;
  left: -20%;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.18) 0%, transparent 60%);
  filter: blur(100px);
}

.bg-glow-2 {
  position: absolute;
  bottom: -50%;
  right: -25%;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 60%);
  filter: blur(120px);
}

.bg-glow-3 {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
  filter: blur(80px);
}

.hero {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.hero-inner {
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.title {
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: clamp(72px, 15vw, 160px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.05em !important;
  line-height: 1 !important;
  color: var(--white) !important;
  margin: 0 0 28px 0 !important;
  border: none !important;
  user-select: none;
  -webkit-user-select: none;
}

.title span {
  color: var(--orange);
}

.tagline {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.tagline strong {
  color: var(--orange);
  font-weight: 600;
}

.cta-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}

.btn {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  text-decoration: none !important;
  transition: all 150ms ease;
  cursor: pointer;
}

.btn-primary {
  color: var(--black) !important;
  background: var(--orange);
}

.btn-primary:hover {
  background: #FF7A1A;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
  color: var(--black) !important;
}

.btn-glass {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white) !important;
}

.demo-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.demo-frame {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 32px 64px -16px rgba(0, 0, 0, 0.6);
  transition: all 400ms ease;
}

.demo-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  pointer-events: none;
}

.demo-frame:hover {
  transform: translateY(-4px) scale(1.005);
  border-color: rgba(255, 107, 0, 0.25);
  box-shadow:
    0 0 0 1px rgba(255, 107, 0, 0.1) inset,
    0 48px 96px -24px rgba(0, 0, 0, 0.7),
    0 0 100px -30px rgba(255, 107, 0, 0.2);
}

.demo-frame video {
  display: block;
  width: 100%;
  height: auto;
}

.footer {
  position: relative;
  z-index: 10;
  padding: 32px;
  text-align: center;
}

.footer-mark {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.2);
}

.footer-mark span {
  color: rgba(255, 107, 0, 0.4);
}

@media (max-width: 640px) {
  .hero {
    padding: 32px 20px;
  }

  .title {
    font-size: clamp(48px, 18vw, 72px) !important;
    margin-bottom: 16px !important;
  }

  .tagline {
    font-size: 15px;
    margin-bottom: 32px;
    padding: 0 8px;
  }

  .cta-wrap {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }

  .demo-frame {
    border-radius: 8px;
  }
}
