:root {
  --bg: #050b18;
  --panel: rgba(12, 25, 50, 0.72);
  --panel-strong: rgba(16, 36, 72, 0.88);
  --line: rgba(122, 255, 221, 0.22);
  --text: #edf8ff;
  --muted: #a9bdd7;
  --cyan: #41f7ff;
  --green: #79ff69;
  --magenta: #c34cff;
  --yellow: #ffd95f;
  --shadow-cyan: 0 0 48px rgba(65, 247, 255, 0.35);
  --shadow-magenta: 0 0 48px rgba(195, 76, 255, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 4%, rgba(95, 255, 140, 0.16), transparent 28rem),
    radial-gradient(circle at 78% 18%, rgba(195, 76, 255, 0.2), transparent 30rem),
    linear-gradient(145deg, #061228 0%, #050816 48%, #0a1731 100%);
  font-family: "Trebuchet MS", "Verdana", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(5px);
  pointer-events: none;
  z-index: -2;
}

.orb-a {
  width: 34rem;
  height: 34rem;
  left: -16rem;
  top: 14rem;
  border: 2px solid rgba(65, 247, 255, 0.22);
  box-shadow: inset 0 0 70px rgba(65, 247, 255, 0.18), 0 0 90px rgba(65, 247, 255, 0.12);
}

.orb-b {
  width: 42rem;
  height: 42rem;
  right: -18rem;
  top: -8rem;
  border: 2px solid rgba(121, 255, 105, 0.2);
  box-shadow: inset 0 0 80px rgba(195, 76, 255, 0.16), 0 0 120px rgba(121, 255, 105, 0.1);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(5, 13, 30, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.26);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: var(--shadow-cyan);
}

.nav {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.ghost-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ghost-btn {
  border: 1px solid rgba(65, 247, 255, 0.34);
  background: rgba(65, 247, 255, 0.08);
}

.primary-btn {
  background: linear-gradient(135deg, var(--green), var(--cyan) 48%, var(--magenta));
  color: #03101c;
  font-weight: 900;
  box-shadow: var(--shadow-cyan);
}

.secondary-btn {
  border: 1px solid rgba(195, 76, 255, 0.42);
  background: rgba(195, 76, 255, 0.14);
  box-shadow: var(--shadow-magenta);
}

.ghost-btn:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  min-height: 760px;
  padding: 72px 0 54px;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-family: "Impact", "Trebuchet MS", sans-serif;
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  line-height: 0.86;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(65, 247, 255, 0.28);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.prompt-card,
.glass-card,
.lab-card,
.support-form {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(13, 31, 62, 0.86), rgba(10, 18, 40, 0.72));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.prompt-card {
  margin-top: 34px;
  padding: 22px;
  border-radius: 30px;
}

label {
  display: grid;
  gap: 8px;
  color: #dffaff;
  font-weight: 800;
}

textarea,
input,
select {
  width: 100%;
  border: 1px solid rgba(122, 255, 221, 0.22);
  border-radius: 20px;
  background: rgba(2, 8, 20, 0.58);
  color: var(--text);
  outline: none;
}

textarea:focus,
input:focus,
select:focus {
  border-color: rgba(65, 247, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(65, 247, 255, 0.12);
}

textarea {
  min-height: 130px;
  padding: 16px;
  resize: vertical;
}

input,
select {
  min-height: 52px;
  padding: 0 16px;
}

select {
  color-scheme: dark;
}

.prompt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.microcopy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.download-page-main {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.download-hero {
  padding: 88px 0 28px;
}

.download-shell {
  padding-bottom: 48px;
}

.download-card {
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(13, 31, 62, 0.9), rgba(10, 18, 40, 0.78));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.download-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.download-status {
  min-height: 24px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 700;
}

.download-status.ok {
  color: var(--green);
}

.download-status.error {
  color: #ff829e;
}

.download-links {
  display: grid;
  gap: 16px;
}

.download-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(122, 255, 221, 0.18);
  border-radius: 24px;
  background: rgba(5, 14, 32, 0.56);
}

.download-link-copy h3 {
  margin-bottom: 8px;
}

.download-link-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.download-link-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.download-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(65, 247, 255, 0.24);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(65, 247, 255, 0.06);
}

.hero-art {
  position: relative;
  min-height: 580px;
  border: 1px solid rgba(122, 255, 221, 0.16);
  border-radius: 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 40% 44%, rgba(65, 247, 255, 0.24), transparent 22rem),
    radial-gradient(circle at 70% 55%, rgba(195, 76, 255, 0.22), transparent 20rem),
    linear-gradient(145deg, rgba(9, 24, 49, 0.8), rgba(4, 9, 22, 0.9));
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.44);
}

