/* AFTER DARK — neon after-hours sign. Near-black, hot-pink glow,
   a flirty script, floating hearts. Syne + Allura over Outfit. */

:root {
  --bg: #08040d;
  --bg-2: #120618;
  --pink: #ff2e72;
  --magenta: #ff5db0;
  --glow: #ff8fc7;
  --cream: #ffeaf3;
  --muted: #b98aa7;
  --disp: "Syne", system-ui, sans-serif;
  --script: "Allura", cursive;
  --sans: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans); font-weight: 300; color: var(--cream);
  background-color: var(--bg);
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(255, 46, 114, 0.32), transparent 60%),
    radial-gradient(60% 50% at 90% 100%, rgba(255, 93, 176, 0.2), transparent 60%),
    linear-gradient(160deg, var(--bg), var(--bg-2));
  background-attachment: fixed; min-height: 100vh; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* floating hearts */
.hearts { position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hearts span {
  position: absolute; bottom: -40px; color: var(--magenta); opacity: 0;
  text-shadow: 0 0 12px var(--pink); animation: rise-heart linear infinite;
}
@keyframes rise-heart {
  0% { transform: translateY(0) rotate(0); opacity: 0; }
  12% { opacity: 0.7; }
  88% { opacity: 0.35; }
  100% { transform: translateY(-112vh) rotate(200deg); opacity: 0; }
}

.bar {
  position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between;
  padding: 24px clamp(22px, 6vw, 70px);
}
.wordmark { font-family: var(--disp); font-weight: 800; letter-spacing: 0.12em; color: var(--cream); }
.bar-meta { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

main { position: relative; z-index: 2; }
section { padding: clamp(60px, 11vh, 130px) clamp(22px, 6vw, 70px); }

.kick {
  font-family: var(--sans); font-size: 0.9rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
}
.kick-pink { color: var(--glow); text-align: center; }

/* neon headline */
.neon {
  font-family: var(--disp); font-weight: 800; line-height: 0.92; letter-spacing: 0.01em;
  font-size: clamp(3rem, 14vw, 9rem); color: #fff;
  text-shadow:
    0 0 6px #fff, 0 0 14px var(--magenta), 0 0 30px var(--pink),
    0 0 60px var(--pink), 0 0 100px rgba(255, 46, 114, 0.6);
  animation: flicker 6s infinite;
}
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.72; }
}
.neon-sm {
  font-size: clamp(1.7rem, 5vw, 2.8rem); animation: none;
  text-shadow: 0 0 5px #fff, 0 0 12px var(--magenta), 0 0 26px var(--pink);
}

.script {
  font-family: var(--script); color: var(--glow);
  font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1; margin: 6px 0 4px;
  text-shadow: 0 0 18px rgba(255, 143, 199, 0.6);
}
.script-sm { font-size: clamp(1.6rem, 4vw, 2.2rem); }

/* hero — night-city lights glowing behind the neon headline */
.hero { position: relative; overflow: hidden; }
.hero-inner { position: relative; z-index: 2; max-width: 1000px; }
.hero-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-color: var(--bg);
  background-image:
    linear-gradient(160deg, rgba(8, 4, 13, 0.78), rgba(18, 6, 24, 0.55) 55%, rgba(8, 4, 13, 0.95)),
    url("https://images.unsplash.com/photo-1514474959185-1472d4c4e0d4?auto=format&fit=crop&w=1600&q=70");
  background-size: cover; background-position: center;
  mix-blend-mode: screen; opacity: 0.55;
}
.hero .neon { margin: 8px 0; }
.essence {
  font-size: clamp(1.1rem, 2.4vw, 1.45rem); color: var(--cream); font-weight: 300;
  max-width: 34ch; opacity: 0.9; margin: 22px 0 34px;
}
.cta {
  display: inline-block; font-family: var(--disp); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bg);
  background: var(--pink); padding: 15px 30px; border-radius: 999px;
  box-shadow: 0 0 24px rgba(255, 46, 114, 0.7); transition: transform 0.15s, box-shadow 0.2s;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(255, 46, 114, 0.9); }

