:root {
  --ink: #0d0f13;
  --ink-soft: #151923;
  --paper: #fbf7ef;
  --line: rgba(255, 255, 255, 0.14);
  --muted: #aeb7c9;
  --white: #fffaf0;
  --pink: #ff3b87;
  --cyan: #35d7ff;
  --gold: #ffd36a;
  --green: #48e0a4;
  --danger: #ff765f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(13, 15, 19, 0.2), var(--ink) 52%),
    var(--ink);
}

button,
input,
textarea {
  font: inherit;
}

.app-shell {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 22px clamp(18px, 5vw, 72px) 56px;
}

.hero-art,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 15, 19, 0.93) 0%, rgba(13, 15, 19, 0.76) 35%, rgba(13, 15, 19, 0.25) 72%, rgba(13, 15, 19, 0.68) 100%),
    linear-gradient(180deg, rgba(13, 15, 19, 0.22), rgba(13, 15, 19, 0.9));
}

.topbar {
  position: absolute;
  top: 22px;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  font-size: 1.08rem;
  min-width: 0;
  white-space: nowrap;
}

.site-brand {
  flex: 0 0 auto;
  min-height: 40px;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  box-shadow: 0 0 24px rgba(53, 215, 255, 0.34);
  font-size: 1rem;
  line-height: 1;
}

.brand-name {
  display: inline-block;
  line-height: 1;
}

.nav-status {
  display: flex;
  gap: 10px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-status span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(13, 15, 19, 0.46);
  backdrop-filter: blur(16px);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

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

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.2rem, 9vw, 7.6rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.65rem);
}

.hero-copy {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: #dfe7f2;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-link,
.secondary-link,
.primary-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.primary-link,
.primary-button {
  border: 0;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  box-shadow: 0 0 28px rgba(53, 215, 255, 0.28);
}

.secondary-link {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hunt-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 56px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(330px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(13, 15, 19, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hunt-card p {
  margin: 4px 0 0;
  color: var(--muted);
}

.pulse {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(72, 224, 164, 0.14), 0 0 26px rgba(72, 224, 164, 0.8);
}

.product-strip,
.workspace-grid,
.trust-section,
.match-policy-section,
.faq-section,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  transform: translateY(-26px);
}

.product-strip div {
  padding: 22px;
  background: rgba(21, 25, 35, 0.92);
}

.product-strip span {
  color: var(--pink);
  font-weight: 950;
}

.product-strip strong {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
}

.product-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  padding: 18px 0 72px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(21, 25, 35, 0.88);
  box-shadow: var(--shadow);
}

.hunt-form {
  padding: 28px;
}

.section-header {
  margin-bottom: 24px;
}

.upload-zone {
  position: relative;
  min-height: 278px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 59, 135, 0.12), rgba(53, 215, 255, 0.09)),
    rgba(255, 255, 255, 0.04);
  cursor: pointer;
  overflow: hidden;
}

.upload-zone.is-dragging {
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(53, 215, 255, 0.18) inset;
}

.upload-zone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-symbol {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-size: 1.8rem;
  font-weight: 900;
}

.upload-zone small,
.field-label span,
.budget-copy p {
  color: var(--muted);
}

#image-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-label {
  display: block;
  margin: 22px 0 8px;
  font-weight: 900;
}

textarea,
input[type="number"],
input[type="email"] {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

textarea {
  resize: vertical;
  padding: 14px;
  line-height: 1.5;
}

input[type="number"],
input[type="email"] {
  min-height: 50px;
  padding: 0 14px;
}

textarea:focus,
input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(53, 215, 255, 0.16);
}

.budget-copy {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
}

.budget-copy p {
  margin: 0;
  line-height: 1.45;
}

.budget-copy strong {
  align-self: start;
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--cyan);
  font-size: 0.78rem;
}

.budget-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.budget-inputs span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.range-control {
  position: relative;
  height: 42px;
}

.range-rail,
.range-rail span {
  position: absolute;
  top: 18px;
  height: 6px;
  border-radius: 999px;
}

.range-rail {
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.16);
}

.range-rail span {
  background: linear-gradient(90deg, var(--pink), var(--cyan));
}

.range-control input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  pointer-events: none;
  appearance: none;
  background: transparent;
}

