/* ============================================================
   luseen.co — Subscribe page styles
   ============================================================ */


body.subscribe-page { min-height: 100vh; display: flex; flex-direction: column; }

main.subscribe-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

main.subscribe-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10,10,10,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
}

/* Ambient shapes */
.amb { position: absolute; pointer-events: none; z-index: 0; }
.amb.c-lg {
  top: 8%; left: -80px;
  width: 280px; height: 280px;
  border: 2px solid var(--red);
  border-radius: 50%;
  animation: ambDrift 14s ease-in-out infinite;
}
.amb.sq {
  bottom: 10%; right: -40px;
  width: 180px; height: 180px;
  background: var(--blue);
  opacity: 0.95;
  animation: ambDrift 16s ease-in-out infinite reverse;
}
.amb.dot-red {
  top: 18%; right: 12%;
  width: 20px; height: 20px;
  background: var(--red);
  border-radius: 50%;
  animation: ambDrift 8s ease-in-out infinite;
}
.amb.dot-blue {
  bottom: 22%; left: 15%;
  width: 12px; height: 12px;
  background: var(--blue);
  border-radius: 50%;
  animation: ambDrift 11s ease-in-out infinite reverse;
}
.amb.ring-blue {
  top: 65%; left: 8%;
  width: 90px; height: 90px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  animation: ambDrift 13s ease-in-out infinite;
}
@keyframes ambDrift {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50%      { transform: translate(30px, -40px) rotate(20deg); }
}


/* ───────────── CONTENT ───────────── */
.subscribe {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
  text-align: center;
}

.subscribe .eyebrow {
  color: var(--red);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s ease forwards;
}
.subscribe .eyebrow .line { background: var(--red); }

.subscribe h1 {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 400;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s 0.25s var(--ease-out-quart) forwards;
}
.subscribe h1 em { font-style: italic; font-weight: 300; color: var(--red); }
.subscribe h1 .blue { color: var(--blue); font-style: italic; font-weight: 300; }

.subhead {
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}
.subhead strong { color: var(--ink); font-weight: 600; }


/* ───────────── FORM ───────────── */
.form-wrap {
  max-width: 520px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}

.form {
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  background: var(--paper);
  transition: all 0.3s;
}
.form:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(228, 6, 19, 0.08);
}
.form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 20px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.form input::placeholder { color: rgba(10,10,10,0.4); }
.form button {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.form button:hover { background: var(--red); }
.form button:disabled { background: var(--blue); cursor: default; }

.form-note {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.form-note .dot { color: var(--red); }


/* ───────────── SUCCESS STATE ───────────── */
.success {
  display: none;
  max-width: 520px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--ink);
  background: var(--paper);
  text-align: left;
  position: relative;
}
.success::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
}
.success.active { display: block; animation: fadeUp 0.5s ease forwards; }
.success-mark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.success h2 {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: 16px;
}
.success h2 em { font-style: italic; font-weight: 300; color: var(--blue); }
.success p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }


/* ───────────── PROOF STRIP ───────────── */
.sub-strip {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  gap: 60px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
}
.sub-strip span { display: flex; align-items: center; gap: 10px; }
.sub-strip .check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
}
.sub-strip span:nth-child(2) .check { background: var(--blue); }
.sub-strip span:nth-child(3) .check { background: var(--ink); }


/* ───────────── RESPONSIVE ───────────── */
@media (max-width: 700px) {
  main.subscribe-main { padding: 40px 24px; }
  .subscribe h1 { font-size: 52px; margin-bottom: 28px; }
  .subhead { font-size: 17px; margin-bottom: 40px; }
  .form { flex-direction: column; border-radius: 20px; padding: 12px; gap: 10px; }
  .form input { padding: 14px 16px; }
  .form button { border-radius: 100px; padding: 16px; }
  .sub-strip { flex-direction: column; gap: 18px; margin-top: 60px; align-items: flex-start; }
  .amb { display: none; }
}
