:root {
  --bg-dark: #0A0F1D;
  --bg-gradient: linear-gradient(135deg, #0A0F1D 0%, #1A233A 100%);
  --accent-cyan: #00F0FF;
  --accent-purple: #B026FF;
  --text-primary: #FFFFFF;
  --text-secondary: #A0ABC0;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  background-color: #0A0F1D; /* Fallback matching the deep dark top of gradient */
  background-image: var(--bg-gradient);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 100%;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  min-height: 100%;
}

body {
  font-family: var(--font-main);
  background: transparent;
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Page Wrapper to contain background absolute items and prevent viewport shift overflow */
.page-wrapper {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

@media (hover: hover) {
  a:hover {
    color: var(--accent-purple);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Glassmorphism Utilities */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(to right, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 24px;
}

/* Header */
header {
  padding: 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 0 100px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(176,38,255,0.15) 0%, rgba(0,240,255,0) 70%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin-bottom: 60px;
}

.hero-image img, .hero-image video {
  max-width: 100%;
  width: 400px;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,240,255,0.2);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (hover: hover) {
  .hero-image img:hover, .hero-image video:hover {
    transform: translateY(-10px);
  }
}

/* Form Styles */
.waitlist-form-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 32px;
}

.form-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-secondary);
  opacity: 0.7;
  text-align: center;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.3px;
}

@media (max-width: 600px) {
  .form-group {
    flex-direction: column;
  }
}

input[type="email"] {
  flex: 1;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

input[type="email"]:focus {
  border-color: var(--accent-cyan);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

/* User-driven Form Validation states */
input[type="email"]:user-valid {
  border-color: #00FF87;
  box-shadow: 0 0 15px rgba(0, 255, 135, 0.15);
}

input[type="email"]:user-invalid {
  border-color: #FF0055;
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.15);
}

button {
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

@media (hover: hover) {
  button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(176,38,255,0.3);
  }
}

button:active {
  transform: scale(0.96);
  opacity: 0.9;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.success-message {
  display: none;
  text-align: center;
  padding: 24px;
  border-radius: 16px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--text-primary);
}

.success-message h3 {
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.success-message.visible {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

/* Showcase Section */
.showcase {
  padding: 80px 0 40px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: -40px auto 50px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-items: center;
}

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.showcase-card {
  position: relative;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  max-width: 420px;
  overflow: hidden;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    400px circle at var(--mouse-x) var(--mouse-y),
    rgba(0, 240, 255, 0.08),
    transparent 45%
  );
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .showcase-card:hover::before {
    opacity: 1;
  }
}

.showcase-card > * {
  position: relative;
  z-index: 1;
}

@media (hover: hover) {
  .showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 240, 255, 0.12),
                0 0 60px rgba(176, 38, 255, 0.08);
  }
}

.showcase-card h3 {
  font-size: 1.35rem;
  margin-top: 4px;
  background: linear-gradient(to right, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.phone-frame {
  width: 100%;
  max-width: 280px;
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5),
              inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
  background: #000;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

@media (hover: hover) {
  .showcase-card:hover .phone-frame {
    border-color: rgba(0, 240, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(0, 240, 255, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  }
}

.phone-frame img, .phone-frame video {
  width: 100%;
  height: auto;
  display: block;
}

/* Features Section */
.features {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

@media (hover: hover) {
  .feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
  }
}

.feature-image {
  width: 100%;
  max-width: 250px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.feature-card h3 {
  font-size: 1.5rem;
}

/* Footer */
footer {
  padding: 60px 0 calc(40px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--glass-border);
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (hover: hover) {
  .footer-links a:hover {
    color: var(--text-primary);
  }
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 80px auto;
  padding: 40px;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 32px;
  color: var(--text-primary);
}

.legal-content p {
  margin-bottom: 16px;
}

/* Keyboard Accessibility Focus Indicators */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 4px;
}

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

::-webkit-scrollbar-track {
  background: #060913;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  border-radius: 5px;
  border: 2px solid #060913;
}

@media (hover: hover) {
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  }
}

/* Ambient Floating Blur Orbs with Dynamic Scroll Parallax */
.orb {
  position: absolute;
  z-index: -2;
  pointer-events: none;
  will-change: transform;
  transform: translateY(calc(var(--scroll-y, 0) * var(--parallax-speed, 0.15) * 1px));
}

.orb::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  filter: blur(120px);
  -webkit-filter: blur(120px);
  opacity: 0.3;
}

.orb-1 {
  top: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  --parallax-speed: 0.12;
}

.orb-1::after {
  background: radial-gradient(circle, var(--accent-cyan) 0%, rgba(0, 240, 255, 0) 70%);
  animation: floatOrb 25s infinite alternate ease-in-out;
}

.orb-2 {
  top: 50%;
  right: -10%;
  width: 600px;
  height: 600px;
  --parallax-speed: -0.08; /* Inverse speed for premium 3D layered parallax depth */
}

.orb-2::after {
  background: radial-gradient(circle, var(--accent-purple) 0%, rgba(176, 38, 255, 0) 70%);
  animation: floatOrb 30s infinite alternate-reverse ease-in-out;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, -40px) scale(1.1);
  }
  100% {
    transform: translate(-30px, 50px) scale(0.9);
  }
}

/* Scroll-driven Reveal Transitions */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Two-Column Responsive Desktop Grid (Large Screen Optimizations) */
@media (min-width: 992px) {
  .hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0 140px;
    gap: 40px;
  }
  
  .hero::before {
    top: -10%;
    left: 70%;
    width: 700px;
    height: 700px;
  }
  
  .hero-content {
    max-width: 580px;
    margin-bottom: 0;
  }
  
  .hero-content h1 {
    font-size: 3.75rem;
    line-height: 1.15;
  }
  
  .waitlist-form-container {
    margin: 0; /* Left align on desktop */
  }
  
  .hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
  
  .hero-image img, .hero-image video {
    width: 360px; /* Perfectly sized mockup */
  }
}

/* GPU Hardware Layer Promotion for Silky Smooth Video Playback & Hover */
.hero-image video,
.phone-frame video {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

/* Accessible Motion Safeguards (OS/Browser-level preferences) */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  .showcase-card,
  .showcase-card:hover {
    transform: none !important;
    transition: none !important;
    box-shadow: var(--glass-shadow) !important;
  }
  
  .hero-image img:hover,
  .hero-image video:hover {
    transform: none !important;
    transition: none !important;
  }
  
  .orb {
    transform: none !important;
    --parallax-speed: 0 !important;
  }
  
  .orb::after {
    animation: none !important;
  }
}

/* === PRODUCT HUNT REVIEWS BADGE === */
.ph-badge-container {
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}

.ph-badge-container a {
  display: inline-block;
  line-height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, filter 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ph-badge-container a img {
  display: block;
  width: 250px;
  height: 54px;
}

@media (hover: hover) {
  .ph-badge-container a:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 97, 84, 0.25), 0 0 20px rgba(255, 97, 84, 0.15);
    border-color: rgba(255, 97, 84, 0.3);
  }
}

@media (min-width: 992px) {
  .ph-badge-container {
    margin: 24px 0 0;
    justify-content: flex-start;
  }
}

/* === QUEST ALERT / PRODUCT HUNT REFERRAL TOAST === */
.ph-welcome-banner {
  position: fixed;
  top: 24px;
  right: 24px; /* On-screen alignment anchor */
  width: 380px;
  max-width: calc(100vw - 48px);
  z-index: 1100; /* Stays above header/nav */
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(176, 38, 255, 0.35); /* Neon purple glow border */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6),
              0 0 25px rgba(176, 38, 255, 0.15);
  background: rgba(10, 15, 29, 0.94); /* Rich dark background */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  transform: translateX(calc(100% + 40px)); /* Completely off-screen relative to its dynamic width */
  opacity: 0;
}

