/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ============================================
   CSS VARIABLES - COLOR PALETTE
   ============================================ */
:root {
  --color-primary: #B4F000;
  --color-secondary: #5A6572;
  --color-accent: #E6EDF3;
  --color-background: #14181C;
  --color-text: #E6EDF3;
  --color-error: #FF4D4F;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Roboto:wght@400;500;600;700&display=swap');

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

h3 {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 1rem;
}

small {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
}

/* ============================================
   REUSABLE COMPONENT CLASSES
   ============================================ */

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Section */
.section {
  padding: 3rem 0;
  width: 100%;
}

.section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* Card */
.card {
  background-color: rgba(230, 237, 243, 0.05);
  border: 1px solid rgba(230, 237, 243, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.card:last-child {
  margin-bottom: 0;
}

.card:hover {
  background-color: rgba(230, 237, 243, 0.08);
  border-color: rgba(180, 240, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-background);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #C4FF20;
  transform: translateY(-1px);
}

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

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: rgba(180, 240, 0, 0.1);
  border-color: #C4FF20;
  color: #C4FF20;
}

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

/* ============================================
   LAYOUT COMPONENTS
   ============================================ */

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 0 3rem;
}

.hero .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.hero-statement {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  margin-top: 1.5rem;
}

/* Intro Section */
.intro {
  text-align: center;
}

.intro h2 {
  margin-bottom: 1.5rem;
}

.intro p {
  margin-bottom: 1.25rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
}

.cta-headline {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.cta-final {
  text-align: center;
  background-color: rgba(230, 237, 243, 0.05);
  border-radius: 12px;
  padding: 2rem 0;
}

/* Form Container */
.form-container {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.form-container input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(230, 237, 243, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background-color: rgba(230, 237, 243, 0.05);
  color: var(--color-text);
  transition: all 0.2s ease;
}

.form-container input::placeholder {
  color: rgba(230, 237, 243, 0.5);
}

.form-container input:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: rgba(230, 237, 243, 0.08);
  box-shadow: 0 0 0 3px rgba(180, 240, 0, 0.1);
}

.form-container button,
.form-container .btn-primary {
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-background);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.form-container button:hover,
.form-container .btn-primary:hover {
  background-color: #C4FF20;
  transform: translateY(-1px);
}

.form-container button:active,
.form-container .btn-primary:active {
  transform: translateY(0);
}

.confirm-msg {
  display: none;
  margin-top: 1.25rem;
  padding: 0.875rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-background);
  border-radius: 8px;
  text-align: center;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  font-weight: 500;
}

/* Divider */
.divider {
  max-width: 800px;
  margin: 3rem auto;
  height: 1px;
  background: rgba(230, 237, 243, 0.2);
}

/* Feature Cards */
.card.feature {
  margin-bottom: 1.5rem !important;
}

.feature h3 {
  margin-bottom: 0.75rem;
}

.feature p {
  color: rgba(230, 237, 243, 0.8);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Testimonials */
.testimonials {
  margin-top: 2rem;
}

.testimonials blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-primary);
}

.testimonials cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-style: normal;
  color: rgba(230, 237, 243, 0.6);
}

/* Product Showcase */
.product-showcase {
  margin-top: 3rem;
  text-align: center;
}

.product-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(180, 240, 0, 0.2);
  transition: all 0.4s ease;
}

.product-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(180, 240, 0, 0.15);
  border-color: rgba(180, 240, 0, 0.4);
}

/* Two Column Layout */
.two-column-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.column-content {
  flex: 1;
  width: 100%;
}

.column-image {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(180, 240, 0, 0.2);
  transition: all 0.4s ease;
}

.feature-image:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: 0 12px 32px rgba(180, 240, 0, 0.15);
  border-color: rgba(180, 240, 0, 0.4);
}

.feature-iframe {
  width: 100%;
  max-width: 500px;
  min-height: 900px;
  height: 900px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(180, 240, 0, 0.2);
  transition: all 0.4s ease;
  background-color: #14181C;
  display: block;
}

.feature-iframe:hover {
  box-shadow: 0 12px 32px rgba(180, 240, 0, 0.15);
  border-color: rgba(180, 240, 0, 0.4);
}

/* Mobile adjustments for iframe */
@media (max-width: 480px) {
  .feature-iframe {
    height: 700px;
    min-height: 700px;
  }
}

/* View Selector Section */
.view-selector {
  text-align: center;
}

