:root {
  --bg-1: #05070d;
  --bg-2: #0a1020;
  --bg-3: #0f1830;

  --red: #ff2a61;
  --red-deep: #af1038;
  --blue: #1ea0ff;
  --blue-deep: #0d4f99;

  --text: #f5f8ff;
  --muted: #a2aec7;
  --line: rgba(255, 255, 255, 0.14);

  --mx: 0.5;
  --my: 0.5;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  padding: clamp(14px, 2.4vw, 28px);
  background:
    radial-gradient(1100px 720px at 10% 0%, rgba(255, 42, 97, 0.2), transparent 60%),
    radial-gradient(1000px 760px at 90% 100%, rgba(30, 160, 255, 0.2), transparent 62%),
    linear-gradient(150deg, var(--bg-1), var(--bg-2) 46%, var(--bg-3));
  overflow-x: hidden;
  overflow-y: auto;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bg-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 38%, rgba(0, 0, 0, 0.9), transparent 80%);
}

.bg-noise {
  opacity: 0.05;
  background-image: radial-gradient(#ffffff 0.4px, transparent 0.4px);
  background-size: 3px 3px;
}

.bg-glow {
  background:
    radial-gradient(
      600px 360px at calc(var(--mx) * 100%) calc(var(--my) * 100%),
      rgba(255, 42, 97, 0.16),
      transparent 72%
    ),
    radial-gradient(
      680px 420px at calc((1 - var(--mx)) * 100%) calc((1 - var(--my)) * 100%),
      rgba(30, 160, 255, 0.18),
      transparent 72%
    );
  filter: blur(24px);
}

.topbar {
  position: relative;
  z-index: 3;
  width: min(1120px, 100%);
  margin: 0 auto clamp(10px, 1.4vw, 16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.lang-toggle button {
  min-width: 42px;
  height: 30px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #d9e5ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.lang-toggle button.active {
  background: linear-gradient(90deg, rgba(175, 16, 56, 0.95), rgba(13, 79, 153, 0.95));
  color: #fff;
}

.container {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.hero,
.gallery {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(160deg, rgba(8, 12, 24, 0.82), rgba(11, 17, 32, 0.72));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.025) inset,
    0 16px 54px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(18px, 3.2vw, 34px);
}

.hero-main {
  animation: rise 0.45s ease both;
}

.kicker {
  margin: 0 0 12px;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #bfd6ff;
}

h1 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2rem, 5.1vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.lead {
  margin: 14px 0 0;
  max-width: 62ch;
  color: #dae5fa;
  font-size: clamp(1rem, 1.72vw, 1.15rem);
  line-height: 1.58;
}

.tag-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #d5e2fb;
  background: rgba(255, 255, 255, 0.04);
}

.waitlist-form {
  margin-top: 22px;
}

.waitlist-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

input[type="email"] {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 14px;
  font-size: 0.97rem;
}

input[type="email"]::placeholder {
  color: #8f9db8;
}

input[type="email"]:focus {
  outline: none;
  border-color: rgba(30, 160, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(30, 160, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

button[type="submit"] {
  min-height: 48px;
  border: none;
  border-radius: 12px;
  padding: 0 18px;
  font-weight: 700;
  font-size: 0.94rem;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, var(--red-deep), var(--blue-deep));
}

button[type="submit"]:hover {
  filter: saturate(1.08);
}

button[type="submit"]:disabled {
  opacity: 0.74;
  cursor: not-allowed;
}

.form-message {
  min-height: 20px;
  margin: 10px 2px 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-message[data-state="success"] {
  color: #96ffc6;
}

.form-message[data-state="error"] {
  color: #ff9bb0;
}

.privacy {
  margin: 8px 2px 0;
  color: #96a3be;
  font-size: 0.82rem;
}

.cta-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 10px;
  padding: 0 14px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-primary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(90deg, rgba(175, 16, 56, 0.93), rgba(13, 79, 153, 0.93));
}

.btn-primary:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

.btn-secondary {
  color: #d5e4ff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.hero-side {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  padding: clamp(16px, 2.2vw, 22px);
  animation: rise 0.45s ease 0.07s both;
}

.hero-side h2 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.2rem;
}

.hero-side ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-side li {
  position: relative;
  padding-left: 21px;
  color: #dee7f8;
  line-height: 1.43;
}

.hero-side li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 10px;
}

.meta span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #96a2bd;
}

.meta strong {
  display: block;
  margin-top: 3px;
  font-size: 0.95rem;
  color: #eef4ff;
}

.gallery {
  padding: clamp(14px, 2.4vw, 22px);
}

.gallery-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px 14px;
  margin-bottom: 10px;
}

.gallery-head h2 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.1rem, 2.1vw, 1.4rem);
}

.gallery-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.shot {
  margin: 0;
  border-radius: 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 185px;
  background: #0a1222;
}

.shot-wide {
  min-height: 220px;
}

.shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 680px) {
  .topbar {
    margin-bottom: 10px;
  }

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

  button[type="submit"],
  .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .shot,
  .shot-wide {
    min-height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
