/* DealBoard — Midnight Trust Design System */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --navy:  #0F2B46;
  --blue:  #1A73E8;
  --green: #34A853;
  --bg:    #F8F9FA;
  --text:  #1E1E1E;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ─────────────────────────────────────────── */
.nav {
  background-color: var(--navy);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-badge {
  background-color: rgba(26, 115, 232, 0.18);
  border: 1px solid rgba(26, 115, 232, 0.35);
  color: #93c5fd;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, #0a1e30 100%);
  padding: 5rem 1.5rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 110%, rgba(26, 115, 232, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  background-color: rgba(52, 168, 83, 0.12);
  border: 1px solid rgba(52, 168, 83, 0.3);
  color: #6ee7a0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.hero-headline {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-headline .accent {
  color: var(--green);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  font-weight: 400;
}

/* ── Email Form ──────────────────────────────────── */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 420px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .signup-form {
    flex-direction: row;
    gap: 0;
  }

  .signup-form input {
    border-radius: 10px 0 0 10px !important;
    border-right: none !important;
  }

  .signup-form button {
    border-radius: 0 10px 10px 0 !important;
    white-space: nowrap;
  }
}

.signup-form input {
  flex: 1;
  padding: 0.85rem 1.1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.signup-form input:focus {
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.1);
}

.signup-form button {
  padding: 0.85rem 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  background-color: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.signup-form button:hover {
  background-color: #1461cc;
}

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

.form-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.85rem;
  text-align: center;
}

/* ── Social Proof Strip ──────────────────────────── */
.proof-strip {
  background-color: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  font-weight: 500;
}

.proof-item .proof-icon {
  color: var(--green);
  font-size: 0.9rem;
}

/* ── Problem Section ─────────────────────────────── */
.problem {
  padding: 5rem 1.5rem;
  text-align: center;
  background-color: var(--bg);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  font-size: 1.05rem;
  color: #555;
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.pain-card {
  background: #fff;
  border: 1.5px solid #e8eaed;
  border-radius: 14px;
  padding: 1.5rem;
  text-align: left;
}

.pain-card .pain-icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.pain-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.pain-card p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

/* ── Features Section ────────────────────────────── */
.features {
  padding: 5rem 1.5rem;
  background-color: #fff;
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  border-radius: 16px;
  padding: 2rem;
  background: var(--bg);
  border: 1.5px solid #e8eaed;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: #c5d8f7;
  box-shadow: 0 4px 24px rgba(26, 115, 232, 0.08);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(26, 115, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
}

/* ── Pricing Callout ─────────────────────────────── */
.pricing {
  padding: 5rem 1.5rem;
  background-color: var(--bg);
  text-align: center;
}

.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid #e0e7ef;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 260px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(15, 43, 70, 0.07);
}

.price-card--featured {
  border-color: var(--blue);
  box-shadow: 0 8px 40px rgba(26, 115, 232, 0.2);
  position: relative;
}

.price-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.price-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-amount sup {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: super;
}

.price-period {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.35rem;
  margin-bottom: 1.75rem;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 0;
  flex: 1;
}

.price-features li {
  font-size: 0.875rem;
  color: #444;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  font-size: 0.9rem;
}

.price-features li.soon {
  color: #aaa;
}

.price-features li.soon::before {
  color: #ccc;
}

.soon-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1e7a3a;
  background: rgba(52, 168, 83, 0.12);
  border: 1px solid rgba(52, 168, 83, 0.35);
  border-radius: 99px;
  padding: 0.1rem 0.45rem;
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Bottom CTA ──────────────────────────────────── */
.bottom-cta {
  background: linear-gradient(160deg, var(--navy) 0%, #0a1e30 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}

.bottom-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.bottom-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ── Footer ──────────────────────────────────────── */
.footer {
  background-color: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Utility ─────────────────────────────────────── */
.container {
  max-width: 1000px;
  margin: 0 auto;
}

.green-text {
  color: var(--green);
}

