/* ═══════════════════════════════════════════════════
   999PAWN v5 — LANDING PAGE STYLES
   Colors: #EEF4FD bg | #2563EB accent | #fff cards
════════════════════════════════════════════════════ */

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

:root {
  --bg:          #EEF4FD;
  --black:       #0D1B36;
  --white:       #ffffff;
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --yellow:      #FFF3C4;
  --gray-border: #BFDBFE;
  --text-muted:  rgba(13,27,54,0.5);
  --white-muted: rgba(255,255,255,0.5);

  --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);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --page-width: 1440px;
  --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-blue {
  background: var(--blue);
  color: var(--white);
  padding: 20px 40px;
  font-size: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(37,99,235,0.28);
}
.btn-blue:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 32px rgba(37,99,235,0.38);
}
.btn-outline-blue {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--blue);
  padding: 12px 24px;
  font-size: 20px;
  border-radius: 20px;
}
.btn-outline-blue:hover { background: var(--blue); 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%; }

/* ── LOGO IMAGE ───────────────────────────────── */
.logo-link { display: inline-flex; align-items: center; }
.logo-img  { height: 44px; width: auto; display: block; object-fit: contain; }
.logo-img--footer { height: 40px; }

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

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px var(--pad-x) 60px;
  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(37,99,235,0.10) 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 660px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  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: 56px;
  font-weight: 900;
  line-height: 1.08;
  color: var(--black);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  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: 20px;
  line-height: 1.65;
  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 PHONE MOCKUP ────────────────────────── */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  animation: heroSlideIn 0.7s 0.1s cubic-bezier(0.16,1,0.3,1) both;
}

/* Volume buttons – left side */
.phone-wrap {
  position: relative;
}
.phone-wrap::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 112px;
  width: 4px;
  height: 26px;
  background: #0D1B36;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 38px 0 #0D1B36;
}
/* Power button – right side */
.phone-wrap::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 148px;
  width: 4px;
  height: 54px;
  background: #0D1B36;
  border-radius: 0 3px 3px 0;
}

.phone-frame {
  position: relative;
  width: 300px;
  height: 620px;
  background: var(--white);
  border: 11px solid #0D1B36;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 50px 100px rgba(37, 99, 235, 0.22),
    0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Dynamic Island camera pill */
.phone-island {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 26px;
  background: #0D1B36;
  border-radius: 20px;
  z-index: 5;
}

.phone-statusbar {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 18px 6px;
  font-size: 11px;
  font-weight: 700;
  color: #0D1B36;
}
.phone-status-right {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 9px;
}

.phone-appbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 10px;
  border-bottom: 1px solid rgba(13,27,54,0.07);
}
.phone-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  animation: phoneDotPulse 2s ease-in-out infinite;
}
@keyframes phoneDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.8); }
}
.phone-app-title {
  font-size: 13px;
  font-weight: 700;
  color: #0D1B36;
  flex: 1;
}
.phone-online-tag {
  font-size: 10px;
  font-weight: 600;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 2px 7px;
  border-radius: 10px;
  white-space: nowrap;
}

/* Quick stats row */
.phone-stats {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  padding: 12px 14px 10px;
  border-bottom: 1px solid rgba(13,27,54,0.06);
  background: rgba(37,99,235,0.04);
}
.phone-stat { text-align: center; }
.phone-stat-num {
  font-size: 16px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.phone-stat-label {
  font-size: 9px;
  font-weight: 500;
  color: rgba(13,27,54,0.45);
  margin-top: 2px;
  white-space: nowrap;
}

/* Listings list */
.phone-listings {
  flex: 1;
  overflow: hidden;
}
.phone-listing {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(13,27,54,0.05);
}
.phone-listing-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}
.phone-listing-body { flex: 1; min-width: 0; }
.phone-listing-name {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #0D1B36;
}
.phone-listing-price {
  font-size: 14px;
  font-weight: 800;
  margin-top: 2px;
  color: #0D1B36;
}

