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

:root {
  --bg: #0a0a0f;
  --bg-card: rgba(18, 18, 28, 0.9);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f0f0f5;
  --text-muted: #8888a0;
  --accent: #c9a84c;
  --accent-hover: #dbb95e;
  --accent-glow: rgba(201, 168, 76, 0.3);
  --success: #5cb87a;
  --radius: 16px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.landing-body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

body.landing-body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(80, 60, 180, 0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.landing-wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.landing-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeUp 0.7s ease both;
}

.landing-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 2.5rem;
  display: inline-block;
}

.landing-hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.landing-hero h1 span {
  color: var(--accent);
}

.landing-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2rem;
}

.stats-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.7s ease 0.1s both;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 140px;
  flex: 1;
  max-width: 200px;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.section {
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s ease 0.2s both;
}

.section h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-align: center;
}

.requirements {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.req-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.req-icon svg {
  width: 18px;
  height: 18px;
}

.req-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.req-text strong {
  color: var(--text);
  font-weight: 500;
  display: block;
  margin-bottom: 0.15rem;
}

.cta-section {
  text-align: center;
  margin: 3rem 0 2rem;
  animation: fadeUp 0.7s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 32px var(--accent-glow);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 0 48px var(--accent-glow);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.application-panel {
  display: none;
  margin-top: 2.5rem;
  animation: fadeUp 0.5s ease both;
}

.application-panel.is-visible {
  display: block;
}

.application-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  backdrop-filter: blur(20px);
}

.application-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}

.application-card > p {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.instagram-link:hover {
  text-decoration: underline;
}

.instagram-link svg {
  width: 22px;
  height: 22px;
}

.message-template {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.message-template pre {
  font-family: var(--font);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  white-space: pre-wrap;
  word-break: break-word;
}

.btn-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  margin-bottom: 1.25rem;
}

.btn-copy:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-copy.is-copied {
  border-color: rgba(92, 184, 122, 0.4);
  color: var(--success);
}

.btn-copy svg {
  width: 16px;
  height: 16px;
}

.reply-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.reply-note strong {
  color: var(--text);
}

.landing-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.7s ease 0.4s both;
}

.landing-footer a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
}

.landing-footer a:hover {
  color: var(--accent);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .landing-wrap {
    padding: 1.75rem 1rem 3rem;
  }

  .stats-row {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    max-width: 100%;
    width: 100%;
  }
}
