@font-face {
  font-family: "Eyekonsa";
  src: url("font/Eyekonsa.otf") format("opentype");
  font-display: swap;
}

:root {
  --bg: #000;
  --text: #ffffff;
  --glow-primary: #c33bff; /* pink/purple */
  --glow-secondary: #00d1ff; /* cyan */
  --max-width: 1200px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  overflow-y: auto;
  padding-bottom: 100px; /* space for teaser video */
}

/* backdrop and animated vignette removed */

.hero {
  position: relative;
  min-height: 100dvh;
  width: min(92vw, var(--max-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  padding: 10vh 0;
  z-index: 1;
}

.intro {
  display: flex;
  align-items: center; /* centers logo and title vertically */
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
}

.mark {
  position: relative;
  width: clamp(84px, 12vw, 140px);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  animation: none;
}

/* Removed logo aura and keyframe animations */

.title {
  margin: 0;
  line-height: 0.92;
  letter-spacing: 0.02em;
  display: grid;
  font-family: "Eyekonsa", "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: none;
}

.title .row {
  display: block;
  font-size: clamp(36px, 8vw, 84px);
  white-space: nowrap;
}

.title .row:nth-child(2) {
  margin-left: 2px; /* slight offset similar to mock */
}

.headline { max-width: 720px; text-align: left; }
.tagline { margin: 0 0 6px; font-size: clamp(18px, 3vw, 24px); color: #ffffff; font-weight: 600; }
.caption { margin: 0 0 14px; font-size: 14px; color: #b8b8b8; }
.subheading { margin: 12px 0 20px; color: #cfcfcf; font-size: clamp(14px, 2.4vw, 18px); }

.waitlist { display: flex; gap: 10px; align-items: center; }
.card { 
  padding: 16px; 
  border: 1px solid #222; 
  border-radius: 12px; 
  background: #0a0a0a; 
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: #2a2a2a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.waitlist input[type="email"] {
  flex: 1 1 auto;
  min-width: 220px;
  height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  background: #0c0c0c;
  color: #fff;
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.waitlist input[type="email"]:focus {
  outline: none;
  border-color: #4a4a4a;
  background: #111;
}

.waitlist input[type="email"]::placeholder {
  color: #666;
}

.waitlist button {
  height: 44px;
  padding: 0 24px;
  border-radius: 8px;
  border: none;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.waitlist button:hover:not(:disabled) {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.waitlist button:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.waitlist button:disabled { 
  opacity: 0.6; 
  cursor: not-allowed; 
  transform: none;
}

.form-note { margin: 10px 0 0; font-size: 14px; }
.form-note.success { color: #9be49b; }
.form-note.error { color: #ff9b9b; }
.privacy { margin-top: 10px; color: #9a9a9a; font-size: 12px; }

.socials { 
  list-style: none; 
  padding: 12px 0 0; 
  margin: 20px 0 0; 
  display: flex; 
  flex-direction: row;
  flex-wrap: wrap; 
  gap: 8px 10px; 
}

.socials .social { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  height: 28px; 
  padding: 0 12px; 
  border: 1px solid #222; 
  border-radius: 999px; 
  text-decoration: none; 
  color: #eaeaea; 
  background: #0a0a0a; 
  font-size: 11px; 
  transition: all 0.2s ease;
}

.socials .social:hover { 
  background: #121212; 
  border-color: #333;
  transform: translateY(-1px);
}

.link { 
  color: #eaeaea; 
  text-decoration: underline; 
  transition: color 0.2s ease;
}

.link:hover {
  color: #ffffff;
}

/* Footer Design */
.footer {
  width: 100%;
  margin-top: 64px;
  padding: 24px 0 16px;
  border-top: 1px solid #1a1a1a;
  background: #000000;
  position: relative;
  z-index: 10;
}

.footer-content {
  width: min(92vw, var(--max-width));
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 0 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.footer-logo {
  margin: 0;
  font-family: "Eyekonsa", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
}

.footer-tagline {
  margin: 0;
  font-size: 14px;
  color: #9a9a9a;
  line-height: 1.5;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.footer-heading {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links li {
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-bottom {
  width: min(92vw, var(--max-width));
  max-width: 100%;
  margin: 16px auto 0;
  padding: 12px 20px 0;
  border-top: 1px solid #1a1a1a;
  text-align: center;
}

.footer-copyright {
  margin: 0;
  color: #666;
  font-size: 12px;
}

/* Teaser video with positional variants */
.teaser { 
  position: fixed; 
  z-index: -2 !important; 
  pointer-events: none; 
}

/* (no fullscreen background) */

.teaser.pos-bottom-right { 
  right: max(20px, env(safe-area-inset-right)); 
  bottom: calc(16px + env(safe-area-inset-bottom)); 
  left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.teaser.pos-bottom-right .teaser-box { 
  margin-right: 0;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}

.teaser-box { 
  border-radius: 12px; 
  background: transparent; 
  overflow: hidden; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); 
  opacity: 0; 
  transition: transform 520ms cubic-bezier(.22,.61,.36,1), opacity 360ms ease; 
  pointer-events: auto; 
  transform: translateY(140%); 
}

.teaser.show .teaser-box { 
  transform: translateY(0); 
  opacity: 1; 
}

.teaser video { 
  display: block; 
  width: clamp(396px, 39.6vw, 744px); 
  height: auto; 
  object-fit: contain; 
  object-position: center center; 
  background: transparent; 
  outline: none; 
  border: none; 
  max-width: 90vw;
}

/* Align teaser video to the right */
/* Align teaser video to the right */
#teaser-video { 
  margin-left: auto; 
  margin-right: 0;
  width: clamp(396px, 39.6vw, 744px) !important;
  max-width: 90vw !important;
  height: auto;
  display: block;
}

/* Tablet refinements */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
  }
  
  .footer-brand,
  .footer-section {
    width: 100%;
    align-items: center;
  }
  
  .footer-links {
    align-items: center;
  }
}

/* Mobile refinements */
@media (max-width: 640px) {
  body {
    padding-bottom: 80px;
  }
  
  .hero {
    padding: 8vh 0;
    gap: clamp(12px, 4vw, 24px);
  }
  
  .title {
    line-height: 1;
    text-align: center;
  }
  
  /* Make teaser part of the content flow and centered */
  .teaser {
    position: static;
    z-index: auto;
    pointer-events: auto;
    width: 100%;
  }
  .teaser.pos-bottom-right { 
    right: auto; 
    bottom: auto; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
    margin-top: 8px;
  }
  .teaser .teaser-box {
    transform: none;
    opacity: 1;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 6px 30px rgba(0,0,0,0.4);
    border-radius: 12px;
  }
  
  .teaser video { 
    width: 100% !important; 
    max-width: 100% !important;
    height: auto !important;
    opacity: 1;
    border-radius: 12px;
  }
  
  #teaser-video {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* Hide video on very small screens if needed */
  @media (max-width: 480px) {
    .teaser.pos-bottom-right {
      bottom: auto;
      right: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 10px;
    }
    
    .teaser video {
      width: 100% !important;
      max-width: 100% !important;
    }
    
    #teaser-video {
      width: 100% !important;
      max-width: 100% !important;
    }
  }
  
  .intro { 
    gap: 12px; 
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .mark { 
    width: 56px; 
  }
  
  .title .row {
    font-size: clamp(32px, 12vw, 64px);
  }
  
  .headline { 
    max-width: 92vw; 
    text-align: center;
    padding: 0 12px;
  }
  
  .tagline,
  .caption,
  .subheading {
    text-align: center;
  }
  
  .waitlist { 
    flex-direction: column; 
    align-items: stretch; 
    gap: 14px;
  }
  
  .waitlist button { 
    width: 100%; 
    height: 48px;
  }
  
  .waitlist input[type="email"] {
    min-width: 0;
    width: 100%;
    height: 48px;
  }
  
  .socials {
    justify-content: center;
  }
  
  /* Footer mobile */
  .footer {
    margin-top: 48px;
    padding: 20px 0 12px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 20px;
    padding: 0 16px;
    align-items: center;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
    width: 100%;
  }
  
  .footer-section {
    align-items: center;
    width: 100%;
  }
  
  .footer-links {
    align-items: center;
    width: 100%;
  }
  
  .footer-bottom {
    padding: 12px 16px 0;
    margin-top: 12px;
  }
  
  .footer-copyright {
    font-size: 11px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Removed shimmering highlight and sweep animation */


