/* Move By Vision - Static Clone */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

/* Aktiv Grotesk via Adobe Typekit */
@font-face {
  font-family: 'aktiv-grotesk';
  src: local('Aktiv Grotesk'), local('AktivGrotesk');
  font-display: swap;
}

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

:root {
  --accent: rgb(238, 254, 140);
  --white: rgb(255, 255, 255);
  --black: rgb(0, 0, 0);
  --text-primary: rgb(250, 250, 250);
  --font-main: 'aktiv-grotesk', 'Aktiv Grotesk', Arial, sans-serif;
  --font-roboto: 'Roboto', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-main);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  opacity: 0.8;
}

/* ─── HEADER ──────────────────────────────── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.site-header .logo img {
  height: 28px;
  width: auto;
}

.get-in-touch-btn {
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  padding: 8px 20px;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.get-in-touch-btn:hover {
  border-color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

/* ─── HERO SECTION ────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('/images/hero-photo.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-content h1 {
  font-family: var(--font-main);
  font-size: 72px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-waitlist {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 400;
  padding: 14px 40px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.cta-waitlist:hover {
  border-color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.cta-app-link {
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.75;
}

.cta-app-link:hover {
  opacity: 1;
}

.accent-text {
  color: rgb(238, 254, 140);
}

/* ─── HERO TOP NOTICE ─────────────────────── */
.hero-top-notice {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.hero-top-notice a {
  font-family: var(--font-roboto);
  font-size: 14px;
  color: var(--white);
  opacity: 0.9;
}

/* ─── HERO DESCRIPTION ────────────────────── */
.hero-description {
  position: absolute;
  bottom: 96px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 48px;
  z-index: 10;
}

.hero-description p {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── HERO FOOTER ─────────────────────────── */
.hero-footer {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 10;
}

.hero-footer a {
  font-family: var(--font-main);
  font-size: 12px;
  color: var(--white);
  opacity: 0.6;
  letter-spacing: 0.02em;
}

.hero-footer a:hover {
  opacity: 1;
}

/* ─── LEGAL PAGES ─────────────────────────── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}

.legal-page h2 {
  font-family: var(--font-main);
  font-size: 42px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.legal-page .last-updated {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}

.legal-page p,
.legal-page li {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page strong {
  color: var(--white);
  font-weight: 600;
}

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── WAITLIST PAGE ───────────────────────── */
.waitlist-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.waitlist-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

.waitlist-form-container {
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.waitlist-form-container h1 {
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 48px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-field label {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.form-field input[type="text"],
.form-field input[type="email"] {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field input:focus {
  border-color: rgba(255,255,255,0.7);
}

.form-field input::placeholder {
  color: rgba(255,255,255,0.3);
}

.email-field {
  margin-bottom: 16px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
  text-align: left;
}

.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.checkbox-row label {
  font-family: var(--font-main);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  line-height: 1.5;
}

.submit-btn {
  width: 100%;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 768px) {
  .site-header {
    padding: 16px 24px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-description {
    padding: 0 24px;
    bottom: 80px;
  }

  .hero-footer {
    padding: 0 24px;
    bottom: 24px;
  }

  .legal-page {
    padding: 100px 24px 60px;
  }

  .legal-page h2 {
    font-size: 32px;
  }

  .waitlist-form-container h1 {
    font-size: 36px;
  }

  .name-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-header .logo img {
    height: 22px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-footer {
    font-size: 11px;
    gap: 8px;
  }
}
