@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --lp-gold: #ffe14a;
  --lp-cyan: #00f3ff;
  --lp-ink: #050508;
  --lp-white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body.landing {
  font-family: 'Rajdhani', sans-serif;
  background: var(--lp-ink);
  color: var(--lp-white);
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--lp-gold);
  color: #111;
  padding: 0.5rem 1rem;
  z-index: 200;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.hidden {
  display: none !important;
}

.lp-nav-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(5, 5, 10, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 225, 74, 0.18);
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--lp-white);
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.lp-logo-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.lp-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.lp-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.lp-nav a {
  color: #f4f4f4;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.lp-nav a:hover {
  color: var(--lp-gold);
}

.lp-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.5rem 1.25rem 3.5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
  scroll-margin-top: 4.5rem;
}

.lp-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.lp-hero {
  background-image: url('/assets/1.webp');
}

.lp-hero::before {
  background:
    linear-gradient(180deg, rgba(4, 6, 14, 0.55) 0%, rgba(4, 6, 14, 0.78) 100%),
    rgba(0, 0, 0, 0.35);
}

.lp-about {
  background-image: url('/assets/2.webp');
}

.lp-about::before {
  background: rgba(6, 8, 16, 0.82);
  backdrop-filter: brightness(0.45) saturate(0.7);
}

.lp-features {
  background-image: url('/assets/3.webp');
}

.lp-features::before {
  background:
    linear-gradient(180deg, rgba(5, 6, 14, 0.78), rgba(5, 6, 14, 0.84)),
    rgba(0, 0, 0, 0.28);
}

.lp-devices {
  background-image: url('/assets/4.webp');
}

.lp-devices::before {
  background: rgba(4, 10, 22, 0.82);
  backdrop-filter: brightness(0.4) saturate(0.55);
}

.lp-cta {
  background-image: url('/assets/5.webp');
  padding-bottom: 6.5rem;
}

.lp-cta::before {
  background: rgba(4, 6, 14, 0.78);
}

.lp-inner {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  text-align: center;
}

.lp-hero-inner h1,
.lp-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  color: var(--lp-gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.lp-hero-inner h1 {
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.lp-tagline {
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  font-weight: 600;
  max-width: 720px;
  margin: 0 auto 1.75rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.lp-kicker {
  font-family: 'Orbitron', sans-serif;
  color: var(--lp-gold);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.lp-about h2,
.lp-features h2,
.lp-devices h2,
.lp-cta h2 {
  font-size: clamp(1.45rem, 3.4vw, 2.35rem);
  margin-bottom: 0.85rem;
}

.lp-subhead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 760px;
  margin: 0 auto 1.75rem;
  color: #f2f2f2;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.lp-hero-actions,
.lp-devices-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-size: 1.05rem;
}

.lp-btn-primary,
.lp-btn-nav {
  background: #1e90ff;
  color: #fff;
  box-shadow: 0 8px 24px rgba(30, 144, 255, 0.35);
}

.lp-btn-primary:hover,
.lp-btn-nav:hover {
  filter: brightness(1.08);
}

.lp-btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.75);
}

.lp-btn-ghost:hover {
  border-color: var(--lp-gold);
  color: var(--lp-gold);
}

.lp-points {
  list-style: none;
  max-width: 680px;
  margin: 2rem auto 0;
  text-align: left;
  display: grid;
  gap: 1.15rem;
}

.lp-points li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.85rem;
  align-items: start;
  font-size: 1.12rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.lp-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.lp-feature-card {
  background: rgba(8, 10, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.4rem 1.1rem 1.6rem;
  backdrop-filter: blur(6px);
}

.lp-feature-art {
  font-size: 2.4rem;
  margin-bottom: 0.65rem;
}

.lp-feature-card h3 {
  color: var(--lp-gold);
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.lp-device-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  margin: 0.5rem 0 1.5rem;
  width: 100%;
}

.lp-device {
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(0, 243, 255, 0.18), rgba(157, 0, 255, 0.22)),
    #11131c;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.lp-desktop {
  width: min(360px, 48%);
  aspect-ratio: 16 / 10;
}

.lp-tablet {
  width: min(180px, 24%);
  aspect-ratio: 3 / 4;
}

.lp-phone {
  width: min(92px, 14%);
  aspect-ratio: 9 / 19;
  border-radius: 16px;
}

.lp-auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
  text-align: left;
}

.lp-auth-card {
  background: rgba(8, 10, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1.35rem;
  backdrop-filter: blur(8px);
}

.lp-auth-card h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--lp-gold);
  margin-bottom: 1rem;
}

.lp-auth-card form {
  display: grid;
  gap: 0.35rem;
}

.lp-auth-card label {
  font-weight: 700;
  font-size: 0.92rem;
}

.lp-auth-card input,
.lp-auth-card select {
  width: 100%;
  margin-bottom: 0.55rem;
  padding: 0.65rem 0.7rem;
  border-radius: 8px;
  border: 1px solid #2a3148;
  background: #0b0d16;
  color: #fff;
  font: inherit;
}

.lp-auth-card button {
  margin-top: 0.35rem;
  width: 100%;
}

.lp-alert {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(0, 243, 255, 0.16);
  border: 1px solid var(--lp-cyan);
  color: #fff;
}

@media (max-width: 900px) {
  .lp-feature-grid,
  .lp-auth-grid {
    grid-template-columns: 1fr;
  }

  .lp-menu-btn {
    display: flex;
  }

  .lp-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0.75rem;
    left: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    background: rgba(8, 10, 18, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
  }

  .lp-nav.open {
    display: flex;
  }

  .lp-nav a {
    padding: 0.55rem 0.35rem;
  }
}

@media (max-width: 640px) {
  .lp-logo span {
    font-size: 0.72rem;
  }

  .lp-device-row {
    gap: 0.55rem;
  }

  .lp-points li {
    grid-template-columns: 1.8rem 1fr;
  }
}

.lp-footer {
  position: relative;
  z-index: 40;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.25rem 1rem;
  background: rgba(5, 5, 10, 0.92);
  border-top: 1px solid rgba(255, 225, 74, 0.22);
  color: #d4d4d4;
  font-size: 0.92rem;
  text-align: center;
}

.lp-footer-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}

body.landing:not(.legal) {
  padding-bottom: 4.75rem;
}

.lp-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
}

.lp-footer a {
  color: var(--lp-gold);
  text-decoration: none;
  font-weight: 700;
}

.lp-footer a:hover {
  text-decoration: underline;
}

.lp-copyright {
  margin: 0;
  color: #cfcfcf;
  font-size: 0.88rem;
}

body.legal {
  padding-top: 4.5rem;
  background: #070910;
}

.legal-wrap {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto 3rem;
  padding: 2rem 1.4rem 3rem;
  color: #e8e8e8;
}

.legal-wrap h1 {
  font-family: 'Orbitron', sans-serif;
  color: var(--lp-gold);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.4rem;
}

.legal-updated {
  color: #b8b8b8;
  margin-bottom: 1.4rem;
}

.legal-notice {
  border-left: 3px solid var(--lp-gold);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  background: rgba(255, 225, 74, 0.08);
  font-weight: 700;
}

.legal-wrap h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--lp-gold);
  font-size: 1.05rem;
  margin: 1.6rem 0 0.65rem;
  letter-spacing: 0.03em;
}

.legal-wrap p,
.legal-wrap li {
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.legal-wrap ul {
  padding-left: 1.2rem;
  margin-bottom: 0.85rem;
}

.legal-wrap a {
  color: var(--lp-cyan);
}