.view-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.view-tab {
  padding: 0.875rem 2rem;
  background-color: rgba(230, 237, 243, 0.05);
  color: var(--color-text);
  border: 2px solid rgba(230, 237, 243, 0.2);
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-tab:hover {
  background-color: rgba(230, 237, 243, 0.08);
  border-color: rgba(180, 240, 0, 0.5);
}

.view-tab.active {
  background-color: var(--color-primary);
  color: var(--color-background);
  border-color: var(--color-primary);
}

.view-content {
  position: relative;
  width: 100%;
  min-height: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.view-panel {
  display: none;
  width: 100%;
  max-width: 1000px;
  justify-content: center;
  align-items: center;
}

.view-panel.active {
  display: flex;
}

.demo-iframe {
  width: 100%;
  max-width: 500px;
  height: 900px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(180, 240, 0, 0.2);
  background-color: #14181C;
}

.demo-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(180, 240, 0, 0.2);
}

/* Compact sections */
.how-it-works,
.social-proof,
.finale {
  padding: 2rem 0;
}

/* Footer */
.footer-tagline {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(230, 237, 243, 0.6);
  font-style: italic;
}

.footer-copyright {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(230, 237, 243, 0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Base styles are mobile-first (375px+) */

/* Tablet and up (768px+) */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 5rem 0 4rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 1.75rem;
  }

  .hero-statement {
    font-size: 1.25rem;
  }

  .section h2 {
    margin-bottom: 3rem;
  }

  .cta-final {
    padding: 3rem 0;
  }

  .form-container {
    flex-wrap: nowrap;
  }

  /* Two column layout for tablets and up */
  .two-column-layout {
    flex-direction: row;
    gap: 3rem;
  }

  .two-column-layout.reverse {
    flex-direction: row-reverse;
  }

  .column-content,
  .column-image {
    flex: 1;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .section {
    padding: 5rem 0;
  }
}

/* ============================================
   HERO SPLIT LAYOUT (demo left, waitlist right)
   ============================================ */

.hero-split {
  text-align: left;
  padding: 3rem 0 2rem;
}

.hero-split .container {
  max-width: 1200px;
}

.hero-split-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.hero-demo-col {
  width: 100%;
}

.hero-view-content {
  width: 100%;
  display: block;
}

.hero-view-content .view-panel {
  display: none;
  width: 100%;
}

.hero-view-content .view-panel.active {
  display: block;
}

.hero-demo-iframe {
  width: 100%;
  max-width: 500px;
  height: 900px;
}

.hero-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.hero-content-col .hero-tagline {
  margin-bottom: 1rem;
}

.hero-content-col .hero-statement {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 0;
}

.hero-statement-sub {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  color: rgba(230, 237, 243, 0.6);
  display: block;
  margin-top: 0.75rem;
}

.hero-cta-box {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--color-primary);
  border-radius: 12px;
  background: rgba(180, 240, 0, 0.05);
  box-shadow: 0 0 24px rgba(180, 240, 0, 0.08);
  width: 100%;
}

.hero-cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.hero-form-container {
  max-width: 100%;
  margin: 0;
}

.hero-why {
  margin-top: 2rem;
}

.hero-why-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(230, 237, 243, 0.4);
  margin-bottom: 1rem;
}

.hero-why-card {
  margin-bottom: 0.75rem !important;
}

.hero-why-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.hero-why-card p {
  font-size: 0.875rem;
  color: rgba(230, 237, 243, 0.6);
  margin-bottom: 0;
}


@media (min-width: 900px) {
  .hero-split {
    padding: 4rem 0 3rem;
  }

  .hero-split-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .hero-demo-col {
    flex: 0 0 auto;
    width: 500px;
  }

  .hero-content-col {
    padding-top: 1.5rem;
  }
}

/* ============================================
   COMPETITOR LOGOS
   ============================================ */

.competitor-logos {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.competitor-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  border-radius: 4px;
}

/* Mobile adjustments (below 480px) */
@media (max-width: 480px) {
  .hero {
    padding: 3rem 0 2rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

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

  .section {
    padding: 2.5rem 0;
  }

  .section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .section h3 {
    font-size: 1.25rem;
  }

  .form-container {
    flex-direction: column;
  }

  .form-container input {
    width: 100%;
    min-width: 100%;
  }

  .form-container button,
  .form-container .btn-primary {
    width: 100%;
  }

  .cta-headline {
    font-size: 1.25rem;
  }

  .divider {
    margin: 2.5rem auto;
  }

  .card {
    padding: 1.25rem;
  }
}
