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

html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  background: #1a1712;
  display: flex;
  flex-direction: column;
  font-family: 'Cormorant Garamond', serif;
  position: relative;
  overflow: hidden;
}

/* ── Background glows ── */
.bg-glow {
  position: fixed;
  bottom: -80px;
  right: -60px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,140,40,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-2 {
  position: fixed;
  top: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160,100,30,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── Page wrapper ── */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 48px;
  position: relative;
  z-index: 2;
}

/* ── Top bar ── */
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  animation: up 0.8s ease 0.1s forwards;
}

/* Brand — Playfair italic for Terremoto, mono for Digital */
.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.08em;
  color: rgba(240,205,120,0.95);
}

.wordmark span {
  font-family: 'DM Mono', monospace;
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(210,175,90,0.45);
  margin-left: 8px;
  text-transform: uppercase;
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(210,175,90,0.55);
  text-transform: uppercase;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(210,175,90,0.7);
  animation: blink 2.5s ease-in-out infinite;
}

/* ── Middle ── */
.middle {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  color: rgba(210,175,90,0.55);
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0;
  animation: up 0.8s ease 0.3s forwards;
}

.headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 11vw, 92px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #faecc0;
  margin-bottom: 6px;
  opacity: 0;
  animation: up 1.1s ease 0.4s forwards;
}

/* stranger — dimmed, ghosted */
.headline .soft {
  color: rgba(200,165,75,0.38);
  display: block;
}

/* we're shaking things up — bright and readable */
.italic-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: rgba(235,195,100,0.82);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  opacity: 0;
  animation: up 0.8s ease 0.75s forwards;
}

/* Rules */
.rule {
  height: 1px;
  background: rgba(210,175,90,0.18);
  margin-bottom: 32px;
  max-width: 100%;
  opacity: 0;
  animation: up 0.8s ease 0.65s forwards;
}

.rule--soft {
  background: rgba(210,175,90,0.1);
  margin-top: 8px;
  margin-bottom: 28px;
  animation-delay: 1.05s;
}

/* ── Quote ── */
.quote-center {
  margin-bottom: 8px;
  opacity: 0;
  animation: up 0.8s ease 0.85s forwards;
}

.quote-mark-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  line-height: 0.8;
  color: rgba(210,175,90,0.22);
  font-style: italic;
  margin-bottom: 6px;
}

.quote-main {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 21px;
  line-height: 1.5;
  color: rgba(240,205,130,0.88);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.quote-attr {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(210,175,90,0.45);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.quote-disruptor {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(210,175,90,0.55);
  text-transform: lowercase;
}

/* ── Form ── */
.form-wrap {
  opacity: 0;
  animation: up 0.8s ease 1.1s forwards;
  max-width: 380px;
}

.form-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: rgba(235,195,100,0.65);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.form-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(210,175,90,0.38);
  text-transform: uppercase;
  margin-bottom: 11px;
}

.form-row {
  display: flex;
}

.form-input {
  flex: 1;
  padding: 13px 16px;
  background: transparent;
  border: 1px solid rgba(210,175,90,0.22);
  border-right: none;
  color: #faecc0;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input::placeholder {
  color: rgba(210,175,90,0.28);
}

.form-input:focus {
  border-color: rgba(210,175,90,0.55);
  background: rgba(210,175,90,0.04);
}

.form-btn {
  padding: 13px 22px;
  background: transparent;
  border: 1px solid rgba(210,175,90,0.38);
  color: rgba(240,205,120,0.82);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
  border-radius: 0;
}

.form-btn:hover {
  background: rgba(210,175,90,0.1);
  border-color: rgba(210,175,90,0.65);
  color: #faecc0;
}

.form-confirm {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(220,185,100,0.72);
  margin-top: 12px;
  letter-spacing: 0.03em;
}

/* ── Bottom ── */
.bottom {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  opacity: 0;
  animation: up 0.8s ease 1.4s forwards;
}

.bottom-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.big-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  line-height: 1;
  color: rgba(210,175,90,0.16);
  letter-spacing: 0.06em;
}

.prog-bar {
  width: 100px;
  height: 1px;
  background: rgba(210,175,90,0.13);
}

.prog-fill {
  height: 100%;
  background: rgba(210,175,90,0.55);
  width: 0;
  animation: fill 2s ease 1.8s forwards;
}

.prog-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  color: rgba(210,175,90,0.38);
  text-transform: uppercase;
}

/* ── Animations ── */
@keyframes up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fill {
  to { width: 68%; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .page { padding: 28px 24px; }
  .headline { font-size: clamp(50px, 15vw, 72px); }
}