/* a2352ec2.css - Pump Bonding Tokens landing page (mobile-first, beige + orange hacker-cyberpunk theme) */

/* Color tokens and base reset */
:root{
  --bg: #f5ecd6;            /* beige solid background */
  --card: rgba(255,255,255,0.85);
  --card-border: rgba(0,0,0,0.08);
  --text: #2b1a07;
  --muted: #6a4d1a;
  --orange-start: #ffb26b;
  --orange-end:   #ff7a1f;
  --shadow: 0 6px 18px rgba(0,0,0,.15);
  --radius: 14px;
  --glow: 0 6px 20px rgba(255, 122, 31, 0.25);
}

*, *::before, *::after { box-sizing: border-box; }

html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
  min-height: 100vh;
}

/* Simple header styling */
.site-header {
  padding: 14px 20px;
  background: rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.brand-name {
  font-weight: 700;
  color: #2f1f0a;
}

/* Layout containers */
.brand-wrap { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; }

/* Main spacing */
main { padding: 18px 16px 40px; }

/* Hero section: one-column mobile, two-column desktop grid */
.hero.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  justify-items: center;
  min-height: calc(100vh - 120px);
}

/* Frosted glass card for text content */
.hero-content {
  width: 100%;
  max-width: 680px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
  text-align: left;
}

.hero-content h1 {
  font-size: clamp(28px, 6vw, 44px);
  margin: 0 0 12px;
  line-height: 1.04;
  letter-spacing: .5px;
}

.subhead {
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--muted);
  margin: 0 0 18px;
}

/* Prominent CTA styled as a large pill button */
.cta {
  display: inline-block;
  padding: 16px 28px;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 700;
  color: #1b0f04;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-start) 0%, var(--orange-end) 100%);
  border: 1px solid rgba(0,0,0,.15);
  box-shadow: var(--glow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(255, 122, 31, .35); }
.cta:focus-visible { outline: 3px solid #ffd2a8; outline-offset: 2px; }

/* Visual centerpiece: the provided image */
.hero-visual {
  width: 100%;
  max-width: 680px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

/* Footer with small advertisement and closing note */
.site-footer {
  padding: 16px;
  text-align: center;
  color: #7b6a2f;
  background: rgba(0,0,0,.04);
  border-top: 1px solid rgba(0,0,0,.08);
}
.footer-ad a {
  color: #b65a00;
  text-decoration: none;
  font-weight: 600;
}
.closing-note { font-size: 13px; color: #705f1f; }

/* Desktop layout: image (centerpiece) and content side-by-side */
@media (min-width: 900px) {
  .hero.grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
  }
  .hero-content { padding: 28px; background: rgba(255,255,255,.92); }
  .cta { font-size: 20px; padding: 20px 34px; }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}