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

body {
  background: #0a0a0a;
  color: #f5f5f5;
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

#snow {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

.site { position: relative; z-index: 1; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; }

.gradient-text {
  background: linear-gradient(90deg, #ffffff, #dffcff, #f7eaff, #ece8ff, #ffffff);
  background-size: 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: flow 90s linear infinite;
}
@keyframes flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px 56px;
}
.nav-logo { height: 20px; width: auto; opacity: 0.9; }
.nav-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(245,245,245,0.28);
  border: 1px solid rgba(245,245,245,0.18); padding: 6px 14px;
  border-radius: 999px;
}

.hero {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 56px 48px 72px;
  background: radial-gradient(ellipse at top, #17151c 0%, #0a0a0a 60%);
}
.hero-eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(245,245,245,0.32); margin-bottom: 32px;
}
h1.gradient-headline {
  font-size: clamp(3rem, 9vw, 5.5rem); font-weight: 700;
  line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 8px;
}
.hero-kicker {
  font-size: 12px; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(245,245,245,0.32); margin-bottom: 32px;
}
.hero-sub {
  max-width: 560px; margin: 0 auto 40px;
  font-size: 13px; font-weight: 400; color: rgba(245,245,245,0.42);
  letter-spacing: 0.03em; line-height: 1.9;
}
.hero-cta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; justify-content: center; }

.btn-outline {
  background: transparent; border: 1px solid rgba(245,245,245,0.25);
  color: rgba(245,245,245,0.75); padding: 15px 38px;
  font-family: inherit; font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block; transition: all 0.2s;
}
.btn-outline:hover { border-color: rgba(245,245,245,0.6); color: #f5f5f5; }
.btn-outline[disabled], .btn-outline.is-disabled {
  opacity: 0.35; cursor: not-allowed; pointer-events: none;
}
.btn-text {
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(245,245,245,0.32);
  text-decoration: none; transition: color 0.2s;
}
.btn-text:hover { color: rgba(245,245,245,0.65); }

.divider {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(245,245,245,0.08), transparent);
  margin: 0 auto;
}

.screenshot { padding: 0; }
.hero-render {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.hero-render img {
  display: block;
  width: 100%;
  height: auto;
  mask-image:
    linear-gradient(to bottom, transparent 0%, black 12%, black 78%, transparent 100%),
    linear-gradient(to right,  transparent 0%, black 10%, black 90%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, black 12%, black 78%, transparent 100%),
    linear-gradient(to right,  transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-composite: source-in;
}

.process { display: flex; justify-content: center; padding: 64px 48px; flex-wrap: wrap; }
.process-item {
  text-align: center; padding: 0 44px; border-right: 1px solid rgba(245,245,245,0.05);
  flex: 1; min-width: 220px;
}
.process-item:last-child { border-right: none; }
.process-num {
  font-size: 9px; font-weight: 700; letter-spacing: 0.3em;
  color: rgba(245,245,245,0.14); margin-bottom: 14px;
}
.process-head {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,245,245,0.55); margin-bottom: 12px;
}
.process-body {
  font-size: 11.5px; font-weight: 400; color: rgba(245,245,245,0.26);
  line-height: 1.9; letter-spacing: 0.02em;
}

.closer { text-align: center; padding: 80px 48px 56px; }
.closer-byline {
  font-size: 10px; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(245,245,245,0.18); margin-bottom: 20px;
}
.closer-headline {
  font-size: clamp(2.6rem, 7vw, 4.6rem); font-weight: 700; line-height: 0.95;
  letter-spacing: -0.02em; margin-bottom: 22px; display: block;
}
.closer-sub {
  font-size: 12px; font-weight: 400; color: rgba(245,245,245,0.26);
  letter-spacing: 0.05em; line-height: 1.9; max-width: 480px; margin: 0 auto;
}

.buy-price { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; color: rgba(245,245,245,0.4); margin-bottom: 8px; }
.buy-price strong { color: #f5f5f5; font-size: 1.6em; font-weight: 700; }
.buy-fine { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,245,245,0.18); margin-top: 20px; }

.signup { padding: 64px 48px 88px; text-align: center; }
.signup-label {
  font-size: 9px; font-weight: 500; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(245,245,245,0.4); margin-bottom: 28px;
}
.signup-form { display: flex; flex-direction: column; align-items: center; max-width: 360px; margin: 0 auto; }
.form-row { width: 100%; margin-bottom: 20px; }
input[type="text"], input[type="email"], select, textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(245,245,245,0.2); color: #f5f5f5;
  font-family: inherit; font-size: 12px; font-weight: 400;
  letter-spacing: 0.06em; padding: 10px 0; outline: none;
  text-align: center; transition: border-color 0.2s; -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-bottom-color: rgba(245,245,245,0.5); }
input::placeholder, textarea::placeholder { color: rgba(245,245,245,0.28); }
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus,
textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #f5f5f5;
  -webkit-box-shadow: 0 0 0px 1000px #0a0a0a inset;
  box-shadow: 0 0 0px 1000px #0a0a0a inset;
  transition: background-color 5000s ease-in-out 0s;
}
select { text-align-last: center; cursor: pointer; font-family: inherit; font-weight: 400; color: rgba(245,245,245,0.28); }
select.has-value { color: #f5f5f5; }
select option { background: #0a0a0a; color: #f5f5f5; font-family: inherit; font-weight: 400; }
textarea { resize: none; min-height: 60px; padding-top: 12px; }
.btn-submit {
  background: transparent; border: 1px solid rgba(245,245,245,0.35);
  color: rgba(245,245,245,0.7); padding: 13px 34px;
  font-family: inherit; font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer;
  margin-top: 12px; transition: all 0.2s;
}
.btn-submit:hover { border-color: rgba(245,245,245,0.7); color: #f5f5f5; }
.signup-thanks { font-size: 12px; letter-spacing: 0.05em; color: rgba(245,245,245,0.5); display: none; }

.faq { padding: 56px 48px 88px; max-width: 640px; margin: 0 auto; }
.faq h2 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(245,245,245,0.3); text-align: center; margin-bottom: 32px;
}
details { border-bottom: 1px solid rgba(245,245,245,0.06); padding: 18px 0; }
summary { cursor: pointer; font-weight: 500; font-size: 13px; letter-spacing: 0.02em; color: rgba(245,245,245,0.7); }
details p { margin-top: 12px; font-size: 12px; color: rgba(245,245,245,0.3); letter-spacing: 0.02em; line-height: 1.8; }

footer { text-align: center; padding: 0 48px 40px; }
.footer-copy { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,245,245,0.1); }
.footer-link { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,245,245,0.22); text-decoration: none; }
.footer-link:hover { color: rgba(245,245,245,0.5); }

.badge-beta {
  display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #0a0a0a; background: rgba(245,245,245,0.7);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 20px;
}

@media (max-width: 640px) {
  nav { padding: 24px 28px; }
  .hero { padding: 40px 28px 56px; }
  .process { flex-direction: column; align-items: center; gap: 36px; padding: 40px 28px; }
  .process-item { border-right: none; border-bottom: 1px solid rgba(245,245,245,0.05); padding: 0 0 36px; }
  .process-item:last-child { border-bottom: none; padding-bottom: 0; }
  .closer { padding: 56px 28px 40px; }
  .signup { padding: 48px 28px 64px; }
  footer { padding: 0 28px 36px; }
}