.ph-welcome-banner.visible {
  transform: translateX(0);
  opacity: 1;
}

.ph-banner-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 20px 20px 0 0;
}

.ph-welcome-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ph-welcome-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.ph-quest-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 1.5px;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.close-ph-banner {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 24px !important;
  height: 24px !important;
  min-width: unset !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--text-secondary) !important;
  font-size: 1.4rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  line-height: 1 !important;
  transform: none !important;
}

@media (hover: hover) {
  .close-ph-banner:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transform: rotate(90deg) !important;
  }
}

.ph-welcome-body {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ph-avatar-icon {
  font-size: 1.8rem;
  padding: 8px;
  background: rgba(255, 97, 84, 0.1);
  border: 1px solid rgba(255, 97, 84, 0.25);
  border-radius: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 97, 84, 0.1);
}

.ph-welcome-message {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ph-welcome-message h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.ph-welcome-message p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* === INTERACTIVE FAQ ACCORDION === */
.faq {
  padding: 100px 0 60px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px; /* Increased gap for visual breathing room */
}

.faq-card {
  border-radius: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (hover: hover) {
  .faq-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45),
                0 0 20px rgba(0, 240, 255, 0.06);
  }
}

.faq-header {
  /* COMPLETE RESET to override the global button styling bug */
  width: 100% !important;
  background: none !important;
  border: none !important;
  padding: 24px 28px !important;
  border-radius: 0 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  cursor: pointer !important;
  text-align: left !important;
  outline: none !important;
  white-space: normal !important;
  transform: none !important;
  box-shadow: none !important;
  transition: background-color 0.3s ease !important;
}

