:root {
  --bg: #040509;
  --bg-soft: #090d14;
  --ink: #f8fbff;
  --muted: #aeb8cb;
  --soft: #737f94;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(113, 181, 255, 0.36);
  --glass: rgba(255, 255, 255, 0.068);
  --glass-strong: rgba(255, 255, 255, 0.11);
  --cyan: #58b8ff;
  --violet: #8f78ff;
  --gold: #d3aa62;
  --red: #a92b2b;
  --warning: #ffd09b;
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.52);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 4%, rgba(169, 43, 43, 0.22), transparent 24rem),
    radial-gradient(circle at 90% 8%, rgba(88, 184, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 58% 38%, rgba(143, 120, 255, 0.13), transparent 36rem),
    linear-gradient(180deg, #040509 0%, #070a12 45%, #05060a 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 75%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 26rem),
    linear-gradient(90deg, rgba(255,255,255,0.02), transparent 14%, transparent 86%, rgba(255,255,255,0.02));
  opacity: 0.7;
}

img,
svg {
  max-width: 100%;
}

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.75rem);
  max-width: 890px;
}

h2 {
  font-size: clamp(2.15rem, 4.8vw, 4.8rem);
}

h3 {
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

code {
  color: #e5f2ff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  padding: 0.14rem 0.36rem;
  word-break: break-word;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

.section-muted {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012));
  border-block: 1px solid rgba(255, 255, 255, 0.082);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99;
  transform: translateY(-150%);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: #06101f;
  background: var(--cyan);
  font-weight: 900;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(4, 5, 9, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  width: min(calc(100% - 32px), 1280px);
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.86rem;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 42px rgba(88, 184, 255, 0.18), 0 0 0 1px rgba(211, 170, 98, 0.13) inset;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.36rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.75rem 0.86rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.075);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.16fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.2rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: #dceeff;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  margin-bottom: 1.25rem;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--cyan), var(--violet));
}

.hero-lede {
  max-width: 760px;
  margin-top: 1.65rem;
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.22rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 950;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #03101e;
  background: linear-gradient(135deg, #82c9ff, var(--cyan) 38%, #9d8aff);
  box-shadow: 0 22px 58px rgba(88, 184, 255, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 30px 74px rgba(88, 184, 255, 0.36);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-wide {
  width: max-content;
  min-width: 272px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.55rem;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  padding: 0.52rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.044);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.7;
}

.hero-glow-one {
  width: 620px;
  height: 620px;
  right: -210px;
  top: 70px;
  background: rgba(88, 184, 255, 0.18);
}

.hero-glow-two {
  width: 480px;
  height: 480px;
  left: -160px;
  bottom: 20px;
  background: rgba(169, 43, 43, 0.14);
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: radial-gradient(rgba(255,255,255,0.09) 0.6px, transparent 0.6px);
  background-size: 6px 6px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent 80%);
}

.glass-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.034));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.desktop-showcase {
  position: relative;
  perspective: 1200px;
}

.desktop-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: rotateY(-5deg) rotateX(2deg);
  transform-origin: center;
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(88, 184, 255, 0.10) inset;
}

.desktop-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14), transparent 22%, transparent 70%, rgba(88,184,255,0.12)),
    radial-gradient(circle at 30% 10%, rgba(255,255,255,0.16), transparent 14rem);
  mix-blend-mode: screen;
  opacity: 0.6;
}

.desktop-titlebar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 0.52rem;
  padding: 0 1rem;
  background: linear-gradient(180deg, rgba(12, 16, 24, 0.98), rgba(7, 10, 17, 0.92));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.traffic-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.traffic-dot:first-child {
  background: rgba(169, 43, 43, 0.82);
}

.traffic-dot:nth-child(2) {
  background: rgba(211, 170, 98, 0.8);
}

.traffic-dot:nth-child(3) {
  background: rgba(88, 184, 255, 0.76);
}

.desktop-titlebar strong {
  margin-left: auto;
  color: #9da9be;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.desktop-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1500 / 628;
  object-fit: cover;
  background: #070a12;
}

.hero-mascot {
  position: absolute;
  right: -34px;
  bottom: -72px;
  z-index: 3;
  width: clamp(138px, 17vw, 220px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55), 0 0 50px rgba(88, 184, 255, 0.18);
  transform: rotate(4deg);
}

.desktop-caption {
  position: absolute;
  left: 30px;
  bottom: -36px;
  z-index: 4;
  max-width: 330px;
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
}

.desktop-caption strong {
  color: var(--ink);
  line-height: 1.2;
}

.desktop-caption span {
  color: var(--muted);
  font-size: 0.86rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.align-center {
  align-items: center;
}

.copy-stack {
  display: grid;
  gap: 1rem;
  font-size: 1.05rem;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 3rem;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2 {
  margin-bottom: 1rem;
}

.mascot-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(169, 43, 43, 0.14), transparent 24rem),
    radial-gradient(circle at 70% 50%, rgba(88, 184, 255, 0.12), transparent 28rem);
}