.neon-ring {
  position: absolute;
  border-radius: 999px;
  transform: rotate(-14deg);
}

.ring-one {
  width: 680px;
  height: 390px;
  left: -60px;
  top: 80px;
  border: 8px solid rgba(65, 247, 255, 0.75);
  box-shadow: 0 0 46px rgba(65, 247, 255, 0.56), inset 0 0 38px rgba(195, 76, 255, 0.32);
}

.ring-two {
  width: 760px;
  height: 450px;
  left: -120px;
  top: 48px;
  border: 8px solid rgba(121, 255, 105, 0.55);
  box-shadow: 0 0 50px rgba(121, 255, 105, 0.35);
}

.mascot {
  position: absolute;
  left: 62px;
  bottom: 0;
  width: 300px;
  height: 455px;
}

.head {
  position: absolute;
  left: 48px;
  top: 86px;
  width: 210px;
  height: 230px;
  border-radius: 48% 50% 52% 48%;
  background: radial-gradient(circle at 55% 42%, #ffd6bd, #e99880 76%);
  box-shadow: inset -18px -18px 30px rgba(116, 54, 72, 0.22);
}

.hair {
  position: absolute;
  left: 52px;
  top: 22px;
  width: 218px;
  height: 132px;
  border-radius: 72% 28% 46% 28%;
  background:
    radial-gradient(circle at 20% 70%, #30e9ff 0 13%, transparent 14%),
    linear-gradient(135deg, #263855, #b67061 42%, #542465 75%, #13243f);
  transform: rotate(-5deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.headphones {
  position: absolute;
  top: 150px;
  width: 58px;
  height: 130px;
  border-radius: 26px;
  background: linear-gradient(180deg, #b8f8ff, #17233a 55%, #10151f);
  box-shadow: inset 0 0 16px rgba(65, 247, 255, 0.2);
}

.headphones.left {
  left: 12px;
}

.headphones.right {
  right: 14px;
}

.eye {
  position: absolute;
  top: 86px;
  width: 34px;
  height: 45px;
  border-radius: 50%;
  background: radial-gradient(circle at 55% 42%, #131a2b 0 33%, #f7fbff 35% 100%);
}

.eye-left {
  left: 54px;
}

.eye-right {
  right: 52px;
}

.mouth {
  position: absolute;
  left: 72px;
  bottom: 48px;
  width: 78px;
  height: 50px;
  border-radius: 8px 8px 60px 60px;
  background: #491222;
}

.body {
  position: absolute;
  left: 36px;
  bottom: -70px;
  width: 240px;
  height: 190px;
  border-radius: 70px 70px 0 0;
  background: linear-gradient(145deg, #1f335b, #121b32);
}

.mic {
  position: absolute;
  right: 96px;
  bottom: 114px;
  width: 250px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8f8ff, #1d2434 34%, #06080f 78%);
  transform: rotate(18deg);
  box-shadow: 0 0 24px rgba(65, 247, 255, 0.28);
}

.mic span {
  position: absolute;
  left: 18px;
  top: -11px;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0 2px, transparent 2px 7px),
    radial-gradient(circle, #dffcff, #556070 60%, #151a24);
  border: 4px solid rgba(255, 255, 255, 0.56);
}

.wordmark {
  position: absolute;
  right: 32px;
  top: 224px;
  color: rgba(150, 255, 235, 0.92);
  font-family: "Impact", "Trebuchet MS", sans-serif;
  font-size: clamp(4rem, 9vw, 7.2rem);
  letter-spacing: 0.08em;
  transform: rotate(-8deg);
  text-shadow: 0 0 18px rgba(65, 247, 255, 0.9), 8px 8px 0 rgba(195, 76, 255, 0.45);
}

.note {
  position: absolute;
  color: var(--green);
  font-size: 4.4rem;
  text-shadow: 0 0 22px currentColor;
  opacity: 0.8;
  animation: float 5.6s ease-in-out infinite;
}

.note-a {
  right: 120px;
  top: 78px;
}

.note-b {
  right: 62px;
  bottom: 98px;
  color: var(--magenta);
  animation-delay: -1.5s;
}

.note-c {
  left: 82px;
  top: 64px;
  color: var(--cyan);
  animation-delay: -3s;
}

.steps,
.showcase,
.support {
  padding: 88px 0;
}

.section-title {
  max-width: 780px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.glass-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 30px;
}

.glass-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 16px;
  background: rgba(65, 247, 255, 0.12);
  color: var(--cyan);
  font-weight: 900;
}

.glass-card p,
.lab-card p,
.support-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.lab-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 42px;
}

.lab-card img {
  width: 100%;
  border-radius: 42px;
  box-shadow: var(--shadow-cyan), var(--shadow-magenta);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.tags span {
  padding: 12px 16px;
  border: 1px solid rgba(122, 255, 221, 0.22);
  border-radius: 999px;
  color: #dffaff;
  background: rgba(65, 247, 255, 0.07);
}

.support {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 36px;
  align-items: start;
}

.support-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 34px;
}

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

.file-field {
  padding: 18px;
  border: 1px dashed rgba(65, 247, 255, 0.38);
  border-radius: 22px;
  background: rgba(65, 247, 255, 0.06);
  cursor: pointer;
}

.file-field input {
  display: none;
}

.file-field small,
.form-status {
  color: var(--muted);
}

.consent {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 500;
}

.consent input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.form-status {
  min-height: 22px;
  margin: 0;
}

.form-status.ok {
  color: var(--green);
}

.form-status.error {
  color: #ff8fa8;
}

.footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  color: var(--muted);
}

.legal-page {
  padding: 62px 0 20px;
}

.legal-hero {
  max-width: 900px;
  padding: 36px 0 26px;
}

.legal-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.legal-note {
  display: inline-flex;
  margin: 8px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(122, 255, 221, 0.22);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(65, 247, 255, 0.07);
}

.legal-card {
  max-width: 980px;
  margin: 0 auto 70px;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(13, 31, 62, 0.9), rgba(10, 18, 40, 0.78));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.legal-card h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: #dcecff;
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-card a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(65, 247, 255, 0.45);
  text-underline-offset: 4px;
}

.legal-card mark {
  padding: 2px 6px;
  border-radius: 8px;
  color: #06101f;
  background: linear-gradient(135deg, var(--yellow), var(--green));
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal 0.8s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .support,
  .lab-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-art {
    min-height: 520px;
  }

  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-card-head,
  .download-link-card {
    flex-direction: column;
    align-items: stretch;
  }

  .download-link-actions {
    width: 100%;
  }

  .download-link-actions .primary-btn,
  .download-link-actions .secondary-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .topbar {
    width: calc(100% - 20px);
  }

  .ghost-btn {
    display: none;
  }

  main,
  .footer {
    width: calc(100% - 20px);
  }

  h1 {
    font-size: 3.5rem;
  }

  .prompt-actions,
  .field-row,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .prompt-actions {
    display: grid;
  }

  .hero-art {
    min-height: 440px;
    border-radius: 34px;
  }

  .mascot {
    left: -8px;
    transform: scale(0.82);
    transform-origin: bottom left;
  }

  .wordmark {
    right: 16px;
    top: 216px;
    font-size: 3.6rem;
  }

  .mic {
    right: -8px;
    bottom: 100px;
    transform: rotate(18deg) scale(0.82);
  }

  .ring-one,
  .ring-two {
    left: -180px;
  }

  .support-form,
  .prompt-card,
  .lab-card {
    padding: 18px;
  }
}
