/* ═══════════════════════════════════════════════════
   999PAWN v2 — LANDING PAGE STYLES
════════════════════════════════════════════════════ */

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

  --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-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%; }

/* ── 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(20,20,20,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) 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 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: uppercase, tighter size to fit longer text */
.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 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; }
.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;
  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(--red); 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(20,20,20,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(20,20,20,0.1);
}
.roadmap-single__icon {}
.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; }
.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(20,20,20,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(--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; }

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

/* Social icons */
.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(--red);
}
.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(--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); }

/* Micro legal disclaimer — present but minimal */
.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; }