.phone-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 20px;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.phone-tag--live { background: #d9f1a8; color: #2a6e30; }
.phone-tag--new  { background: #FEF9C3; color: #78350F; }
.phone-tag--hot  { background: #ffd3d3; color: #b71c1c; }

.phone-view-all {
  flex-shrink: 0;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1px solid rgba(13,27,54,0.05);
}

.phone-verified-bar {
  flex-shrink: 0;
  padding: 9px 14px;
  font-size: 10px;
  color: rgba(13,27,54,0.45);
  text-align: center;
  background: rgba(13,27,54,0.02);
  border-top: 1px solid rgba(13,27,54,0.05);
}

.phone-home-bar {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0 10px;
}
.phone-home-bar::after {
  content: '';
  width: 90px;
  height: 4px;
  background: rgba(13,27,54,0.18);
  border-radius: 4px;
}

/* ── TICKER ───────────────────────────────────── */
.ticker-wrap {
  position: relative;
  width: 110%;
  margin-left: -5%;
  margin-top: 80px;
  height: 96px;
  overflow: hidden;
}
.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;
  white-space: nowrap;
  animation: tickerScroll 32s linear infinite;
  will-change: transform;
}
.ticker-item {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  padding: 0 28px;
  letter-spacing: 0.04em;
}
.ticker-sep { font-size: 14px; color: var(--blue); flex-shrink: 0; }

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

/* ── FEATURES ─────────────────────────────────── */
.features {
  padding: 120px var(--pad-x);
  max-width: var(--page-width);
  margin: 0 auto;
}
.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(37,99,235,0.1);
}

/* ── CARD ICONS ───────────────────────────────── */
.card-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.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.75; color: var(--text-muted); }

/* ── ROADMAP / JOIN SECTION ───────────────────── */
.roadmap {
  padding: 80px var(--pad-x) 120px;
  max-width: var(--page-width);
  margin: 0 auto;
}
.roadmap-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.roadmap-single-wrap { display: flex; }
.roadmap-single {
  background: var(--white);
  border-radius: 40px;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.roadmap-single:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(37,99,235,0.1);
}
.roadmap-single__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
}
.roadmap-single__body {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted);
}
.roadmap-single__cta { align-self: flex-start; margin-top: 8px; }

/* ── 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; }
.mascot-gem        { font-size: 64px; filter: drop-shadow(0 8px 20px rgba(13,27,54,0.2)); }
.mascot-gem--large { font-size: 96px; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-14px) rotate(3deg); }
}
.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: 36px; font-weight: 900; letter-spacing: -0.02em; line-height: 1;
  flex-wrap: wrap; justify-content: center;
}
.cta-phone-flag        { font-size: 32px; }
.cta-phone-text        { color: var(--black); }
.cta-phone-placeholder { color: rgba(13,27,54,0.2); }
.cta-disclaimer { font-size: 14px; color: var(--text-muted); margin-top: -8px; }

/* ── APPLY FORM ───────────────────────────────── */
.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(--blue); }
.form-group input::placeholder  { color: rgba(13,27,54,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(--blue); }
.checkbox-label a { color: var(--blue); text-decoration: underline; }
.form-note { font-size: 13px; color: var(--text-muted); line-height: 1.6; text-align: center; }

/* ── FOOTER ───────────────────────────────────── */
.site-footer {
  background: var(--black);
  padding: 72px var(--pad-x) 0;
  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;
  padding-bottom: 48px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 480px;
}
.footer-copy { font-size: 14px; color: var(--white-muted); }

.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social-icon {
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  transition: color 0.18s, background 0.18s;
}
.footer-social-icon:hover {
  color: var(--white);
  background: var(--blue);
}
.footer-social-icon svg { display: block; }

.footer-right {
  display: flex; flex-direction: column; gap: 20px; align-items: flex-end; position: relative;
}
.footer-logo-bg {
  position: absolute; right: -20px; top: -20px;
  font-size: 180px; 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(--blue); }
.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-micro {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-micro p {
  font-size: 10px;
  line-height: 1.5;
  color: rgba(255,255,255,0.14);
  transition: color 0.4s;
}
.footer-micro:hover p { color: rgba(255,255,255,0.3); }

/* ── 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; }
