/* ============================
   MintIQ — Custom Stylesheet
   ============================ */

:root {
  --bg: #000000;
  --surface: #0d0d0d;
  --surface-alt: #141414;
  --accent: #AAFF00;
  --accent-dim: rgba(170, 255, 0, 0.10);
  --green: #AAFF00;
  --green-dim: rgba(170, 255, 0, 0.10);
  --red: #FF4444;
  --red-dim: rgba(255, 68, 68, 0.12);
  --yellow: #FFD700;
  --yellow-dim: rgba(255, 215, 0, 0.12);
  --text-primary: #ffffff;
  --text-secondary: #aaaaaa;
  --text-muted: #555555;
  --border: rgba(255, 255, 255, 0.08);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.nav-brand span { color: var(--accent); }

/* WAITLIST */
.waitlist-form-wrap { max-width: 480px; margin: 0 auto; }

.waitlist-form {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.waitlist-email {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-email::placeholder { color: var(--text-muted); }
.waitlist-email:focus { border-color: rgba(170,255,0,0.4); }

.waitlist-email::-webkit-autofill {
  -webkit-box-shadow: 0 0 0 100px #000 inset;
  -webkit-text-fill-color: #fff;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 48px 100px;
  min-height: 80vh;
  background: radial-gradient(ellipse at 80% 40%, rgba(170,255,0,0.06) 0%, transparent 60%);
  position: relative;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.hero-headline span {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-frame {
  width: 220px;
  background: linear-gradient(145deg, #111111, #080808);
  border: 1px solid rgba(170,255,0,0.25);
  border-radius: 16px;
  padding: 24px 20px 20px;
  box-shadow: 0 0 40px rgba(170,255,0,0.15), 0 0 80px rgba(170,255,0,0.05), 0 20px 60px rgba(0,0,0,0.6);
  position: relative;
  z-index: 2;
}

.card-inner { display: flex; flex-direction: column; gap: 16px; }

.card-chip {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid rgba(245,158,11,0.4);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  width: fit-content;
}

.card-image-area { display: flex; justify-content: center; padding: 8px 0; }

.card-silhouette { width: 100px; height: 140px; }

.card-data-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.data-pill {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--surface-alt);
  color: var(--text-secondary);
}

.data-pill.green {
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.3);
}

.data-pill.up {
  background: var(--green-dim);
  color: var(--green);
}

.scan-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px dashed rgba(170,255,0,0.2);
  z-index: 1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.2; }
}

/* PROBLEM */
.problem {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}

.problem-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.problem-stat {
  flex-shrink: 0;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 160px;
  margin-top: 10px;
  line-height: 1.4;
}

.problem-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

.problem-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.problem-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

/* SCANNER SECTION */
.scanner-section {
  padding: 100px 48px;
  background: var(--bg);
}

.scanner-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.scanner-header h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.scan-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.scan-step {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 0 32px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.step-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.scan-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.scan-step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.scan-connector {
  display: flex;
  align-items: center;
  padding-top: 30px;
  flex-shrink: 0;
}

/* VERDICT */
.verdict-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
  text-align: center;
}

.verdict-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.verdict-card {
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
}

.green-verdict {
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.25);
}

.red-verdict {
  background: var(--red-dim);
  border: 1px solid rgba(239,68,68,0.25);
}

.yellow-verdict {
  background: var(--yellow-dim);
  border: 1px solid rgba(234,179,8,0.25);
}

.verdict-badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 16px;
}

.green-verdict .verdict-badge { background: var(--green); color: #052e16; }
.red-verdict .verdict-badge { background: var(--red); color: #450a0a; }
.yellow-verdict .verdict-badge { background: var(--yellow); color: #422006; }

.verdict-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.verdict-context {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.verdict-max {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.verdict-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ECOSYSTEM */
.ecosystem {
  padding: 100px 48px;
  background: var(--bg);
}

.eco-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.eco-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.eco-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.eco-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}

.eco-card:hover { border-color: rgba(170,255,0,0.3); }

.eco-icon-wrap {
  margin-bottom: 20px;
}

.eco-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.eco-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 100px 48px;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.closing-stat {
  margin-bottom: 40px;
}

.closing-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.closing-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.closing p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.closing-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.closing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(170,255,0,0.25);
}

/* FOOTER */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.footer-brand span { color: var(--accent); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* PREVIEW SECTION */
.preview-section {
  padding: 100px 48px;
  background: var(--bg);
  text-align: center;
}

.preview-header {
  max-width: 560px;
  margin: 0 auto 64px;
}

.preview-header .section-label { margin-bottom: 12px; }

.preview-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.preview-header p {
  font-size: 1rem;
  color: var(--text-secondary);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.preview-phone { display: flex; flex-direction: column; align-items: center; }

.phone-frame {
  width: 220px;
  background: #111;
  border: 1px solid rgba(170,255,0,0.2);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 0 40px rgba(170,255,0,0.08), 0 20px 60px rgba(0,0,0,0.5);
}

.phone-notch {
  width: 80px;
  height: 20px;
  background: #111;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
}

.phone-screen {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  background: #000;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-caption {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 16px;
  letter-spacing: 0.03em;
}

.preview-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 32px 80px; }
  .hero-visual { display: none; }
  .problem-inner { flex-direction: column; gap: 32px; }
  .problem-divider { display: none; }
  .scan-steps { flex-direction: column; align-items: center; gap: 40px; }
  .scan-connector { display: none; }
  .scan-step { max-width: 100%; }
  .verdict-grid { grid-template-columns: 1fr; gap: 16px; }
  .eco-grid { grid-template-columns: 1fr 1fr; }
  .preview-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .phone-frame { width: 160px; }
  .navbar { padding: 16px 32px; }
  .problem, .scanner-section, .ecosystem, .closing, .verdict-section, .footer, .preview-section { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 600px) {
  .eco-grid { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-number, .closing-number { font-size: 3.5rem; }
  .hero-headline { font-size: 2rem; }
  .scanner-header h2, .eco-header h2, .closing h2, .preview-header h2 { font-size: 1.8rem; }
  .navbar { padding: 14px 20px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-email { width: 100%; }
}
