/* Page-specific token overrides (cyan-tinted subtle + form input tokens) */
:root {
  --accent-subtle: rgba(3, 202, 244, 0.06);
  --accent-subtle2: rgba(3, 202, 244, 0.12);
  --input-bg: #ffffff;
  --input-border: rgba(10, 10, 10, 0.18);
  --input-focus: #03caf4;
}

/* ─── PAGE WRAPPER ─── */
.page-wrap {
  padding-top: 92px;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 5rem 2rem 4rem;
  text-align: center;
  border-bottom: 0.5px solid var(--line2);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, var(--accent-subtle) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: "DM Mono", monospace;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.43em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 0.5px;
  background: var(--accent);
}
.hero-eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 0.5px;
  background: var(--accent);
}
.page-hero h1 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--text3);
}
.page-hero p {
  font-size: 0.88rem;
  color: var(--text3);
  line-height: 1.95;
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ─── SCARCITY BADGE ─── */
.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-subtle2);
  border: 0.5px solid rgba(3, 202, 244, 0.25);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-family: "DM Mono", monospace;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--tag-text);
  margin-bottom: 2rem;
}
.scarcity-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

/* ─── MAIN LAYOUT ─── */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  align-items: start;
}

/* ─── LEFT PANEL: What you get ─── */
.left-panel {
  padding-right: 4rem;
  position: sticky;
  top: 90px;
}
.panel-label {
  font-family: "DM Mono", monospace;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1.5rem;
}
.left-panel h2 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 2.5rem;
}
.left-panel h2 em {
  font-style: italic;
  color: var(--text3);
}

/* What happens list */
.what-happens {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.what-happens li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 0.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Mono", monospace;
  font-weight: 500;
  font-size: 0.6rem;
  color: var(--accent);
  margin-top: 2px;
}
.step-content strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.step-content p {
  font-size: 0.78rem;
  color: var(--text3);
  line-height: 1.7;
}

/* Guarantee block */
.guarantee-block {
  background: var(--card);
  border: 0.5px solid var(--line);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.guarantee-block .g-label {
  font-family: "DM Mono", monospace;
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 0.75rem;
}
.guarantee-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.guarantee-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text);
}
.guarantee-list li::before {
  content: "✓";
  color: var(--accent2);
  font-family: "DM Mono", monospace;
  font-weight: 500;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Pricing note */
.pricing-note {
  background: var(--accent-subtle);
  border-left: 2px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.25rem;
}
.pricing-note p {
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.7;
}
.pricing-note strong {
  color: var(--accent);
}

/* ─── RIGHT PANEL: Form ─── */
.form-card {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.form-title {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-subtitle {
  font-size: 0.75rem;
  color: var(--text3);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.35rem;
}
label {
  display: block;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 0.45rem;
}
label .req {
  color: var(--accent);
  margin-left: 2px;
}
input[type="text"],
input[type="email"],
input[type="url"],
select,
textarea {
  width: 100%;
  background: var(--input-bg);
  border: 0.5px solid var(--input-border);
  border-radius: 7px;
  padding: 0.7rem 0.95rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder {
  color: var(--text3);
  opacity: 0.6;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 3px rgba(3, 202, 244, 0.1);
}
textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.char-hint {
  font-size: 0.68rem;
  color: var(--text3);
  margin-top: 0.35rem;
  font-family: "DM Mono", monospace;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.char-hint.done {
  color: var(--accent2);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}

/* Checkbox group */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  padding: 0.55rem 0.85rem;
  border: 0.5px solid var(--line2);
  border-radius: 7px;
  transition:
    border-color 0.2s,
    background 0.2s;
  user-select: none;
}
.check-item:hover {
  border-color: rgba(100, 100, 100, 0.4);
  background: rgba(0, 0, 0, 0.06);
}
.check-item.checked {
  border-color: #555555;
  background: rgba(0, 0, 0, 0.08);
}
.check-item input[type="checkbox"] {
  width: auto;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}
.check-label {
  font-size: 0.77rem;
  color: var(--text);
  line-height: 1.4;
}
.check-item.checked .check-label {
  color: #222222;
  font-weight: 500;
}

/* Two-col input row */
.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Divider */
.form-divider {
  border: none;
  border-top: 0.5px solid var(--line2);
  margin: 1.75rem 0;
}
.form-section-label {
  font-family: "DM Mono", monospace;
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.form-section-label::after {
  content: "";
  flex: 1;
  height: 0.5px;
  background: var(--line2);
}

/* Submit button */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.5rem auto 0;
  padding: 0.65rem 2rem;
  width: auto;
  background: var(--accent-bright);
  color: #000000;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 2px 0 rgba(2, 131, 159, 0.4),
    0 4px 12px rgba(3, 202, 244, 0.18);
  transition:
    background 0.15s,
    transform 0.15s,
    box-shadow 0.15s;
  position: relative;
  top: 0;
}
.btn-submit:hover:not(:disabled) {
  background: var(--accent-bright-hover);
  transform: translateY(-1px);
  box-shadow:
    0 5px 0 rgba(2, 131, 159, 0.4),
    0 8px 20px rgba(3, 202, 244, 0.28);
}
.btn-submit:active:not(:disabled) {
  transform: translateY(2px);
  box-shadow:
    0 1px 0 rgba(2, 131, 159, 0.4),
    0 2px 6px rgba(3, 202, 244, 0.15);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-submit svg {
  flex-shrink: 0;
}

.form-fine-print {
  font-size: 0.68rem;
  color: var(--text3);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0 1rem;
}
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-subtle2);
  border: 1px solid rgba(3, 202, 244, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}
.form-success h3 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.form-success h3 em {
  font-style: italic;
  color: var(--text3);
}
.form-success p {
  font-size: 0.8rem;
  color: var(--text3);
  line-height: 1.75;
  max-width: 300px;
  margin: 0 auto;
}

/* ─── URGENCY BANNER ─── */
.urgency-banner {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  padding: 0.85rem 2rem;
  text-align: center;
  font-family: "DM Mono", monospace;
  font-weight: 500;
  font-size: 0.63rem;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.urgency-banner .bonus-tag {
  background: #000000;
  color: #ffffff;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  letter-spacing: 0.36em;
  flex-shrink: 0;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .page-hero {
    padding: 4rem 1.5rem 3rem;
  }
  .main-grid {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 5rem;
    gap: 3rem;
  }
  .left-panel {
    padding-right: 0;
    position: static;
  }
  .input-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .form-card {
    padding: 1.75rem 1.25rem;
  }
  .page-hero h1 {
    font-size: 2.2rem;
  }
}
