/* Color Variables - Minimal Dark Theme */
:root {
  --primary: #040404;
  --primary-dark: #000000;
  --primary-light: #0c0c0c;
  --secondary: #00D9C0;
  --secondary-hover: #00FDD6;
  --accent: #ffffff;
  --text: #ffffff;
  --text-muted: #888888;
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.2);
  --card-bg: rgba(255, 255, 255, 0.02);
  --glow: rgba(255, 255, 255, 0.1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--primary);
  background-image:
    radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.02) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(255, 255, 255, 0.01) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 5px;
  border: 2px solid var(--primary-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: #2a2a2a;
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) var(--primary-dark);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(40px) saturate(150%);
  margin: 5% auto;
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: slideDown 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close {
  color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

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

.modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

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

/* Form Styles */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input {
  padding: 0.875rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Checkbox Group */
.form-group-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-group-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--secondary);
}

.form-group-checkbox label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  cursor: pointer;
}

.terms-link {
  color: var(--secondary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.terms-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.submit-button {
  background: transparent;
  color: white;
  border: 1px solid var(--border);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  margin-top: 0.5rem;
}

.submit-button:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.submit-button:active {
  transform: translateY(0);
}

/* Demo Modal Styles */
.close-demo {
  color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.close-demo:hover {
  color: var(--accent);
}

.demo-instructions {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.demo-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.demo-step-number {
  min-width: 40px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.demo-step-content {
  flex: 1;
}

.demo-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.demo-step-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.demo-download-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.demo-download-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.demo-download-btn:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.demo-download-btn:active {
  transform: translateY(0);
}

.demo-download-btn i {
  font-size: 1rem;
}

.demo-note {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.demo-note i {
  color: var(--secondary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.demo-note p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.demo-contact-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.demo-contact-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.demo-mnemonic {
  background: rgba(0, 217, 192, 0.05);
  border: 1px solid rgba(0, 217, 192, 0.3);
  border-radius: 10px;
  padding: 1rem;
  margin-top: 0.5rem;
}

.demo-mnemonic code {
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  color: var(--secondary);
  word-break: break-word;
  line-height: 1.6;
  display: block;
}

.demo-note-warning {
  background: rgba(255, 193, 7, 0.05);
  border-color: rgba(255, 193, 7, 0.3);
}

.demo-note-warning i {
  color: #ffc107;
}

.demo-note-warning strong {
  color: #ffc107;
  font-weight: 600;
}

/* Header Styles */
.header {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header Left - Logo and Text */
.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.logo-image:hover {
  filter: drop-shadow(0 0 3px rgba(46, 46, 46, 0.4)) drop-shadow(0 0 3px rgba(255, 255, 255, 0.08));
}

/* Header Right - Button */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-link {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.header-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.header-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.header-link:hover::after {
  width: 100%;
}

/* GitHub Icon Link */
.github-icon-link {
  font-size: 1.50rem;
  color: var(--text);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.github-icon-link:hover {
  transform: scale(1.1);
}

.demo-button {
  background: white;
  border: 1px solid white;
  padding: 0.75rem 1.5rem;
  color: black;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.demo-button:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
}

.demo-button:active {
  transform: translateY(0);
}

.cta-button {
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.cta-button:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
}

/* Main Content */
main {
  min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
  padding: 6rem 0 4rem;
  background-color: var(--primary);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* Hero Content - Text */
.hero-content {
  text-align: center;
  max-width: 800px;
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-subline {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta-primary {
  background: white;
  color: black;
  border: 1px solid white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.hero-cta-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
}

.hero-cta-primary:active {
  transform: translateY(0);
}

.hero-cta-secondary {
  background: transparent;
  border: 1px solid var(--border);
  padding: 1rem 2rem;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.hero-cta-secondary:active {
  transform: translateY(0);
}

.hero-cta-secondary i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.download-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.75rem;
  text-align: center;
  font-weight: 400;
}

/* Hero Image */
.hero-image {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(109, 109, 109, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(136, 136, 136, 0.384);
}

/* Manual Section */
.manual {
  padding: 5rem 0;
  background-color: var(--primary);
}

.manual-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.manual-header {
  text-align: center;
  margin-bottom: 4rem;
}

.manual-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.manual-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.manual-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.manual-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.manual-step:hover .step-number {
  border-color: var(--border-hover);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.step-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 280px;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--primary);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Features Header */
.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.features-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Feature Card */
.feature-card {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.02);
}

/* Feature Icon */
.feature-icon {
  width: 60px;
  height: 60px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  border-color: var(--border-hover);
}

.feature-icon i {
  font-size: 1.75rem;
  color: var(--text);
}

/* Feature Content */
.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.feature-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Footer Styles */
.footer {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

/* Footer Left Section */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  flex: 1;
}

.footer-logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-logo-image:hover {
  opacity: 1;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin: 0;
}

/* Footer Center Section */
.footer-center {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

/* Footer Right Section */
.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1;
}

.footer-right img {
  display: block;
}

.footer-partner-logo {
  height: 35px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-partner-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-logo-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
}

.footer-link {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container,
  .footer-container,
  .hero-container {
    padding: 0 1rem;
  }


  .demo-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }

  .header-link {
    font-size: 0.9rem;
  }

  .logo-image {
    height: 45px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    align-items: center;
    justify-content: center;
  }

  .footer-center {
    gap: 1.5rem;
    order: 1;
  }

  .footer-left {
    order: 2;
  }

  .footer-right {
    order: 3;
  }

  /* Hero Responsive */
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .hero-subline {
    font-size: 1.1rem;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }

  .hero-container {
    gap: 2rem;
  }

  /* Manual Responsive */
  .manual {
    padding: 4rem 0;
  }

  .manual-container {
    padding: 0 1rem;
  }

  .manual-title {
    font-size: 2rem;
  }

  .manual-description {
    font-size: 1rem;
  }

  .manual-header {
    margin-bottom: 3rem;
  }

  .manual-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Features Responsive */
  .features {
    padding: 4rem 0;
  }

  .features-container {
    padding: 0 1rem;
  }

  .features-title {
    font-size: 2rem;
  }

  .features-description {
    font-size: 1rem;
  }

  .features-header {
    margin-bottom: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Modal Responsive */
  .modal-content {
    padding: 2rem;
    margin: 10% auto;
  }

  .modal-title {
    font-size: 1.75rem;
  }

  .modal-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 500px) {
  .header-left {
    gap: 0.75rem;
  }


  .demo-button {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .header-link {
    font-size: 0.85rem;
  }

  .footer-center {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

  .footer-link {
    font-size: 0.85rem;
  }

  .footer-logo-image {
    height: 32px;
  }

  .footer-partner-logo {
    height: 40px;
  }

  /* Hero Mobile */
  .hero {
    padding: 3rem 0 2rem;
  }

  .hero-headline {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .headline-break {
    display: block;
  }

  .hero-subline {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
  }

  .hero-container {
    gap: 1.5rem;
  }

  /* Manual Mobile */
  .manual {
    padding: 3rem 0;
  }

  .manual-title {
    font-size: 1.75rem;
  }

  .manual-description {
    font-size: 0.95rem;
  }

  .manual-header {
    margin-bottom: 2rem;
  }

  .manual-steps {
    gap: 2rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

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

  .step-text {
    font-size: 0.9rem;
  }

  /* Features Mobile */
  .features {
    padding: 3rem 0;
  }

  .features-title {
    font-size: 1.75rem;
  }

  .features-description {
    font-size: 0.95rem;
  }

  .features-header {
    margin-bottom: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon i {
    font-size: 1.5rem;
  }

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

  .feature-text {
    font-size: 0.9rem;
  }

  /* Modal Mobile */
  .modal-content {
    padding: 1.5rem;
    margin: 15% auto;
    width: 95%;
  }

  .close {
    right: 1.5rem;
    top: 1rem;
    font-size: 1.75rem;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .waitlist-form {
    gap: 1.25rem;
  }

  .form-group input {
    padding: 0.75rem 0.875rem;
    font-size: 0.95rem;
  }

  .submit-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .demo-step {
    gap: 1rem;
  }

  .demo-step-number {
    min-width: 35px;
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }

  .demo-step-title {
    font-size: 1.1rem;
  }

  .demo-step-text {
    font-size: 0.9rem;
  }

  .demo-download-buttons {
    flex-direction: column;
  }

  .demo-download-btn {
    width: 100%;
    justify-content: center;
  }

  .demo-note {
    padding: 0.875rem 1rem;
  }

  .demo-note i {
    font-size: 1.1rem;
  }

  .demo-note p {
    font-size: 0.85rem;
  }

  .demo-mnemonic {
    padding: 0.75rem;
  }

  .demo-mnemonic code {
    font-size: 0.85rem;
  }
}
