/* Social Move — landing page styles (v3: light theme, matching the app)
   Palette:
   --ink       #1B1F3B  deep indigo-black, primary text
   --paper     #FFFFFF  background
   --paper-2   #F7F8FC  subtle secondary surface
   --blue      #2F5FE0  brand blue
   --blue-soft #E8EDFC  light blue tint
   --slate     #6B7290  muted secondary text
   --border    #E7E9F2
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #1B1F3B;
  --paper: #FFFFFF;
  --paper-2: #F7F8FC;
  --blue: #2F5FE0;
  --blue-soft: #E8EDFC;
  --slate: #6B7290;
  --border: #E7E9F2;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

a { color: inherit; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Nav ---------- */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.nav-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-mark svg { width: 15px; height: 15px; }

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 14.5px;
  color: var(--slate);
}

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

.nav-cta {
  background: var(--ink);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.hero h1 {
  font-size: 48px;
}

.hero h1 .earn { color: var(--blue); }

.hero p.lede {
  font-size: 17.5px;
  color: var(--slate);
  max-width: 440px;
  margin: 20px 0 30px;
}

.hero-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
}

.hero-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: white;
}

.hero-form input[type="email"]:focus {
  outline: none;
  border-color: var(--blue);
}

.btn {
  background: var(--blue);
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover { background: #2650C4; }
.btn:focus-visible { outline: 3px solid var(--blue-soft); outline-offset: 2px; }

.hero-note {
  font-size: 13px;
  color: var(--slate);
  margin-top: 12px;
}

.form-success {
  display: none;
  background: var(--blue-soft);
  color: var(--ink);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  max-width: 420px;
}

/* ---------- Hero visual: logo mark ---------- */

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.hero-logo-mark {
  width: 220px;
  height: 220px;
  border-radius: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(47, 95, 224, 0.18);
}

.hero-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo-mark svg {
  width: 110px;
  height: 110px;
}

/* ---------- Sections ---------- */

.section {
  padding: 64px 0;
}

.section-head {
  max-width: 560px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--slate);
  font-size: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- How it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  color: var(--slate);
  font-size: 15px;
  margin: 0;
}

/* ---------- Features ---------- */

.features { background: var(--paper-2); }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.feature-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature-text p {
  color: var(--slate);
  font-size: 16px;
  max-width: 420px;
}

.feature-art {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
}

.mock-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.mock-list-item:last-child { border-bottom: none; }

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Screenshots ---------- */

.screens-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.screen-placeholder {
  aspect-ratio: 9/16;
  width: 100%;
  object-fit: cover;
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: block;
}

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-q .icon {
  font-size: 20px;
  color: var(--blue);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.open .faq-q .icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-a p {
  color: var(--slate);
  font-size: 15px;
  padding-bottom: 20px;
  margin: 0;
  max-width: 640px;
}

.faq-a a { color: var(--blue); }

/* ---------- Final CTA ---------- */

.cta-band {
  background: var(--ink);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  margin: 0 32px;
}

.cta-band h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-band p {
  color: #B7BEDB;
  margin-bottom: 26px;
}

.cta-band .hero-form { margin: 0 auto; }

/* ---------- Footer ---------- */

footer {
  padding: 40px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--slate);
}

footer a { text-decoration: none; }
footer a:hover { color: var(--ink); }

.footer-links { display: flex; gap: 22px; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 16px; }
  .hero h1 { font-size: 36px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .feature-row { grid-template-columns: 1fr; gap: 24px; }
  .screens-row { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .cta-band { margin: 0 16px; padding: 40px 20px; }
  .hero-form { flex-direction: column; }
  .section { padding: 48px 0; }
}
