/* ===== ResaleBros — marketing page styles ===== */

:root {
  --bg: #0a0f1e;
  --bg-2: #0e1528;
  --bg-3: #131c33;
  --surface: #141d36;
  --surface-2: #1b2542;
  --border: #243056;
  --text: #eaf0ff;
  --text-2: #a8b3cf;
  --text-3: #7380a3;
  --accent: #ffb43d;
  --accent-2: #ff8a3d;
  --accent-soft: rgba(255, 180, 61, 0.12);
  --grad-1: #6ee7ff;
  --grad-2: #a78bfa;
  --grad-3: #ffb43d;
  --green: #36d399;
  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1120px;
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

a { color: inherit; text-decoration: none; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}

.grad {
  background: linear-gradient(100deg, var(--grad-1), var(--grad-2), var(--grad-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 12px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--accent {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  color: #1a1205;
  box-shadow: 0 10px 30px -10px rgba(255, 138, 61, 0.6);
}
.btn--accent:hover { box-shadow: 0 14px 36px -10px rgba(255, 138, 61, 0.8); transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(10, 15, 30, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(10, 15, 30, 0.92); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.15rem; }
.brand__mark {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1205; font-weight: 800; font-size: 0.9rem;
}
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { color: var(--text-2); font-size: 0.95rem; font-weight: 500; transition: color 0.15s; }
.nav__links a:hover { color: var(--accent); }
.nav__cta { margin-left: 8px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; margin-left: auto; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }

/* ===== Hero ===== */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 80% -10%, rgba(167, 139, 250, 0.22), transparent 60%),
    radial-gradient(700px 500px at 10% 10%, rgba(110, 231, 255, 0.16), transparent 60%),
    radial-gradient(600px 400px at 60% 90%, rgba(255, 180, 61, 0.14), transparent 60%);
}
.hero__inner { position: relative; max-width: 880px; }
.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.lead { font-size: 1.18rem; color: var(--text-2); max-width: 680px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 36px; list-style: none; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.hero__stats li::after {
  content: attr(data-label);
}
.hero__stats li { font-size: 0.85rem; color: var(--text-3); }
.hero__stats strong + text { display: block; }

/* ===== Trust bar ===== */
.trustbar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); padding: 20px 0; }
.trustbar__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; justify-content: center; color: var(--text-3); font-size: 0.9rem; }
.chip {
  padding: 6px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border);
  color: var(--text-2); font-size: 0.85rem; font-weight: 500;
}

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section--alt { background: var(--bg-2); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section__head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  position: relative; padding: 32px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border);
}
.step__num {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  font-weight: 800; font-size: 1.3rem; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #1a1205;
}
.step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step p { color: var(--text-2); }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  padding: 26px; border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--border); transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); background: var(--surface-2); }
.card__icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { color: var(--text-2); font-size: 0.95rem; }

/* ===== Pricing ===== */
.pricing__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; max-width: 880px; margin: 0 auto; }
.price-card { padding: 36px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); }
.price-card--featured { border-color: var(--accent); background: linear-gradient(180deg, var(--accent-soft), var(--surface)); }
.price-card h3 { font-size: 1.1rem; color: var(--text-2); margin-bottom: 22px; text-transform: uppercase; letter-spacing: 0.1em; }
.price-card__amount { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.price-card__amount .big { font-size: 2.6rem; font-weight: 800; color: var(--accent); line-height: 1; }
.price-card__amount .sub { color: var(--text-3); font-size: 0.95rem; }
.price-card__list { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.price-card__list li { color: var(--text-2); font-size: 0.98rem; }
.price-card--example .muted { color: var(--text-3); }
.price-card--example .muted strong { color: var(--text); }
.example-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--border); color: var(--text-2); }
.example-row--total { border-bottom: 0; font-weight: 700; color: var(--text); padding-top: 18px; }
.example-row--you { background: var(--accent-soft); border-radius: 12px; padding: 16px; margin-top: 12px; font-size: 1.15rem; font-weight: 800; color: var(--accent); }
.small { font-size: 0.85rem; margin-top: 16px; }

/* ===== About ===== */
.about { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.about__copy p { color: var(--text-2); margin-bottom: 18px; }
.about__copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 18px; }
.about__pledge { padding: 20px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--accent); }
.about__faces { display: grid; gap: 16px; }
.face { display: flex; align-items: center; gap: 16px; padding: 18px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.face__avatar, .face__icon { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; background: linear-gradient(135deg, var(--grad-1), var(--grad-2)); color: #0a0f1e; }
.face strong { display: block; font-size: 1.05rem; }
.face span { color: var(--text-3); font-size: 0.9rem; }

/* ===== FAQ ===== */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 24px; transition: border-color 0.2s; }
.faq__item[open] { border-color: var(--accent); }
.faq__item summary { cursor: pointer; padding: 18px 0; font-weight: 600; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.5rem; color: var(--accent); transition: transform 0.2s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 18px; color: var(--text-2); }

/* ===== CTA ===== */
.cta { padding: 90px 0; background:
    radial-gradient(800px 500px at 50% 0%, rgba(255, 180, 61, 0.12), transparent 60%), var(--bg-2); border-top: 1px solid var(--border); }
.cta__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cta h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 14px; }
.cta p { color: var(--text-2); margin-bottom: 32px; }
.cta__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; text-align: left;
  background: var(--surface); border: 1px solid var(--border); padding: 28px; border-radius: var(--radius-lg);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; color: var(--text-3); font-weight: 500; }
.field input, .field select {
  background: var(--bg-3); border: 1px solid var(--border); color: var(--text);
  border-radius: 12px; padding: 13px 14px; font-size: 1rem; font-family: inherit;
  transition: border-color 0.15s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); }
.cta__submit { grid-column: 1 / -1; margin-top: 6px; }
.cta__note { grid-column: 1 / -1; text-align: center; color: var(--text-3); font-size: 0.85rem; margin: 0; }
.cta__form.sent .cta__submit { display: none; }
.cta__form.sent .cta__note { color: var(--green); font-weight: 600; }
.cta__direct { margin-top: 28px; color: var(--text-3); display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; font-size: 0.95rem; }
.cta__direct a { color: var(--accent); font-weight: 600; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); padding: 40px 0; background: var(--bg); }
.footer__inner { text-align: center; display: grid; gap: 8px; justify-items: center; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; }
.footer__tag { color: var(--text-2); }
.footer__meta { color: var(--text-3); font-size: 0.85rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-2); padding: 20px 24px; border-bottom: 1px solid var(--border); gap: 16px;
  }
  .nav.open .nav__cta { display: inline-flex; margin: 12px 24px 20px; }
  .hero { padding: 120px 0 70px; }
  .hero__stats { gap: 24px; }
  .hero__stats strong { font-size: 1.6rem; }
  .cta__form { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
}
