/* meetyour.ai front site. Same twilight palette as the world (web/style.css). */
:root {
  --bg: #14123a;
  --bg-deep: #0d0b26;
  --panel: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f3eefe;
  --muted: #b9b0d6;
  --accent: #c9a7ff;
  --accent-ink: #1d1436;
  --lantern: #ffd59a;
  --ok: #6ef0a8;
  --off: #7a7394;
  --wrap: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg-deep); color: var(--text);
  font: 17px/1.6 Nunito, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-underline-offset: 3px; }
a:hover { color: #e2d0ff; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(36px, 5.4vw, 60px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; }
h3 { font-size: 20px; font-weight: 800; }
p { margin: 0 0 1em; }
code, pre { font: 14px/1.5 ui-monospace, "SF Mono", Menlo, Consolas, monospace; }
code { background: rgba(255, 255, 255, .08); padding: 1px 6px; border-radius: 6px; }
pre { background: #0a0920; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; overflow-x: auto; }
pre code { background: none; padding: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
.eyebrow { color: var(--lantern); font-weight: 800; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 10; backdrop-filter: blur(10px);
  background: rgba(13, 11, 38, .72); border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; gap: 22px; height: 60px; }
.brand { font-weight: 800; font-size: 21px; color: var(--text); text-decoration: none; }
.brand span { color: var(--accent); }
.nav .links { margin-left: auto; display: flex; align-items: center; gap: 20px; font-weight: 700; font-size: 15px; }
.nav .links a { color: var(--muted); text-decoration: none; }
.nav .links a:hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 11px 20px;
  font: inherit; font-weight: 800; font-size: 16px; text-decoration: none; cursor: pointer;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .07); color: var(--text); transition: background .15s, transform .15s;
}
.btn:hover { background: rgba(255, 255, 255, .14); color: var(--text); }
.btn.primary { background: var(--accent); border-color: transparent; color: var(--accent-ink); }
.btn.primary:hover { background: #d8bfff; color: var(--accent-ink); }
.nav .btn { padding: 7px 15px; font-size: 14px; }
.nav .links a.btn.primary { color: var(--accent-ink); }

/* hero */
.hero { position: relative; min-height: min(88vh, 820px); display: flex; align-items: flex-end; overflow: hidden; }
.hero .shot { position: absolute; inset: 0; background: center 40% / cover no-repeat; }
.hero .shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 11, 38, .15) 0%, rgba(13, 11, 38, .35) 45%, var(--bg-deep) 100%),
              linear-gradient(90deg, rgba(13, 11, 38, .75) 0%, rgba(13, 11, 38, 0) 70%);
}
.hero .wrap { position: relative; width: 100%; padding-bottom: 72px; padding-top: 120px; }
.hero h1 { max-width: 16ch; text-shadow: 0 2px 30px rgba(0, 0, 0, .35); }
.hero .lede { font-size: clamp(18px, 2.1vw, 22px); max-width: 36ch; color: #e7e0fb; }
.hero .ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero .note { margin-top: 16px; font-size: 14px; color: var(--muted); }

section { padding: 88px 0; }
section.alt { background: var(--bg); }
.intro { max-width: 60ch; }

/* cards */
.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 34px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: 22px; }
.card p { margin: 0; color: var(--muted); font-size: 16px; }
.card .tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; border-radius: 999px; padding: 2px 9px; margin-bottom: 10px; }
.tag.live { background: rgba(110, 240, 168, .14); color: var(--ok); }
.tag.soon { background: rgba(255, 213, 154, .14); color: var(--lantern); }

/* steps */
.steps { counter-reset: step; display: grid; gap: 14px; margin-top: 34px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step { counter-increment: step; position: relative; padding: 22px 22px 22px 22px; border-radius: 20px; border: 1px solid var(--line); }
.step::before {
  content: counter(step); display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink); font-weight: 800; margin-bottom: 14px;
}
.step p { margin: 0; color: var(--muted); font-size: 16px; }

/* Sylunara */
.resident { display: grid; gap: 44px; grid-template-columns: minmax(0, 340px) minmax(0, 1fr); align-items: center; }
.resident figure { margin: 0; }
.resident img { border-radius: 24px; border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0, 0, 0, .45); }
.resident figcaption { font-size: 13px; color: var(--muted); margin-top: 10px; }
.resident blockquote { margin: 0 0 22px; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.35; font-weight: 700; }
.resident blockquote p { margin: 0 0 8px; }
.resident blockquote footer { font-size: 15px; font-weight: 600; color: var(--muted); }
.status-line { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 15px; }
.status-line .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--off); flex: none; }

/* road */
.road { margin-top: 34px; display: grid; gap: 0; }
.leg { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); }
.leg:last-child { border-bottom: 1px solid var(--line); }
.leg b { color: var(--lantern); font-size: 18px; }
.leg p { margin: 0; color: var(--muted); }

/* waitlist */
.join { text-align: center; }
.join .intro { margin: 0 auto; }
.waitlist { display: flex; gap: 10px; max-width: 480px; margin: 26px auto 0; }
.waitlist input[type=email] {
  flex: 1; min-width: 0; font: inherit; color: var(--text); background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line); border-radius: 999px; padding: 11px 18px;
}
.waitlist input[type=email]:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.waitlist .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-msg { min-height: 1.6em; margin-top: 12px; font-weight: 700; }
.form-msg.ok { color: var(--ok); }
.form-msg.err { color: #ff9ba8; }
.fine { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* prose pages */
.page { padding: 64px 0 88px; }
.page .wrap { max-width: 780px; }
.page h2 { font-size: 26px; margin-top: 1.8em; }
.page h3 { margin-top: 1.4em; }
.page table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 0 0 1em; }
.page th, .page td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.page th { color: var(--muted); font-weight: 700; }
.callout { border: 1px solid rgba(255, 213, 154, .35); background: rgba(255, 213, 154, .07); border-radius: 16px; padding: 14px 18px; margin: 0 0 1.4em; }
.callout p:last-child { margin: 0; }

footer.site { border-top: 1px solid var(--line); padding: 34px 0 44px; color: var(--muted); font-size: 14px; }
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; }
footer.site a { color: var(--muted); }
footer.site .spacer { margin-left: auto; }

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav .links a:not(.btn) { display: none; }
  .hero { min-height: 82vh; }
  .hero .wrap { padding-bottom: 48px; }
  section { padding: 64px 0; }
  .resident { grid-template-columns: 1fr; gap: 28px; }
  .resident figure { max-width: 300px; }
  .leg { grid-template-columns: 1fr; gap: 4px; }
  .waitlist { flex-direction: column; }
  .waitlist .btn { justify-content: center; }
  footer.site .spacer { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