.mascot-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.18fr) minmax(0, 0.72fr);
  gap: 1rem;
  align-items: stretch;
}

.mascot-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.mascot-card img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  background: #090b12;
}

.featured-mascot img {
  height: 340px;
}

.mascot-card div {
  padding: 1.2rem;
}

.mascot-card h3 {
  margin-bottom: 0.46rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card,
.step-card,
.note-card,
.beta-note,
.faq-list details {
  border-radius: var(--radius-md);
}

.feature-card {
  position: relative;
  min-height: 232px;
  padding: 1.24rem;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -54px;
  top: -54px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(88, 184, 255, 0.08);
}

.feature-card .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 1.18rem;
  border-radius: 18px;
  color: #d8edff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  background: linear-gradient(145deg, rgba(88, 184, 255, 0.22), rgba(143, 120, 255, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.feature-card h3,
.step-card h3,
.note-card h3,
.beta-note h3 {
  margin-bottom: 0.75rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step-card {
  position: relative;
  min-height: 230px;
  padding: 1.35rem;
  overflow: hidden;
}

.step-card span {
  display: inline-flex;
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-bottom: 1.08rem;
}

.with-mascot::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: url("assets/favicon.png") center / cover no-repeat;
  opacity: 0.82;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: 1rem;
  align-items: stretch;
}

.download-panel,
.spec-panel {
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.download-panel h2 {
  margin-bottom: 1rem;
}

.microcopy {
  margin-top: 1rem;
  font-size: 0.88rem;
}

.spec-panel dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.spec-panel div {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.spec-panel dt {
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 0.35rem;
}

.spec-panel dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.note-card {
  padding: 1.35rem;
}

.note-card ol {
  color: var(--muted);
  padding-left: 1.15rem;
  margin: 0;
}

.note-card li + li {
  margin-top: 0.45rem;
}

.warning-card {
  border-color: rgba(255, 208, 155, 0.24);
}

.beta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 2rem;
  align-items: start;
}

.beta-copy {
  position: sticky;
  top: 118px;
}

.beta-note {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  margin-top: 1.5rem;
}

.beta-note img {
  width: 126px;
  height: 126px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.beta-form {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
}

.form-row {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.two-col {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

label span {
  display: inline-block;
  color: #dbe8f8;
  font-size: 0.88rem;
  font-weight: 850;
  margin-bottom: 0.45rem;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 0.9rem 0.95rem;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 13px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(88, 184, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(88, 184, 255, 0.12);
  background: rgba(0, 0, 0, 0.34);
}

::placeholder {
  color: rgba(174, 184, 203, 0.58);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.75rem;
  align-items: start;
  margin: 1.2rem 0;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 0.22rem;
  accent-color: var(--cyan);
}

.checkbox-row span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  font-weight: 850;
}

.form-status.success {
  color: #bfe8d3;
}

.form-status.error {
  color: var(--warning);
}

/*
  Honeypot fields are deliberately present in the DOM but positioned far off-screen.
  This avoids relying on display:none-only traps while keeping the fields unavailable to real users.
*/
.honeypot-field,
.dynamic-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0.001;
  overflow: hidden;
  pointer-events: none;
  clip-path: inset(50%);
}

.honeypot-field input,
.dynamic-honeypot input {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
}

.honeypot-field-secondary {
  transform: translateX(-120vw);
}

.honeypot-field-tertiary {
  transform: translateY(-120vh);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 2rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  padding: 1.1rem 1.25rem;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin-top: 0.85rem;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.24);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-grid p {
  max-width: 560px;
  font-size: 0.92rem;
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-grid,
  .download-grid,
  .beta-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .desktop-frame {
    transform: none;
  }

  .feature-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .mascot-card img,
  .featured-mascot img {
    height: min(420px, 55vw);
  }

  .beta-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding: 78px 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(4, 5, 9, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.9rem 1rem;
  }

  .hero-grid {
    gap: 2.75rem;
  }

  .desktop-titlebar strong {
    display: none;
  }

  .desktop-caption {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .hero-mascot {
    right: 10px;
    bottom: -28px;
    width: 130px;
    border-radius: 20px;
  }

  .feature-grid,
  .steps-grid,
  .notes-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .beta-note {
    grid-template-columns: 1fr;
  }

  .beta-note img {
    width: 100%;
    height: auto;
    max-height: 300px;
  }

  .button-wide {
    width: 100%;
    min-width: 0;
  }

  .hero-actions,
  .download-actions {
    flex-direction: column;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-copy small {
    display: none;
  }

  .trust-row span {
    width: 100%;
    text-align: center;
  }

  .desktop-frame,
  .download-panel,
  .spec-panel,
  .beta-form {
    border-radius: 22px;
  }

  .desktop-frame img {
    min-height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
