@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=IBM+Plex+Mono:wght@400;500;700&display=swap');

:root {
  --cream:   #F5F0E8;
  --black:   #0A0A0A;
  --orange:  #FF6634;
  --white:   #FFFFFF;
  --gray:    #666666;
  --surface: #EDE8DF;
  --green:   #2DC653;
  --border:  2px solid var(--black);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: 'Syne', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Shared ── */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 16px;
}
.label-line { display: block; width: 32px; height: 2px; background: var(--orange); }
.label-line--white { background: var(--white); }

.section-title { font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.section-title--white { color: var(--white); }
.section-sub { font-family: 'IBM Plex Mono', monospace; font-size: 14px; color: var(--gray); max-width: 560px; line-height: 1.8; margin-bottom: 48px; }
.section-sub--white { color: rgba(255,255,255,0.7); }

.accent { color: var(--orange); }

.logo-box {
  width: 40px; height: 40px;
  background: var(--orange);
  border: var(--border);
  box-shadow: 3px 3px 0 var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-box svg { width: 22px; height: 22px; fill: var(--white); }
.logo-box--sm { width: 32px; height: 32px; }
.logo-box--sm svg { width: 18px; height: 18px; }

.brand-name { font-size: 20px; font-weight: 800; letter-spacing: 1px; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 15px;
  border: var(--border);
  box-shadow: 4px 4px 0 var(--black);
  cursor: pointer; text-decoration: none;
  transition: transform 0.1s, box-shadow 0.1s;
}
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }
.btn-primary:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--black); }
.btn-primary svg { width: 16px; height: 16px; fill: currentColor; }
.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--black);
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 15px;
  border: var(--border);
  cursor: pointer; text-decoration: none;
  transition: background 0.15s;
}
.btn-ghost:hover { background: var(--surface); }

/* Forms */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 700;
  color: var(--gray); text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 6px;
}
.form-input {
  width: 100%;
  background: var(--cream);
  border: var(--border);
  padding: 10px 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; color: var(--black);
  outline: none;
  transition: box-shadow 0.1s;
  appearance: none;
}
.form-input:focus { box-shadow: 3px 3px 0 var(--black); }
textarea.form-input { resize: none; height: 110px; }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%230A0A0A'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 20px; padding-right: 36px; }

.card-panel {
  background: var(--white);
  border: var(--border);
  box-shadow: 4px 4px 0 var(--black);
  padding: 28px;
}

.success-icon {
  width: 56px; height: 56px;
  background: var(--green);
  border: var(--border);
  box-shadow: 3px 3px 0 var(--black);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg { width: 28px; height: 28px; fill: var(--white); }

/* ── TOP NAV ── */
.topnav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; gap: 32px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 700;
  color: var(--black); text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  padding: 8px 20px;
  background: var(--black); color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 13px;
  border: var(--border);
  box-shadow: 3px 3px 0 var(--orange);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
}
.nav-cta:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); transition: 0.2s; }
.mobile-menu { display: none; flex-direction: column; border-top: var(--border); }
.mobile-link {
  padding: 14px 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 700;
  color: var(--black); text-decoration: none;
  border-bottom: 1px solid var(--surface);
}
.mobile-link:hover { background: var(--surface); }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero { padding: 80px 0 60px; }
.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 700;
  background: var(--black); color: var(--orange);
  padding: 6px 12px;
  border: var(--border);
  margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 1px;
}
.badge-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

.hero-title { font-size: clamp(40px, 6vw, 72px); font-weight: 800; line-height: 1.05; margin-bottom: 20px; }
.hero-sub { font-family: 'IBM Plex Mono', monospace; font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 24px; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--black); opacity: 0.2; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; }
.phone-mockup {
  position: relative;
  width: 260px;
}
.phone-screen {
  background: #1a1a2e;
  border: 3px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  border-radius: 24px;
  overflow: hidden;
  padding: 16px;
}
.screen-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.screen-time { font-family: 'IBM Plex Mono', monospace; font-size: 13px; font-weight: 700; color: white; }
.screen-icons { display: flex; gap: 6px; }

.app-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.05);
}
.app-row.active-app { background: rgba(255,102,52,0.15); border: 1px solid rgba(255,102,52,0.4); }
.app-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.app-icon.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.app-icon.yt { background: #ff0000; }
.app-icon.tw { background: #000000; }
.app-info { flex: 1; }
.app-name { display: block; font-size: 12px; font-weight: 700; color: white; }
.app-status { display: block; font-family: 'IBM Plex Mono', monospace; font-size: 9px; color: rgba(255,255,255,0.5); }
.app-timer { font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); }
.app-timer.running { color: var(--orange); }

.overlay-bubble {
  position: absolute;
  top: 60px; right: -20px;
  background: rgba(10,10,10,0.92);
  border: 2px solid var(--orange);
  box-shadow: 4px 4px 0 var(--orange);
  border-radius: 12px;
  padding: 8px 12px;
  display: flex; align-items: center; gap: 8px;
  animation: floatBubble 3s ease-in-out infinite;
}
@keyframes floatBubble { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.bubble-icon {
  width: 24px; height: 24px; border-radius: 6px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Mono', monospace; font-size: 8px; font-weight: 700; color: white;
}
.bubble-timer { font-family: 'IBM Plex Mono', monospace; font-size: 14px; font-weight: 700; color: var(--orange); }
.bubble-close { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 10px; cursor: pointer; padding: 0; }

.hero-scroll-hint {
  max-width: 1100px; margin: 48px auto 0;
  padding: 0 24px;
  display: flex; align-items: center; gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: var(--gray);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ── FEATURES ── */
.features { padding: 100px 0; background: var(--white); border-top: var(--border); border-bottom: var(--border); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--border);
}
.feature-card {
  padding: 28px;
  border-right: var(--border);
  border-bottom: var(--border);
  position: relative;
  transition: background 0.15s;
}
.feature-card:hover { background: var(--surface); }
.feature-card:nth-child(3n) { border-right: none; }
.feature-card:nth-last-child(-n+3) { border-bottom: none; }

.feature-card--large {
  grid-column: span 2;
}
.feature-card--accent {
  background: var(--black);
  color: var(--white);
}
.feature-card--accent:hover { background: #1a1a1a; }
.feature-card--accent p { color: rgba(255,255,255,0.6); }

.feature-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  border: var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 20px; height: 20px; fill: var(--white); }
.feature-card--accent .feature-icon { background: var(--orange); }

.feature-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.feature-card p { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--gray); line-height: 1.7; }

.feature-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 10px;
  background: var(--orange);
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  border: 1px solid var(--black);
}
.feature-tag--white { background: var(--white); color: var(--black); }

