:root {
  --color-bg: #0A0A0A;
  --color-surface: #1C1C1C;
  --color-border: #1E1E1E;
  --color-accent: #FF4E00;
  --color-heading: #F2EDE6;
  --color-body: #888888;
  --font-body: 'FK Grotesk', -apple-system, sans-serif;
}

@font-face {
  font-family: 'FK Grotesk';
  src: url('./FKGroteskTrial-Thin.otf') format('opentype');
  font-weight: 400; /* Assuming thin for body or fallback, user might replace later */
  font-style: normal;
}

@font-face {
  font-family: 'FK Grotesk';
  src: url('./FKGroteskTrial-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-body);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.8;
}

h1, h2, h3, h4, .heading {
  color: var(--color-heading);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.logo-text {
  color: var(--color-accent);
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-text img, .logo-text svg {
  height: 24px;
}
.youtube-link {
  border: 1px solid var(--color-border);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--color-body);
  display: flex;
  align-items: center;
  gap: 6px;
}
.youtube-link:hover {
  border-color: var(--color-body);
}

/* Hero Section */
.hero {
  text-align: center;
  margin: 60px 0 40px;
  animation: fadeIn 0.8s ease-out forwards;
}
.tag-coming-soon {
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}
.hero-sub {
  color: var(--color-body);
  margin-bottom: 40px;
}

/* Form Styles */
.waitlist-form {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-direction: column;
}
input {
  background: #fff;
  border: none;
  padding: 14px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  width: 100%;
}
input:focus {
  box-shadow: 0 0 0 2px var(--color-accent);
}
button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 14px rgba(255, 78, 0, 0.3);
}
button:hover {
  transform: translateY(-2px);
  background: #e64600;
}
button:active {
  transform: translateY(0);
}

.waitlist-status {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-body);
}
.waitlist-status span {
  color: var(--color-accent);
  font-weight: 900;
}

/* Divider & Text */
.divider-text {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--color-heading);
  margin: 60px 0;
  line-height: 1.4;
}
.divider-text span {
  color: var(--color-accent);
  font-style: italic;
}

/* Cards Section */
.section-title {
  font-size: 0.85rem;
  color: var(--color-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s, border-color 0.2s;
}
.card:hover {
  transform: translateY(-2px);
  border-color: #333;
}
.card-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 78, 0, 0.1);
  color: var(--color-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.card p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-body);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
}

.stats-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.stats-card .stats-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-heading);
}

/* Footer & Focus Group */
.focus-group {
  margin-top: 80px;
  margin-bottom: 40px;
  text-align: center;
}
.focus-group p {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--color-heading);
  margin-bottom: 32px;
}

footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  margin-top: 40px;
}
.footer-text {
  font-size: 0.8rem;
  color: var(--color-body);
  margin-top: 16px;
}

@media (min-width: 600px) {
  .waitlist-form {
    flex-direction: row;
  }
  .waitlist-form input {
    flex: 1;
  }
  .waitlist-form button {
    width: auto;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .stats-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

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

/* Loader */
.submit-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: rotation 1s linear infinite;
  margin: 0 auto;
}
@keyframes rotation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.loading .submit-text {
  display: none;
}
.loading .submit-loader {
  display: block;
}
