/* ============================================
   MotoMate Landing Page - Plain CSS
   ============================================ */

/* CSS Variables (Design Tokens) */
:root {
  /* Colors - Light Mode */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(220, 20%, 15%);
  --card: hsl(0, 0%, 98%);
  --card-foreground: hsl(220, 20%, 15%);
  --primary: hsl(11, 94%, 61%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(220, 10%, 96%);
  --secondary-foreground: hsl(220, 20%, 15%);
  --muted: hsl(220, 10%, 94%);
  --muted-foreground: hsl(220, 10%, 45%);
  --accent: hsl(11, 90%, 65%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(220, 10%, 88%);
  --input: hsl(220, 10%, 92%);
  --ring: hsl(11, 94%, 61%);
  
  /* Typography */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  
  /* Spacing */
  --radius: 0.75rem;
  
  /* Gradients & Shadows */
  --gradient-primary: linear-gradient(135deg, hsl(11, 94%, 45%), hsl(11, 94%, 45%));
  --glow-primary: 0 0 60px hsla(11, 94%, 61%, 0.2);
  --shadow-card: 0 8px 32px hsla(220, 20%, 15%, 0.08);
  --shadow-elevated: 0 20px 60px hsla(220, 20%, 15%, 0.12);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animations */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fade-up {
  animation: fade-up 0.6s ease-out forwards;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-mechanic.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    hsla(0, 0%, 100%, 0.95),
    hsla(0, 0%, 100%, 0.85),
    hsla(0, 0%, 100%, 0.7)
  );
}

.hero-overlay-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    var(--background),
    transparent,
    hsla(0, 0%, 100%, 0.5)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  margin-bottom: 2rem;
}

.logo-img {
  height: 7rem;
  width: auto;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
  animation: float 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .logo-img {
    height: 9rem;
  }
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(11, 94%, 61%, 0.2);
  border: 1px solid hsla(11, 94%, 61%, 0.4);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
}

.badge-icon {
  width: 1rem;
  height: 1rem;
}

/* Hero Title */
.hero-title {
  font-size: 3rem;
  letter-spacing: 0.025em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-sans);
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-hero {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: 0 10px 30px hsla(11, 94%, 61%, 0.3);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px hsla(11, 94%, 61%, 0.4);
}

.btn-hero-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}

.btn-hero-outline:hover {
  background: var(--secondary);
  border-color: var(--primary);
}

/* Hero Stats */
.hero-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .hero-stats {
    gap: 4rem;
  }
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 2.25rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  position: relative;
  padding: 6rem 0;
}

.features-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, hsla(11, 94%, 61%, 0.05), transparent 70%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.section-label {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.25rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.section-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.5s ease;
}

.feature-card:hover {
  border-color: hsla(11, 94%, 61%, 0.5);
  box-shadow: var(--shadow-elevated);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: var(--primary-foreground);
}

.feature-title {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
  position: relative;
  padding: 6rem 0;
  background: hsla(220, 10%, 94%, 0.3);
  overflow: hidden;
}

.how-it-works-bg-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: hsla(11, 94%, 61%, 0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.how-it-works-bg-2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: hsla(11, 94%, 61%, 0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-item {
  position: relative;
}

.step-connector {
  display: none;
}

@media (min-width: 768px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 4rem;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, hsla(11, 94%, 61%, 0.5), hsla(11, 94%, 61%, 0.2));
  }
}

.step-card {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--gradient-primary);
  border-radius: 9999px;
  color: var(--primary-foreground);
  font-family: var(--font-display);
  font-size: 1.125rem;
}

.step-icon-wrapper {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  margin-top: 1rem;
}

.step-icon {
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--primary);
}

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

.step-desc {
  color: var(--muted-foreground);
}

/* ============================================
   TARGET AUDIENCE SECTION
   ============================================ */
.target-audience {
  position: relative;
  padding: 6rem 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.audience-card {
  position: relative;
}

.audience-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsla(11, 94%, 61%, 0.2), transparent);
  border-radius: 1.5rem;
  filter: blur(24px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.audience-card:hover .audience-card-glow {
  opacity: 1;
}

.audience-card-glow-secondary {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsla(11, 94%, 61%, 0.1), transparent);
  border-radius: 1.5rem;
  filter: blur(24px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.audience-card-secondary:hover .audience-card-glow-secondary {
  opacity: 1;
}

.audience-card-inner {
  position: relative;
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  height: 100%;
  transition: border-color 0.5s ease;
}

.audience-card-primary:hover .audience-card-inner {
  border-color: hsla(11, 94%, 61%, 0.5);
}

.audience-card-inner-muted {
  background: hsla(0, 0%, 98%, 0.5);
  border-color: hsla(220, 10%, 88%, 0.5);
}

.audience-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.audience-icon svg {
  width: 2rem;
  height: 2rem;
}

.audience-icon-primary {
  background: var(--gradient-primary);
}

.audience-icon-primary svg {
  stroke: var(--primary-foreground);
}

.audience-icon-secondary {
  background: var(--secondary);
}

.audience-icon-secondary svg {
  stroke: var(--muted-foreground);
}

.audience-label {
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-label-primary {
  color: var(--primary);
}

.audience-label-muted {
  color: var(--muted-foreground);
}

.audience-title {
  font-size: 1.875rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .audience-title {
    font-size: 2.25rem;
  }
}

.audience-title-muted {
  color: var(--muted-foreground);
}

.audience-desc {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audience-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--foreground);
}

.audience-list-muted li {
  color: var(--muted-foreground);
}

.list-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.list-dot-muted {
  background: hsla(220, 10%, 45%, 0.5);
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: hsla(0, 0%, 100%, 0.8);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

.coming-soon-badge {
  padding: 0.75rem 1.5rem;
  background: var(--muted);
  border-radius: 9999px;
  color: var(--muted-foreground);
  font-family: var(--font-display);
  font-size: 1.25rem;
  border: 1px solid var(--border);
}

/* ============================================
   WAITLIST SECTION
   ============================================ */
.waitlist {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.waitlist-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--background), hsla(11, 94%, 61%, 0.05), var(--background));
}

.waitlist-bg-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, hsla(11, 94%, 61%, 0.1), transparent 60%);
}

.waitlist-content {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(11, 94%, 61%, 0.1);
  border: 1px solid hsla(11, 94%, 61%, 0.3);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.waitlist-badge-icon {
  width: 1rem;
  height: 1rem;
}

.waitlist-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .waitlist-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .waitlist-title {
    font-size: 3.75rem;
  }
}

.waitlist-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.highlight {
  color: var(--primary);
  font-weight: 600;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .waitlist-form {
    flex-direction: row;
  }
}

.form-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--background);
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--foreground);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(11, 94%, 61%, 0.1);
}

.waitlist-privacy {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

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

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .footer-logo {
    width: 29%;
  }
}

.footer-logo-img {
  height: 2.5rem;
  width: auto;
}

.footer-copyright {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-link {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

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

.help-block ul{
    color: red;
    font-size: 0.75rem;
    list-style: none;
    text-align: left;
}