/* fleet — neon-edged cards */
.fleet-band { border-top: 1px solid rgba(255, 93, 176, 0.2); }
.fleet {
  margin-top: 34px; display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); max-width: 1000px; margin-inline: auto;
}
.plane {
  border: 1px solid rgba(255, 93, 176, 0.35); border-radius: 14px; padding: 26px 24px;
  background: rgba(255, 46, 114, 0.05); transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.plane:hover { border-color: var(--pink); background: rgba(255, 46, 114, 0.1); transform: translateY(-4px); }
.plane h3 { font-family: var(--disp); font-weight: 700; font-size: 1.2rem; margin-bottom: 8px; color: var(--cream); }
.plane p { color: var(--muted); }

/* feature image — dim cabin, neon-tinted */
.feature {
  position: relative; max-width: 1000px; margin: clamp(34px, 6vw, 56px) auto 0;
  border: 1px solid rgba(255, 93, 176, 0.3); border-radius: 16px; overflow: hidden;
  background-color: var(--bg-2);
  box-shadow: 0 0 60px -28px rgba(255, 46, 114, 0.6);
}
.feature img {
  width: 100%; height: clamp(220px, 42vw, 420px); object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}
.feature::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 46, 114, 0.14), rgba(8, 4, 13, 0.78));
  mix-blend-mode: multiply;
}
.feature figcaption {
  position: absolute; z-index: 2; left: clamp(16px, 4vw, 30px); bottom: clamp(14px, 3vw, 24px);
  font-family: var(--script); font-size: clamp(1.5rem, 4vw, 2.2rem); color: var(--glow);
  text-shadow: 0 0 16px rgba(255, 143, 199, 0.6);
}

/* pilots — neon-sign glow behind a script line */
.pilots-band { position: relative; text-align: center; overflow: hidden; }
.pilots-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-color: var(--bg);
  background-image:
    radial-gradient(70% 90% at 50% 50%, rgba(8, 4, 13, 0.5), rgba(8, 4, 13, 0.92) 75%),
    url("https://images.unsplash.com/photo-1493857671505-72967e2e2760?auto=format&fit=crop&w=1600&q=70");
  background-size: cover; background-position: center;
  mix-blend-mode: screen; opacity: 0.5;
}
.pilots {
  position: relative; z-index: 1;
  font-family: var(--script); font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--glow);
  max-width: 24ch; margin: 0 auto; text-shadow: 0 0 16px rgba(255, 143, 199, 0.5);
}

/* invite */
.invite { display: flex; justify-content: center; }
.invite-card {
  width: 100%; max-width: 600px; text-align: center;
  border: 1px solid rgba(255, 93, 176, 0.3); border-radius: 20px; padding: clamp(28px, 5vw, 48px);
  background: rgba(10, 5, 16, 0.6); backdrop-filter: blur(6px);
  box-shadow: 0 0 60px -20px rgba(255, 46, 114, 0.5);
}
.invite-card .neon-sm { margin: 4px 0 26px; }
form { display: grid; gap: 18px; text-align: left; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label {
  display: grid; gap: 8px; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--glow); font-weight: 500;
}
.opt { color: var(--muted); text-transform: none; letter-spacing: 0; font-size: 0.78rem; }
input, select, textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--cream); background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 93, 176, 0.3); border-radius: 10px; padding: 12px 14px; transition: border-color 0.2s, box-shadow 0.2s;
}
input::placeholder, textarea::placeholder { color: rgba(185, 138, 167, 0.55); }
select option { background: var(--bg-2); color: var(--cream); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255, 46, 114, 0.18); }
textarea { resize: vertical; }
button[type="submit"] {
  cursor: pointer; font-family: var(--disp); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--bg);
  background: linear-gradient(135deg, var(--pink), var(--magenta)); border: none; border-radius: 999px;
  padding: 15px 30px; box-shadow: 0 0 26px rgba(255, 46, 114, 0.6); transition: transform 0.15s, box-shadow 0.2s;
}
button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 0 44px rgba(255, 46, 114, 0.85); }
button[type="submit"]:disabled { opacity: 0.6; transform: none; cursor: default; }
.fine { font-size: 0.76rem; color: var(--muted); text-align: center; }
.success { font-family: var(--script); font-size: 1.6rem; color: var(--glow); text-align: center; }

.foot {
  position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: space-between; align-items: center; padding: 34px clamp(22px, 6vw, 70px);
  border-top: 1px solid rgba(255, 93, 176, 0.18);
}
.foot .wordmark { font-weight: 600; }
.foot-fine { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.hero > * { animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero .kick { animation-delay: 0.05s; }
/* neon keeps both: entrance rise + ongoing flicker */
.hero .neon { animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.12s both, flicker 6s 1.1s infinite; }
.hero .script { animation-delay: 0.26s; }
.hero .essence { animation-delay: 0.36s; }
.hero .cta { animation-delay: 0.46s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* tap targets — comfortable on touch */
.cta, button[type="submit"] { min-height: 48px; }
input, select, textarea { min-height: 48px; }

@media (max-width: 680px) {
  .row { grid-template-columns: 1fr; }
  .bar { flex-wrap: wrap; gap: 6px 14px; }
  .cta { display: block; text-align: center; }
}
@media (max-width: 420px) {
  section { padding-left: 18px; padding-right: 18px; }
  .bar { padding-left: 18px; padding-right: 18px; }
  .bar-meta { font-size: 0.62rem; letter-spacing: 0.14em; }
  .invite-card { padding-left: 18px; padding-right: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .hearts span, .neon { animation: none; }
  .hero > * { animation: none; }
  body { background-attachment: scroll; }
}
