:root {
  --accent: #b9ff6b;
  --bg: #07070b;
  --card: #0f0f13;
  --muted: #9b9b9b;
  --gradient: linear-gradient(135deg, #b9ff6b 0%, #7de84f 100%);
  --radius: 18px;
  --ff: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto;
  --ff-heading: 'Space Grotesk', var(--ff);
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  background: #07070b;
  color: var(--accent);
  font-family: var(--ff);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.15s ease;
}

.cursor-outline {
  width: 32px;
  height: 32px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transition: all 0.2s ease;
}

/* ===== NOISE OVERLAY ===== */
.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.03;
  z-index: 1000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== LAYOUT ===== */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

/* ===== HEADER ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 7, 11, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  animation: slideDown 0.6s ease;
}

.nav-left {
  flex: 1;
}

.logo-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.logo {
  height: 99px;
  filter: drop-shadow(0 8px 30px rgba(185, 255, 107, 0.15));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  color: rgba(185, 255, 107, 0.7);
  font-weight: 700;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover::after {
  width: 80%;
}

.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(185, 255, 107, 0.08);
  border: 1px solid rgba(185, 255, 107, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-glow-effect {
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(185, 255, 107, 0.3);
  background: rgba(185, 255, 107, 0.12);
}

.btn-glow:hover .btn-glow-effect {
  opacity: 0.1;
}

/* ===== HERO ===== */
.hero {
  padding: 140px 40px 80px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 50% 0%, rgba(185, 255, 107, 0.08) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(185, 255, 107, 0.08);
  border: 1px solid rgba(185, 255, 107, 0.2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: ping 2s ease-in-out infinite;
}

@keyframes ping {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.title {
  font-family: var(--ff-heading);
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 900;
  letter-spacing: -2px;
}

.title-word {
  display: inline-block;
  animation: fadeInUp 0.8s ease both;
}

.title-word:nth-child(1) { animation-delay: 0.3s; }
.title-word:nth-child(2) { animation-delay: 0.4s; }
.title-word:nth-child(3) { animation-delay: 0.5s; }
.title-word:nth-child(4) { animation-delay: 0.6s; }

.title-word.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(185, 255, 107, 0.8);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.text-glow {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(185, 255, 107, 0.5);
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.notify-form {
  animation: fadeInUp 0.8s ease 0.8s both;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.input-glow {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  border-radius: 12px;
  color: var(--accent);
  font-size: 16px;
  transition: all 0.3s ease;
}

.input-glow:focus {
  outline: none;
  border-color: rgba(185, 255, 107, 0.4);
  box-shadow: 0 0 0 4px rgba(185, 255, 107, 0.1), 0 0 20px rgba(185, 255, 107, 0.2);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gradient);
  color: #0a0a0d;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(185, 255, 107, 0.4);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.micro {
  font-size: 14px;
  color: var(--muted);
  animation: fadeInUp 0.8s ease 0.9s both;
}

.hero-right {
  animation: fadeInUp 0.8s ease 0.5s both;
}

.banner-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(185, 255, 107, 0.08), rgba(17, 17, 18, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.22, 0.98);
  overflow: hidden;
}

.card-glow {
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, var(--accent), transparent 90deg);
  animation: rotate 4s linear infinite;
  opacity: 0.3;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.banner-card img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  position: relative;
  z-index: 2;
}

.banner-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(185, 255, 107, 0.5);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease 1s both;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(185, 255, 107, 0.3);
  border-radius: 999px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 999px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* ===== SECTIONS ===== */
section {
  padding: 120px 40px;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  color: rgba(185, 255, 107, 0.6);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

.section-lead {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(185, 255, 107, 0.7);
  max-width: 800px;
  margin-bottom: 48px;
}

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 255, 107, 0.3);
}

.stat-card:hover::before {
  opacity: 0.05;
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: 56px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

/* ===== PROBLEM GRID ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.problem-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(185, 255, 107, 0.1), transparent);
  transition: left 0.6s ease;
}

.problem-card:hover .card-shine {
  left: 100%;
}

.problem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 255, 107, 0.3);
}

.problem-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.problem-card p {
  color: rgba(185, 255, 107, 0.6);
  line-height: 1.6;
}

/* ===== SOLUTION GRID ===== */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.solution-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.solution-number {
  font-family: var(--ff-heading);
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(185, 255, 107, 0.1), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.solution-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.solution-card p {
  color: rgba(185, 255, 107, 0.7);
  line-height: 1.7;
}

.card-border {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.solution-card:hover .card-border {
  opacity: 0.5;
}

.solution-card:hover {
  transform: translateY(-8px);
}

/* ===== VISION ===== */
.vision-section {
  background: linear-gradient(180deg, transparent, rgba(185, 255, 107, 0.02), transparent);
}

.vision-content {
  text-align: center;
}

.vision-title {
  font-family: var(--ff-heading);
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1.2;
  margin: 0 0 32px;
  font-weight: 900;
  letter-spacing: -1px;
}

.vision-text {
  font-size: 22px;
  line-height: 1.7;
  color: rgba(185, 255, 107, 0.8);
  max-width: 900px;
  margin: 0 auto 64px;
}

.vision-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.vision-stat {
  text-align: center;
}

.vision-stat-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.vision-stat-desc {
  color: rgba(185, 255, 107, 0.6);
  font-size: 16px;
}

/* ===== NOTIFY ===== */
.notify-section {
  background: radial-gradient(800px 400px at 50% 50%, rgba(185, 255, 107, 0.05), transparent);
}

.notify-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.notify-glow {
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, var(--accent), transparent 180deg);
  animation: rotate 8s linear infinite;
  opacity: 0.1;
}

.notify-title {
  font-family: var(--ff-heading);
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 900;
  position: relative;
  z-index: 2;
}

.notify-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(185, 255, 107, 0.7);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.notify-form-large {
  position: relative;
  z-index: 2;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.input-large {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
  border-radius: 12px;
  color: var(--accent);
  font-size: 16px;
  transition: all 0.3s ease;
}

.input-large:focus {
  outline: none;
  border-color: rgba(185, 255, 107, 0.4);
  box-shadow: 0 0 0 4px rgba(185, 255, 107, 0.1);
  transform: translateY(-2px);
}

.btn-submit {
  background: var(--gradient);
  color: #0a0a0d;
  border: none;
  padding: 18px 48px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(185, 255, 107, 0.4);
}

.btn-arrow {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.btn-submit:hover .btn-arrow {
  transform: translateX(4px);
}

.notify-footer {
  font-size: 14px;
  color: var(--muted);
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

/* ===== FOOTER ===== */
.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 48px 48px;
  background: linear-gradient(180deg, rgba(185, 255, 107, 0.02) 0%, transparent 100%);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: flex-end;
}

/* Founder Block */
.founder-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.founder-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.founder-bio {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.founder-mission {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.founder-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 0;
  padding-top: 0;
}

.founder-avatar {
  position: relative;
}

.avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7acc00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #0a0a0d;
  border: 3px solid rgba(185, 255, 107, 0.2);
}

.avatar-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  border: none;
  background: transparent;
  box-shadow: 0 8px 24px rgba(185, 255, 107, 0.2);
}

.founder-avatar {
  position: relative;
  background: transparent;
}

.founder-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.founder-role {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* Company Block */
.company-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: -4px;
  flex: 1;
}

.company-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  justify-content: flex-start;
  margin-top: 0;
}

.company-header h3 {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.company-logo-small {
  height: 28px;
  opacity: 0.8;
}

.company-logo-main {
  height: 100px !important;
  opacity: 0.9;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-section h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.info-section p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(185, 255, 107, 0.05);
  border: 1px solid rgba(185, 255, 107, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-btn:hover {
  background: rgba(185, 255, 107, 0.15);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(185, 255, 107, 0.3);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

/* ===== STICKY NOTIFY ===== */
.sticky-notify {
  position: fixed;
  right: 32px;
  bottom: 32px;
  background: var(--gradient);
  color: #0a0a0d;
  border: none;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 48px rgba(185, 255, 107, 0.4);
  transition: all 0.3s ease;
}

.sticky-notify:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 64px rgba(185, 255, 107, 0.6);
}

.notify-ping {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: #ff4444;
  border-radius: 50%;
  animation: ping 2s ease-in-out infinite;
}

/* ===== PARTICLES ===== */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 920px) {
  /* Header */
  .site-header {
    padding: 5px 24px;
  }

  .logo {
    height: 100px !important;
  }

  .btn-glow {
    height: 17px;
    padding: 0 10px;
    font-size: 9px;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .badge-dot {
    width: 5px;
    height: 5px;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding: 120px 20px 60px;
    margin-top: 0;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .badge-dot {
    width: 6px;
    height: 6px;
  }

  .title {
    font-size: 48px;
    line-height: 1.1;
  }

  .subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .input-glow,
  .btn-primary {
    width: 100%;
  }

  .micro {
    font-size: 12px;
  }

  .scroll-indicator {
    display: none;
  }

  /* Sections */
  section {
    padding: 60px 20px;
  }

  .section-tag {
    font-size: 10px;
  }

  .section-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .section-lead {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Stats Grid */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 48px;
  }

  /* Problem Section */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .problem-card h3 {
    font-size: 20px;
  }

  .problem-card p {
    font-size: 13px;
  }

  /* Solution Section */
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solution-number {
    font-size: 14px;
  }

  .solution-card h3 {
    font-size: 20px;
  }

  .solution-card p {
    font-size: 14px;
  }

  /* Vision Section */
  .vision-title {
    font-size: 32px;
  }

  .vision-text {
    font-size: 15px;
  }

  .vision-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Notify Section */
  .notify-section {
    padding: 80px 20px;
  }

  .notify-title {
    font-size: 36px;
  }

  .notify-subtitle {
    font-size: 15px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn-submit {
    padding: 16px 24px;
    font-size: 15px;
  }

  /* Footer */
  .site-footer {
    padding: 40px 20px 30px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .founder-block,
  .company-block {
    width: 100%;
  }

  .founder-block {
    gap: 16px;
  }

  .company-block {
    gap: 20px;
  }

  .founder-profile {
    justify-content: flex-start;
  }

  .info-section {
    margin-bottom: 0;
  }

  .info-section h4 {
    font-size: 9px;
    margin-bottom: 6px;
  }

  .info-section p {
    font-size: 12px;
    line-height: 1.5;
  }

  .founder-name {
    font-size: 15px;
  }

  .founder-role {
    font-size: 11px;
  }

  .avatar-img {
    width: 48px;
    height: 48px;
  }

  .social-links {
    justify-content: flex-start;
    gap: 10px;
  }

  .social-btn {
    width: 36px;
    height: 36px;
  }

  .social-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Sticky Notify */
  .sticky-notify {
    right: 20px;
    bottom: 20px;
    padding: 12px 20px;
    font-size: 13px;
  }

  /* Disable Custom Cursor */
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .logo {
    height: 90px !important;
  }

  .btn-glow {
    height: 15px;
    padding: 0 8px;
    font-size: 8px;
  }

  .title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .notify-title,
  .vision-title {
    font-size: 28px;
  }

  .stat-number {
    font-size: 36px;
  }

  .info-section h4 {
    font-size: 8px;
  }

  .info-section p {
    font-size: 11px;
  }

  .founder-name {
    font-size: 14px;
  }

  .avatar-img {
    width: 44px;
    height: 44px;
  }

  .social-btn {
    width: 32px;
    height: 32px;
  }

  .social-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* ===== SELECTION ===== */
::selection {
  background: rgba(185, 255, 107, 0.3);
  color: #0a0a0d;
}

