* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #111827;
  background: #f9fafb;
}

.lp-shell {
  width: min(1358px, 100%);
  min-height: 783px;
  margin: 0 auto;
  position: relative;
  padding: 24px 39px 40px;
  overflow: hidden;
}

.lp-shell::before,
.lp-shell::after {
  content: "";
  position: absolute;
  width: 404px;
  height: 404px;
  pointer-events: none;
  opacity: 0.6;
  background-image: radial-gradient(circle, #d1d5db 1.4px, transparent 1.4px);
  background-size: 16px 16px;
}

.lp-shell::before {
  left: -163px;
  top: 196px;
}

.lp-shell::after {
  right: -163px;
  top: -30px;
}

.lp-header {
  width: 1280px;
  max-width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  margin: 0 auto 96px;
  position: relative;
  z-index: 2;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 35px;
  height: 32px;
  object-fit: contain;
}

.brand-text {
  color: #111827;
  font-size: 35px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.brand-text-accent {
  color: #7bc043;
}

.brand-full {
  width: 140px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.lp-hero {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.lp-title {
  color: #111827;
  font-size: clamp(42px, 5.2vw, 60px);
  line-height: 60px;
  letter-spacing: -1.5px;
  font-weight: 800;
}

.hero-accent {
  color: #7bc043;
}

.lp-subtitle {
  margin-top: 20px;
  color: #6b7280;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}

.verify-layout {
  margin: 90px auto 0;
  width: 1060px;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 30px;
  align-items: start;
}

.field-group {
  text-align: left;
}

.field-group label {
  display: block;
  color: #111827;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.verify-layout textarea {
  width: 100%;
  height: 140px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 14px 16px;
  resize: none;
  font-family: 'Inter', sans-serif;
  color: #111827;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.verify-layout textarea::placeholder {
  color: #9ca3af;
}

.verify-layout textarea:focus {
  outline: 2px solid #a5f3fc;
  outline-offset: 1px;
}

.dropzone {
  width: 100%;
  height: 140px;
  border: 2px dashed #d1d5db;
  border-radius: 6px;
  background: transparent;
  padding: 22px 26px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease;
  position: relative;
}

.dropzone:hover,
.dropzone.dragover,
.dropzone.has-file {
  border-color: #9ca3af;
}

.dropzone input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.dropzone-icon {
  width: 48px;
  height: 48px;
  color: #9ca3af;
  display: inline-flex;
  margin-bottom: 8px;
}

.dropzone-icon svg {
  width: 48px;
  height: 48px;
}

.dropzone-title {
  font-size: 14px;
  line-height: 20px;
  color: #4b5563;
  font-weight: 500;
}

.dropzone-sub {
  font-size: 12px;
  line-height: 16px;
  color: #6b7280;
}

.dropzone-file {
  margin-top: 8px;
  font-size: 12px;
  color: #4f46e5;
}

.btn {
  border: 0;
  border-radius: 6px;
  min-height: 62px;
  padding: 17px 41px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
}

.btn.primary {
  background: #7bc043;
  color: #ffffff;
}

.btn-cta {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 167px;
  white-space: nowrap;
}

.verify-msg {
  width: 1060px;
  max-width: 100%;
  margin: 14px auto 0;
  min-height: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}

.verify-msg.error {
  color: #7E6A8B;
}

.hidden {
  display: none;
}

.spline-state {
  width: 1060px;
  max-width: 100%;
  margin: 12px auto 0;
  text-align: left;
}

.state-title {
  color: #111827;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}

.state-sub {
  margin-top: 4px;
  color: #6b7280;
  font-size: 14px;
  line-height: 20px;
}

.spline-shell {
  margin-top: 12px;
}

.spline-view {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.spline-view spline-viewer {
  display: block;
  width: 100%;
  height: 260px;
}

.spline-fallback {
  display: none;
  border: 1px dashed #d1d5db;
  border-radius: 6px;
  background: #fff;
  padding: 16px;
}

.spline-fallback img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  margin-bottom: 8px;
}

.spline-fallback h3 {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
}

.spline-fallback p {
  color: #6b7280;
  font-size: 12px;
  line-height: 16px;
}

.spline-shell.is-fallback .spline-view {
  display: none;
}

.spline-shell.is-fallback .spline-fallback {
  display: block;
}

@media (max-width: 900px) {
  .lp-shell {
    min-height: 100vh;
    padding: 16px;
  }

  .lp-shell::before,
  .lp-shell::after {
    display: none;
  }

  .lp-header {
    margin-bottom: 40px;
  }

  .brand-mark {
    width: 30px;
    height: 28px;
  }

  .brand-text {
    font-size: 28px;
    line-height: 32px;
  }

  .lp-title {
    font-size: 42px;
    line-height: 1.03;
    letter-spacing: -1px;
  }

  .lp-subtitle {
    font-size: 24px;
    line-height: 1.2;
  }

  .verify-layout {
    margin-top: 48px;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .field-group label {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .btn {
    font-size: 18px;
  }

  .btn-cta {
    width: 100%;
  }

  .spline-view spline-viewer {
    height: 220px;
  }
}
