@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/bebas-neue-400.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/dm-sans-300.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dm-sans-400.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/dm-sans-500.woff2") format("woff2");
}

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

:root {
  --cs-bg: #0a0a0a;
  --cs-accent: #f9b209;
  --cs-accent-hover: #ffc020;
  --cs-white: #ffffff;
  --cs-text-muted: rgba(255, 255, 255, 0.6);
  --cs-text-faint: rgba(255, 255, 255, 0.35);
  --cs-surface: rgba(255, 255, 255, 0.07);
  --cs-surface-hover: rgba(255, 255, 255, 0.11);
  --cs-border: rgba(255, 255, 255, 0.12);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--cs-bg);
  color: var(--cs-white);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.cs-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.cs-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cs-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.72) 40%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

.cs-bg-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(249, 178, 9, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cs-page {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  min-height: 100vh;
  padding: 1.5rem;
}

.cs-content {
  max-width: 400px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cs-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cs-logo-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.75rem, 17vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--cs-white);
  line-height: 1;
}

.cs-logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cs-accent);
  margin-top: 4px;
  text-align: center;
}

.cs-badge {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  border: 1px solid rgba(249, 178, 9, 0.4);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--cs-accent);
  background: rgba(249, 178, 9, 0.08);
  margin-bottom: 0.75rem;
}

.cs-copy {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
  margin-bottom: 1rem;
}

.cs-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  margin-bottom: 1rem;
}

.cs-ctas {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cs-ctas-label {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.2rem;
}

.cs-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.cs-btn:hover {
  transform: translateY(-2px);
}
.cs-btn:active {
  transform: translateY(0);
}

.cs-btn--whatsapp,
.cs-btn--instagram {
  background: rgba(255, 255, 255, 0.07);
  color: var(--cs-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cs-btn--whatsapp svg {
  color: #25d366;
}

.cs-btn--whatsapp:hover,
.cs-btn--instagram:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.2);
}

.cs-form-section {
  width: 100%;
  margin-bottom: 0.75rem;
}

.cs-attack-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
  margin-bottom: 0.75rem;
}

.cs-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cs-form input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--cs-white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.2s ease;
}

.cs-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.cs-form input[type="email"]:focus {
  border-color: rgba(249, 178, 9, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.cs-form button[type="submit"] {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--cs-accent);
  color: var(--cs-bg);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.cs-form button[type="submit"]:hover {
  background: #ffc020;
  box-shadow: 0 4px 20px rgba(249, 178, 9, 0.28);
}

.cs-form button[type="submit"]:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.cs-form-msg {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  min-height: 1.1em;
  text-align: center;
}
.cs-form-msg.success {
  color: var(--cs-accent);
}
.cs-form-msg.error {
  color: #ff4444;
}

.cs-email-link {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
.cs-email-link:hover {
  color: rgba(255, 255, 255, 0.6);
}

.cs-footer {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cs-content > * {
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}
.cs-content > *:nth-child(1) {
  animation-delay: 0.05s;
}
.cs-content > *:nth-child(2) {
  animation-delay: 0.12s;
}
.cs-content > *:nth-child(3) {
  animation-delay: 0.18s;
}
.cs-content > *:nth-child(4) {
  animation-delay: 0.24s;
}
.cs-content > *:nth-child(5) {
  animation-delay: 0.3s;
}
.cs-content > *:nth-child(6) {
  animation-delay: 0.35s;
}
.cs-content > *:nth-child(7) {
  animation-delay: 0.4s;
}
.cs-content > *:nth-child(8) {
  animation-delay: 0.44s;
}
.cs-content > *:nth-child(9) {
  animation-delay: 0.48s;
}