.range-control input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 16px rgba(255, 59, 135, 0.62);
  pointer-events: auto;
  appearance: none;
}

.field-error {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--danger);
  font-size: 0.9rem;
  font-weight: 850;
}

.primary-button {
  width: 100%;
  margin-top: 16px;
}

.feed-panel {
  min-height: 650px;
  padding: 28px 0 28px 28px;
  overflow: hidden;
}

.feed-panel .section-header {
  padding-right: 28px;
}

.feed-frame {
  height: 446px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.match-feed {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px 28px 18px 0;
  list-style: none;
  animation: feed-scroll 18s linear infinite;
}

.match-feed li {
  min-height: 94px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.match-feed span {
  color: #d9e0ee;
  line-height: 1.35;
}

.match-feed strong {
  color: var(--gold);
}

@keyframes feed-scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.policy-note {
  margin: 20px 28px 0 0;
  padding: 16px;
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: 8px;
  background: rgba(255, 211, 106, 0.08);
}

.policy-note p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.trust-section,
.match-policy-section,
.faq-section {
  padding: 26px 0 42px;
}

.section-kicker {
  max-width: 780px;
  margin-bottom: 22px;
}

.section-kicker p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
}

.pricing-grid,
.match-policy-grid {
  display: grid;
  gap: 14px;
}

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

.match-policy-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-grid article,
.match-policy-grid article {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(21, 25, 35, 0.82);
}

.pricing-grid span {
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-grid strong,
.match-policy-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 1.22rem;
  line-height: 1.15;
}

.pricing-grid p,
.match-policy-grid p,
.faq-list p {
  color: var(--muted);
  line-height: 1.5;
}

.faq-section {
  padding-bottom: 74px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 950;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
}

.section-cta {
  width: fit-content;
  margin-top: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 950;
}

.site-footer nav {
  display: flex;
  gap: 14px;
}

.site-footer a {
  color: var(--cyan);
  font-weight: 850;
  text-decoration: none;
}

.processing-overlay {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  background: rgba(13, 15, 19, 0.72);
  backdrop-filter: blur(8px);
}

.processing-box,
.modal-body {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #141923;
  box-shadow: var(--shadow);
}

.processing-box {
  display: grid;
  place-items: center;
  gap: 14px;
  width: min(360px, calc(100vw - 36px));
  padding: 30px;
  text-align: center;
  font-weight: 900;
}

.spinner {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(255, 255, 255, 0.16);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.waitlist-modal {
  width: min(560px, calc(100vw - 32px));
  border: 0;
  padding: 0;
  color: var(--white);
  background: transparent;
}

.waitlist-modal::backdrop {
  background: rgba(13, 15, 19, 0.72);
}

.modal-body {
  position: relative;
  padding: 30px;
}

.modal-body p {
  color: var(--muted);
  line-height: 1.55;
}

.reward {
  padding: 14px;
  border-left: 4px solid var(--pink);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 59, 135, 0.1);
  color: var(--white) !important;
  font-weight: 850;
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.success-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  width: min(430px, calc(100vw - 48px));
  padding: 18px 20px;
  border: 1px solid rgba(72, 224, 164, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: rgba(23, 83, 62, 0.96);
  box-shadow: var(--shadow);
  font-weight: 850;
}

@media (max-width: 920px) {
  .hero {
    min-height: 820px;
  }

  .hunt-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .product-strip,
  .workspace-grid,
  .pricing-grid,
  .match-policy-grid {
    grid-template-columns: 1fr;
  }

  .workspace-grid {
    width: min(680px, calc(100% - 24px));
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 760px;
    padding-bottom: 34px;
  }

  .topbar,
  .nav-status,
  .hero-actions,
  .budget-copy {
    align-items: flex-start;
  }

  .topbar,
  .hero-actions,
  .budget-copy {
    flex-direction: column;
  }

  .topbar {
    gap: 14px;
  }

  .nav-status {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nav-status {
    gap: 6px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.6rem);
  }

  .product-strip {
    width: calc(100% - 24px);
  }

  .hunt-form,
  .feed-panel {
    padding: 22px;
  }

  .feed-panel .section-header,
  .policy-note {
    padding-right: 0;
    margin-right: 0;
  }

  .match-feed {
    padding-right: 0;
  }

  .budget-inputs {
    grid-template-columns: 1fr;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }
}
