/* ═══════════════════════════════════════════════════
   999PAWN — LANDING PAGE STYLES
   Design language: Figma "Orovera > Promo LP"
   Content: 999Pawn exclusive B2B pawnbroker platform
════════════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #e6fac2;
  --black:       #141414;
  --white:       #ffffff;
  --red:         #c22f3f;
  --red-dark:    #a82536;
  --yellow:      #f4eb81;
  --gray-border: #d0d0d0;
  --text-muted:  rgba(20,20,20,0.55);
  --white-muted: rgba(255,255,255,0.5);

  /* card icon gradients */
  --grad-yellow: radial-gradient(circle at 70% 50%, #fff597, #ffd880);
  --grad-green:  radial-gradient(circle at 70% 50%, #d9f1a8, #a3e8ae);
  --grad-lilac:  radial-gradient(circle at 70% 50%, #ddd9ff, #bab4fc);
  --grad-blue:   radial-gradient(circle at 70% 50%, #bee7f3, #9ed8ee);

  /* typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --page-width: 1440px;
  --content-width: 1180px;
  --pad-x: 130px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--black);
  min-width: var(--page-width);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── TYPOGRAPHY HELPERS ───────────────────────── */
.section-headline {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 20px;
}
.section-title-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-red {
  background: var(--red);
  color: var(--white);
  padding: 20px 40px;
  font-size: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(194,47,63,0.25);
}
.btn-red:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 32px rgba(194,47,63,0.35);
}

.btn-outline-red {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--red);
  padding: 12px 24px;
  font-size: 20px;
  border-radius: 20px;
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}

.btn-lg { padding: 24px 48px; font-size: 22px; border-radius: 24px; }
.btn-xl { padding: 40px 64px; font-size: 24px; font-weight: 800; border-radius: 40px; }
.btn-full { width: 100%; }

/* ── HEADER ───────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(20,20,20,0.08);
}
.header-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.logo-mark { color: var(--red); }
.logo-pawn { color: var(--black); }
.logo--white .logo-mark { color: var(--red); }
.logo--white .logo-pawn { color: var(--white); }

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px var(--pad-x) 0;
  max-width: var(--page-width);
  margin: 0 auto;
  min-height: 640px;
  overflow: visible;
}
.hero-bg-blob {
  position: absolute;
  right: 80px;
  top: -60px;
  width: 1510px;
  height: 700px;
  background: radial-gradient(ellipse 60% 80% at 70% 40%, rgba(244,235,129,0.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.hero-text {
  flex: 0 0 620px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 16px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 40px;
  width: fit-content;
  letter-spacing: 0.01em;
}
.hero-headline {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.05;
  color: var(--black);
  letter-spacing: -0.03em;
  animation: heroSlideIn 0.7s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: 22px;
  line-height: 1.6;
  color: var(--text-muted);
  animation: heroSlideIn 0.7s 0.12s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: heroSlideIn 0.7s 0.22s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-note {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── HERO VISUAL / MOCKUP ─────────────────────── */
.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-top: 16px;
  animation: heroSlideIn 0.7s 0.1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-card-mockup {
  width: 290px;
  border: 4px solid var(--black);
  border-radius: 32px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(20,20,20,0.15);
}
.mockup-screen {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mockup-row--header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(20,20,20,0.08);
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.mockup-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.02em;
}
.mockup-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(20,20,20,0.05);
  transition: background 0.15s;
}
.mockup-item:hover { background: rgba(230,250,194,0.4); }
.mockup-icon { font-size: 20px; flex-shrink: 0; }
.mockup-item-text { flex: 1; min-width: 0; }
.mockup-item-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-item-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--black);
  margin-top: 2px;
}
.mockup-badge-green, .mockup-badge-yellow {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.mockup-badge-green { background: #d9f1a8; color: #2a6e30; }
.mockup-badge-yellow { background: var(--yellow); color: #7a6a00; }
.mockup-row--footer {
  padding: 12px 18px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  background: rgba(20,20,20,0.03);
}

.hero-mascot {
  position: absolute;
  bottom: -40px;
  right: 310px;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}
.mascot-gem {
  font-size: 64px;
  filter: drop-shadow(0 8px 20px rgba(20,20,20,0.2));
}
.mascot-gem--large { font-size: 96px; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-14px) rotate(3deg); }
}

/* ── TICKER ───────────────────────────────────── */
.ticker-wrap {
  position: relative;
  /* wider than viewport so edges stay covered after rotation */
  width: 110%;
  margin-left: -5%;
  margin-top: 80px;
  height: 96px;
  overflow: hidden;
}
/* Tilt the WHOLE wrapper — background + text rotate as one unit */
.ticker-wrap--tilted {
  transform: rotate(-2deg);
}
.ticker-back {
  position: absolute;
  inset: 0;
  background: var(--yellow);
  z-index: 0;
}
.ticker-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}
.ticker-list {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
  will-change: transform;
}
.ticker-item {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  padding: 0 32px;
}
.ticker-sep {
  font-size: 16px;
  color: var(--red);
  flex-shrink: 0;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── FEATURES SECTION ─────────────────────────── */
.features {
  padding: 120px var(--pad-x);
  max-width: var(--page-width);
  margin: 0 auto;
}
.features-inner {}

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

.feature-card {
  background: var(--white);
  border-radius: 40px;
  padding: 40px 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(20,20,20,0.1);
}

/* ── CARD ICON WRAPS ──────────────────────────── */
.card-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon-wrap--yellow { background: var(--grad-yellow); }
.card-icon-wrap--green  { background: var(--grad-green); }
.card-icon-wrap--lilac  { background: var(--grad-lilac); }
.card-icon-wrap--blue   { background: var(--grad-blue); }
.card-icon { font-size: 28px; }

.card-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
}
.card-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── ROADMAP SECTION ──────────────────────────── */
.roadmap {
  padding: 80px var(--pad-x) 120px;
  max-width: var(--page-width);
  margin: 0 auto;
}
.roadmap-inner {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  align-items: start;
}
.roadmap-text {}
.roadmap-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.roadmap-card {
  background: var(--white);
  border-radius: 40px;
  padding: 32px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.roadmap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(20,20,20,0.09);
}
.roadmap-card-body { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.roadmap-phase {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.roadmap-card .card-icon-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}
.roadmap-card .card-icon { font-size: 22px; }

/* ── CTA SECTION ──────────────────────────────── */
.cta-section {
  padding: 80px var(--pad-x) 120px;
  max-width: var(--page-width);
  margin: 0 auto;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.cta-mascot {
  animation: float 4s 1s ease-in-out infinite;
}
.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 680px;
  text-align: center;
}
.cta-eyebrow {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}
.cta-phone-display {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.cta-phone-flag { font-size: 40px; }
.cta-phone-text { color: var(--black); }
.cta-phone-placeholder { color: rgba(20,20,20,0.2); }
.cta-disclaimer {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: -8px;
}

/* ── APPLY FORM SECTION ───────────────────────── */
.apply-section {
  padding: 80px var(--pad-x) 120px;
  max-width: var(--page-width);
  margin: 0 auto;
}
.apply-inner {
  max-width: 860px;
  margin: 0 auto;
}
.apply-header {
  text-align: center;
  margin-bottom: 60px;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  height: 64px;
  border-radius: 20px;
  border: 2px solid var(--gray-border);
  padding: 0 24px;
  font-family: var(--font);
  font-size: 18px;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus {
  border-color: var(--red);
}
.form-group input::placeholder { color: rgba(20,20,20,0.3); }

.form-group--checkbox { flex-direction: row; align-items: flex-start; }
.checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  accent-color: var(--red);
}
.checkbox-label a { color: var(--red); text-decoration: underline; }

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}

/* ── FAQ ──────────────────────────────────────── */
.faq {
  padding: 80px var(--pad-x) 120px;
  max-width: var(--page-width);
  margin: 0 auto;
}
.faq-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.faq-inner > .section-headline { text-align: center; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid rgba(20,20,20,0.1);
}
.faq-item {
  border-bottom: 2px solid rgba(20,20,20,0.1);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 28px 0;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s;
}
.faq-q::after {
  content: '+';
  font-size: 28px;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-q[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
.faq-q:hover { color: var(--red); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-a p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── FOOTER ───────────────────────────────────── */
.site-footer {
  background: var(--black);
  padding: 80px var(--pad-x) 48px;
  position: relative;
  overflow: hidden;
}
.footer-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 560px;
}
.footer-legal {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-muted);
}
.footer-copy {
  font-size: 14px;
  color: var(--white-muted);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  position: relative;
}
.footer-logo-bg {
  position: absolute;
  right: -20px;
  top: -20px;
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -0.04em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}
.footer-links a {
  font-size: 16px;
  color: var(--white);
  line-height: 1.7;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--red); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
.footer-contact a {
  font-size: 15px;
  color: var(--white-muted);
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white-muted);
  letter-spacing: 0.03em;
  transition: background 0.15s, color 0.15s;
}
.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}

/* ── SCROLL REVEAL ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── FORM SUCCESS STATE ───────────────────────── */
.form-success {
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.form-success .success-icon { font-size: 64px; }
.form-success h3 { font-size: 32px; font-weight: 800; }
.form-success p { font-size: 18px; color: var(--text-muted); max-width: 480px; line-height: 1.6; }
