@import url('./design-tokens.css');

body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
}

.section {
  padding: 4rem 2rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.button {
  background: var(--accent);
  color: white;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s;
}

.button:hover {
  background: var(--accent-hover);
}

/* NAVIGATION */
.site-nav {
  width: 100%;
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(244, 245, 249, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links a {
  margin-left: 24px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--accent);
}

/* GATE WRAPPER */
.gate-wrapper {
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 10vh;
}

/* FORM WRAPPER */
.gate-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

/* INPUT FIELD */
.email-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 1rem;
  font-family: var(--font);
  transition: all 0.2s ease;
}

.email-input::placeholder {
  color: var(--text-light);
}

.email-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(106, 90, 205, 0.1);
}

/* BUTTON */
.cta-button {
  width: 100%;
  padding: 14px 18px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s ease, transform 0.1s ease;
}

.cta-button:hover {
  background: var(--accent-hover);
}

.cta-button:active {
  transform: scale(0.98);
}

/* FOOTNOTE */
.footnote {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

/* -------------------------------------------------- */
/* HERO */
/* -------------------------------------------------- */

.hero-wrapper {
  padding-top: 120px;
  padding-bottom: 4rem;
  display: flex;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hero {
  max-width: 680px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero-headline {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 1.2rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0 0 2rem;
}

.hero-footnote {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* -------------------------------------------------- */
/* FEATURES */
/* -------------------------------------------------- */

.features-section {
  padding: 2rem 1.5rem 4rem;
  max-width: 960px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.15s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* -------------------------------------------------- */
/* UPDATES / SOFT CAPTURE */
/* -------------------------------------------------- */

.updates-section {
  padding: 3rem 1.5rem 4rem;
  background: var(--pastel-lavender);
  border-top: 1px solid var(--border);
  text-align: center;
}

.updates-inner {
  max-width: 480px;
  margin: 0 auto;
}

.updates-section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}

.updates-section p {
  margin: 0 0 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.updates-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.updates-email {
  flex: 1;
  min-width: 220px;
}

.updates-btn {
  padding: 14px 22px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font);
  transition: background 0.2s;
}

.updates-btn:hover {
  background: var(--accent-hover);
}

/* ABOUT SECTION */
.about-section {
  max-width: 700px;
  margin: 60px auto 80px;
  padding: 0 24px;
  text-align: center;
}

.about-section h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 800;
}

.about-section p {
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 40px 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------- */
/* RESPONSIVE */
/* -------------------------------------------------- */

@media (max-width: 700px) {
  .hero-headline {
    font-size: 1.8rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .updates-form {
    flex-direction: column;
  }
  .updates-email, .updates-btn {
    width: 100%;
    box-sizing: border-box;
  }
  .nav-inner {
    padding: 0 1rem;
  }
}
