/* ── Activate Audit Landing Page — Daylee Brand ── */

:root {
  --black: #1a1a1a;
  --white: #ffffff;
  --accent: #4d65ff;
  --accent-light: #eef0ff;
  --gray-50: #f8f8f8;
  --gray-100: #f0f0f0;
  --gray-200: #e0e0e0;
  --gray-400: #999;
  --gray-600: #666;
  --green: #22c55e;
  --green-bg: #f0fdf4;
  --red: #ef4444;
  --red-bg: #fef2f2;
}

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

body {
  font-family: "Montserrat", sans-serif;
  background: var(--gray-50);
  color: var(--black);
  line-height: 1.6;
  min-height: 100vh;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* ── Header ── */
.header {
  background: var(--black);
  color: var(--white);
  padding: 40px 40px 32px;
  margin: 0 -20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.header h1 {
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1.1;
}

.header h1 span { color: var(--accent); }
.tagline { color: var(--gray-400); font-size: 0.85rem; margin-top: 4px; }
.brand {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── Intro ── */
.intro {
  padding: 32px 0;
}

.intro h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.intro > p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
}

.feature span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ── Form ── */
.form-section { padding-bottom: 20px; }

.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.form-card h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.form-sub {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.optional { font-weight: 400; color: var(--gray-400); }

.field input,
.field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.2s;
  background: var(--gray-50);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.advanced {
  margin-bottom: 20px;
}

.advanced summary {
  font-size: 0.82rem;
  color: var(--accent);
  cursor: pointer;
  font-weight: 600;
  padding: 8px 0;
}

.advanced[open] summary { margin-bottom: 12px; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  width: 100%;
}

.btn-primary:hover { background: #3a50e8; }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:disabled { background: var(--gray-400); cursor: not-allowed; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s;
}

.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ── Progress ── */
.progress-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--gray-200);
  text-align: center;
  margin-top: 20px;
}

.progress-card h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}

.step::before {
  content: "";
  position: absolute;
  top: 11px;
  left: -50%;
  right: 50%;
  height: 2px;
  background: var(--gray-200);
}

.step:first-child::before { display: none; }

.step.active::before,
.step.done::before { background: var(--accent); }

.step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-200);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.step.active .step-dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light);
  animation: pulse 1.5s infinite;
}

.step.done .step-dot {
  background: var(--green);
}

.step-label {
  font-size: 0.7rem;
  color: var(--gray-400);
  text-align: center;
  font-weight: 500;
}

.step.active .step-label,
.step.done .step-label { color: var(--black); font-weight: 600; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--accent-light); }
  50% { box-shadow: 0 0 0 8px rgba(77, 101, 255, 0.1); }
}

.progress-message {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.progress-timer {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-400);
}

/* ── Result ── */
.result-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  text-align: center;
  margin-top: 20px;
}

.result-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.result-card h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.result-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.result-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.result-actions .btn-primary { width: auto; }

/* ── Error ── */
.error-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 2px solid var(--red);
  text-align: center;
  margin-top: 20px;
}

.error-card h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.error-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 40px 0 20px;
  color: var(--gray-400);
  font-size: 0.78rem;
}

.footer-brand {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer p { margin-bottom: 4px; }
.footer a { color: var(--accent); text-decoration: none; font-weight: 600; }

.privacy {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--gray-400);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .header { padding: 28px 20px 24px; flex-direction: column; align-items: flex-start; }
  .form-card { padding: 24px; }
  .step-label { font-size: 0.6rem; }
}
