/* ========================
   STAMPED — Landing Page CSS
   ======================== */

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 8vw;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,87,34,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,87,34,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,87,34,0.1);
  border: 1px solid rgba(255,87,34,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #FF5722;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: #FF5722;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.hero-title em {
  font-style: italic;
  color: #FF5722;
}
.title-accent {
  color: #FFD166;
}
.hero-lede {
  font-size: 1.125rem;
  color: #888;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-tickers {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.ticker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}
.ticker-icon {
  color: #FF5722;
  font-size: 1rem;
}
.ticker-label {
  font-size: 0.75rem;
  color: #555;
  font-weight: 400;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 540px;
  z-index: 2;
}
.float-grid {
  position: relative;
  width: 100%;
  height: 100%;
}
.float-card {
  position: absolute;
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  width: 240px;
  animation: float-card linear infinite;
  animation-duration: var(--dur, 8s);
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
@keyframes float-card {
  0% { transform: translateY(0px) rotate(var(--rot, 0deg)); }
  100% { transform: translateY(-20px) rotate(var(--rot2, 3deg)); }
}
.card-1 { top: 0; left: 0; --dur: 7s; --rot: -2deg; --rot2: 1deg; }
.card-2 { top: 60px; right: 0; left: auto; --dur: 9s; --rot: 2deg; --rot2: -1deg; }
.card-3 { top: 220px; left: 20px; --dur: 6s; --rot: 1deg; --rot2: -2deg; }
.card-4 { top: 320px; right: 20px; left: auto; --dur: 10s; --rot: -1deg; --rot2: 2deg; }
.card-5 { bottom: 0; left: 50%; transform: translateX(-50%); --dur: 8s; --rot: 0deg; --rot2: -1deg; }
.card-handle {
  font-size: 0.7rem;
  color: #FF5722;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.card-content {
  font-size: 0.8rem;
  color: #aaa;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-stamp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,87,34,0.15);
  border: 1px solid rgba(255,87,34,0.3);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
}
.stamp-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FF5722;
}
.stamp-amount {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFD166;
}

/* AGENT ORB */
.agent-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
}
.orb-core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF5722;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  z-index: 3;
  box-shadow: 0 0 30px rgba(255,87,34,0.5);
}
.orb-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,87,34,0.2);
  transform: translate(-50%, -50%);
  animation: orb-expand linear infinite;
}
.orb-ring-1 { width: 80px; height: 80px; animation-duration: 3s; }
.orb-ring-2 { width: 110px; height: 110px; animation-duration: 4s; animation-delay: -1s; }
.orb-ring-3 { width: 150px; height: 150px; animation-duration: 5s; animation-delay: -2s; }
@keyframes orb-expand {
  0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.3); }
}

/* PROOF SECTION */
.proof {
  padding: 5rem 8vw;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  background: #0a0a0a;
}
.proof-stat-block {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
}
.proof-stat {
  flex: 1;
  text-align: center;
  padding: 0 3rem;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: #222;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: #FF5722;
  margin-bottom: 0.5rem;
}
.proof-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

/* FEATURES */
.features {
  padding: 7rem 8vw;
  background: var(--bg);
}
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FF5722;
  margin-bottom: 1rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 2.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature-card:hover {
  border-color: rgba(255,87,34,0.3);
  transform: translateY(-2px);
}
.feature-icon {
  margin-bottom: 1.5rem;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.feature-body {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.feature-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #1e1e1e;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFD166;
}
.stat-label {
  font-size: 0.75rem;
  color: #555;
}

/* HOW */
.how {
  padding: 7rem 8vw;
  background: #0c0c0c;
}
.how-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin: 1rem 0 4rem;
  max-width: 500px;
}
.steps-track {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.step {
  flex: 1;
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 2.5rem;
}
.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #FF5722, transparent);
  margin-top: 2.5rem;
  flex-shrink: 0;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,87,34,0.2);
  margin-bottom: 1rem;
  line-height: 1;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.step-body p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
}

/* MANIFESTO */
.manifesto {
  padding: 8rem 8vw;
  background: var(--bg);
  text-align: center;
}
.manifesto-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 1.5rem;
}
.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 3rem;
}
.manifesto-body {
  max-width: 620px;
  margin: 0 auto 3rem;
}
.manifesto-body p {
  font-size: 1rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.manifesto-body strong {
  color: #f5f5f5;
  font-weight: 600;
}
.manifesto-quote {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #1a1a1a;
}
.manifesto-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* FOOTER */
.footer {
  padding: 4rem 8vw 2rem;
  border-top: 1px solid #1a1a1a;
  background: #080808;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: #FF5722;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.footer-tagline {
  font-size: 0.8rem;
  color: #444;
}
.footer-links {
  display: flex;
  gap: 4rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 0.25rem;
}
.footer-col a {
  font-size: 0.85rem;
  color: #555;
  transition: color 0.2s;
}
.footer-col a:hover { color: #f5f5f5; }
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #333;
  padding-top: 2rem;
  border-top: 1px solid #111;
}
.footer-divider { color: #222; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 6vw;
    min-height: auto;
    gap: 3rem;
  }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-track { flex-direction: column; }
  .step-connector { width: 2px; height: 24px; background: linear-gradient(180deg, #FF5722, transparent); margin: 0 auto; }
  .proof-stat-block { flex-direction: column; gap: 2rem; }
  .proof-divider { width: 60px; height: 1px; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-links { gap: 2rem; }
}
@media (max-width: 600px) {
  .hero { padding: 3rem 5vw; }
  .features, .how, .manifesto { padding: 5rem 5vw; }
  .hero-tickers { flex-direction: column; gap: 1rem; }
  .proof { padding: 4rem 5vw; }
  .footer { padding: 3rem 5vw 1.5rem; }
}