:root {
  --rosa-mexicano: #e4007c;
  --black: #0f0f10;
  --white: #ffffff;
  --muted: #f5f5f7;
  --card: #18181b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--white);
  background: linear-gradient(180deg, #0f0f10 0%, #16161a 100%);
  line-height: 1.5;
}

.hero {
  padding: 1.25rem 1.25rem 3rem;
  min-height: 75vh;
  background:
    radial-gradient(circle at 90% 10%, rgba(228, 0, 124, 0.45), transparent 35%),
    radial-gradient(circle at 15% 10%, rgba(228, 0, 124, 0.2), transparent 30%);
}

.top-nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 100px;
  width: auto;
}

.nav-cta,
.primary-btn,
.signup-form button {
  border: none;
  background: var(--rosa-mexicano);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.nav-cta:hover,
.primary-btn:hover,
.signup-form button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.hero-content {
  max-width: 900px;
  margin: 5.5rem auto 0;
}

.eyebrow {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rosa-mexicano);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  max-width: 16ch;
  margin-bottom: 1rem;
}

.subheadline {
  max-width: 56ch;
  margin-bottom: 1.6rem;
  font-size: clamp(1rem, 2.3vw, 1.2rem);
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.product-teaser {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.mockup {
  background: linear-gradient(145deg, #1c1c20, #121214);
  border: 1px solid rgba(228, 0, 124, 0.4);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.score-panel {
  background: #080809;
  border-radius: 0.8rem;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.score-panel span,
.score-panel small {
  display: block;
  color: #d4d4d8;
}

.score-panel strong {
  font-size: 2rem;
  color: var(--rosa-mexicano);
}

.touch-pads {
  display: grid;
  grid-template-columns: repeat(2, minmax(80px, 1fr));
  gap: 0.75rem;
}

.touch-pads span {
  border: 1px solid #313136;
  border-radius: 0.7rem;
  padding: 0.9rem;
  text-align: center;
  font-weight: 600;
}

.features h2,
.signup h2,
.excitement h2 {
  margin-bottom: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid rgba(228, 0, 124, 0.25);
  border-radius: 0.9rem;
  padding: 1rem;
}

.icon {
  font-size: 1.2rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  background: rgba(228, 0, 124, 0.2);
  border-radius: 0.45rem;
  margin-bottom: 0.8rem;
}

.excitement {
  text-align: center;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--rosa-mexicano);
  color: var(--white);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
}

.signup-form {
  display: grid;
  gap: 0.9rem;
  max-width: 560px;
}

.signup-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
}

input[type='text'],
input[type='email'],
textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #34343a;
  background: #111214;
  color: var(--white);
  padding: 0.7rem;
}

textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500 !important;
}


.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  margin-top: 0.8rem;
  color: #d4d4d8;
  font-size: 0.92rem;
}

.success-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  max-width: min(92vw, 420px);
  background: rgba(15, 15, 16, 0.95);
  color: var(--white);
  border: 1px solid rgba(228, 0, 124, 0.5);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.success-toast.hide {
  opacity: 0;
  transform: translateY(8px);
}
.footer {
  border-top: 1px solid #27272a;
  padding: 2rem 1.25rem 2.6rem;
  text-align: center;
  color: #d4d4d8;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links a {
  color: #f4f4f5;
}

@media (max-width: 900px) {
  .product-teaser,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    margin-top: 3rem;
  }

  .product-teaser,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