/* ── HOW IT WORKS ── */
.how-it-works { padding: 100px 0; }

.steps-row {
  display: flex; align-items: flex-start; gap: 0;
  border: var(--border);
}
.step {
  flex: 1; padding: 32px 28px;
  border-right: var(--border);
}
.step:last-child { border-right: none; }
.step-arrow {
  padding: 32px 0;
  font-size: 24px; font-weight: 800;
  color: var(--orange);
  display: flex; align-items: flex-start; padding-top: 36px;
  flex-shrink: 0;
}
.step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 36px; font-weight: 700;
  color: var(--orange); opacity: 0.3;
  line-height: 1; margin-bottom: 12px;
}
.step h4 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.step p { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--gray); line-height: 1.7; }

/* ── BETA ── */
.beta {
  padding: 100px 0;
  background: var(--black);
  border-top: var(--border);
  border-bottom: var(--border);
}
.beta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.beta-perks { list-style: none; margin-top: 8px; }
.beta-perks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}
.beta-perks li svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; margin-top: 2px; }

.beta-form-card { background: var(--white); border: var(--border); box-shadow: 6px 6px 0 var(--orange); padding: 28px; }
.beta-form-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.form-note { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--gray); margin-bottom: 20px; }

.beta-success {
  background: var(--white);
  border: var(--border);
  box-shadow: 6px 6px 0 var(--orange);
  padding: 40px 28px;
  text-align: center;
}
.beta-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.beta-success p { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ── DONATE ── */
.donate { padding: 100px 0; background: var(--surface); border-bottom: var(--border); }

.donate-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: var(--border);
  margin-bottom: 32px;
}
.donate-card {
  padding: 32px 24px;
  border-right: var(--border);
  text-align: center;
  background: var(--white);
  position: relative;
  transition: background 0.15s;
}
.donate-card:hover { background: var(--cream); }
.donate-card:last-child { border-right: none; }
.donate-card--featured { background: var(--black); color: var(--white); }
.donate-card--featured:hover { background: #1a1a1a; }
.donate-card--featured p { color: rgba(255,255,255,0.6); }

.donate-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; font-weight: 700;
  padding: 3px 10px; text-transform: uppercase; letter-spacing: 1px;
  border: 1px solid var(--black);
}
.donate-amount { font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.donate-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: 12px; }
.donate-card p { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }

.btn-donate {
  display: inline-block;
  padding: 10px 24px;
  background: var(--orange); color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 13px;
  border: var(--border);
  box-shadow: 3px 3px 0 var(--black);
  text-decoration: none;
  transition: transform 0.1s, box-shadow 0.1s;
}
.btn-donate:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--black); }
.btn-donate--dark { background: var(--white); color: var(--black); box-shadow: 3px 3px 0 var(--orange); }
.btn-donate--dark:hover { box-shadow: 4px 4px 0 var(--orange); }

.donate-custom { text-align: center; }
.donate-custom p { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.btn-razorpay {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: var(--black); color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 14px;
  border: var(--border);
  box-shadow: 4px 4px 0 var(--orange);
  text-decoration: none;
  transition: transform 0.1s, box-shadow 0.1s;
}
.btn-razorpay:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--orange); }

/* ── CONTACT ── */
.contact { padding: 100px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.contact-info { margin-top: 8px; }
.contact-info-row {
  display: flex; align-items: center; gap: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; color: var(--gray);
  margin-bottom: 12px;
}
.contact-info-row svg { width: 18px; height: 18px; fill: var(--orange); flex-shrink: 0; }

.contact-success { text-align: center; padding: 40px 28px; }
.contact-success h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.contact-success p { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--gray); margin-bottom: 20px; }

/* ── FOOTER ── */
.footer {
  background: var(--black);
  border-top: var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-name { color: var(--white); }
.footer-tagline { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--gray); }
.footer-links { display: flex; gap: 20px; margin-left: auto; flex-wrap: wrap; }
.footer-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 700;
  color: var(--gray); text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--gray); width: 100%; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-column: span 2; }
  .feature-card:nth-child(3n) { border-right: var(--border); }
  .feature-card:nth-child(2n) { border-right: none; }

  .steps-row { flex-direction: column; }
  .step { border-right: none; border-bottom: var(--border); }
  .step:last-child { border-bottom: none; }
  .step-arrow { display: none; }

  .beta-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .donate-grid { grid-template-columns: 1fr; }
  .donate-card { border-right: none; border-bottom: var(--border); }
  .donate-card:last-child { border-bottom: none; }

  .footer-links { margin-left: 0; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }
  .feature-card:nth-child(2n) { border-right: none; }
  .feature-card { border-right: none; }

  .hero-stats { gap: 16px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}
