/* --- TOP BRAND BAR --- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 0 4px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  user-select: none;
  margin-top: 8px;
}

.brand__icon {
  width: 336px;
  max-width: 70vw;
  height: auto;
  aspect-ratio: 783 / 198;
  border-radius: 10px;
}

.brand__name {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: #e5e7eb;
  opacity: 0.9;
}

:root {
  --primary: #00f2ff;
  --accent: #ff0055;
  --bg: #0f172a;
  --glass: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--bg);
  color: white;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  background: radial-gradient(circle at top left, #1e293b, #0f172a);
  padding: 24px 0 40px;
}

.blob {
  position: absolute;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.3;
  pointer-events: none;
}
.blob-1 {
  top: 0%;
  left: 0%;
  width: 500px;
  height: 500px;
  background: purple;
}
.blob-2 {
  bottom: 0%;
  right: 0%;
  width: 400px;
  height: 400px;
  background: #0044ff;
}

.container {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 1.8rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* --- HERO --- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    text-align: left;
  }
  .hero-content {
    flex: 1.2;
  }
  .hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
  }
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 242, 255, 0.1);
  color: var(--primary);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 242, 255, 0.2);
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h1 span {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

.subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
}

/* --- FORM --- */
.form-group {
  display: flex;
  gap: 12px;
  max-width: 500px;
  width: 100%;
}
input[type="email"] {
  flex: 1;
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}
input[type="email"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

button {
  padding: 1.2rem 2rem;
  border-radius: 16px;
  border: none;
  background: var(--primary);
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
}
button:hover {
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.5);
  transform: translateY(-2px);
}

.waifu-img {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(0 0 40px rgba(0, 242, 255, 0.25));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* --- FEATURES --- */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 4rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 900px) {
  .feature-item {
    flex-direction: row;
    text-align: left;
  }
  .feature-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .feature-text {
    flex: 1;
  }
  .feature-preview {
    flex: 1.2;
  }
}

.feature-text h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.feature-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.feature-text ul {
  list-style: none;
  color: #94a3b8;
}

.feature-text ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-text ul li::before {
  content: "→";
  color: var(--primary);
}

.feature-preview {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 24px;
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* VIDEO STYLING */
.feature-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* --- RAW PROGRESS (DEV LOG) --- */
.dev-log {
  text-align: center;
}
.dev-log h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.dev-log p.dev-desc {
  color: #64748b;
  margin-bottom: 3rem;
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.screenshot-item {
  background: #000;
  border-radius: 16px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.screenshot-item video,
.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: 0.5s;
}
.screenshot-item:hover video,
.screenshot-item:hover img {
  opacity: 0.9;
  transform: scale(1.05);
}
.screenshot-item span {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 11px;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
}

.footer {
  text-align: center;
  font-size: 0.9rem;
  color: #475569;
  margin-top: 3rem;
  line-height: 2;
}
.footer strong {
  color: #64748b;
}