@media (hover: hover) {
  .faq-header:hover {
    background-color: rgba(255, 255, 255, 0.015) !important;
    box-shadow: none !important;
    transform: none !important;
  }
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-main);
  transition: color 0.3s ease;
  padding-right: 20px;
  line-height: 1.4;
}

@media (hover: hover) {
  .faq-header:hover .faq-question {
    color: var(--accent-cyan);
  }
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-cyan);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.15);
}

@media (hover: hover) {
  .faq-header:hover .faq-icon {
    background: rgba(0, 240, 255, 0.2);
    transform: scale(1.08);
  }
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
  padding: 0 28px 28px;
}

.faq-content p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Accordion Active States */
.faq-card.active {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
              0 0 25px rgba(0, 240, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.faq-card.active .faq-question {
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.25);
}

.faq-card.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(176, 38, 255, 0.15);
  border-color: rgba(176, 38, 255, 0.3);
  color: var(--accent-purple);
}

/* === MOBILE RESPONSIBILITY ADJUSTMENTS === */
@media (max-width: 576px) {
  .ph-welcome-banner {
    top: calc(16px + env(safe-area-inset-top));
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
    transform: translateY(calc(-100% - 30px - env(safe-area-inset-top))); /* Slide down dynamically from top */
    opacity: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  }

  .close-ph-banner {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.6rem !important;
  }

  .hero {
    padding: 30px 0 50px;
  }
  
  .ph-welcome-banner.visible {
    transform: translateY(0);
    opacity: 1;
  }

  .hero-image img, .hero-image video {
    width: 260px; /* Constrain hero size on small devices to prevent height overflow */
    border-radius: 32px; /* Sleeker corner radius for compact size */
  }

  .waitlist-form-container {
    padding: 20px; /* More breathing room for inputs on mobile viewports */
  }

  .faq {
    padding: 60px 0;
  }
  
  .faq-grid {
    gap: 14px;
  }

  .faq-header {
    padding: 20px 22px !important;
  }
  
  .faq-question {
    font-size: 1rem;
    padding-right: 12px;
  }
  
  .faq-icon {
    font-size: 1.3rem;
    width: 24px;
    height: 24px;
  }

  .faq-content {
    padding: 0 22px 22px;
  }
  
  .faq-content p {
    font-size: 0.9rem;
  }
}

/* Tablet viewport adjustments */
@media (max-width: 991px) and (min-width: 577px) {
  .hero-image img, .hero-image video {
    width: 320px; /* Perfectly sized mockup for vertically-stacked tablet layouts */
  }
}
