/* landing.css — styles for index.html only */

.landing-body {
  background: #f8fafc;
  color: #334155;
  margin: 0;
  padding: 0;
}

/* Hero */
.landing-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.landing-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.landing-badge {
  display: inline-block;
  background: rgba(99,102,241,0.05);
  border: 1px solid rgba(99,102,241,0.2);
  color: #4f46e5;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
}

.landing-h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #0f172a;
}

.gradient-text {
  background: linear-gradient(90deg, #6366f1, #10b981, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-subheading {
  font-size: 1.05rem;
  color: #475569;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Value Section */
.value-section {
  background: #0f0f1a;
  padding: 4rem 2rem;
}

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

.value-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #818cf8;
  margin-bottom: 0.5rem;
}

.value-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 2.5rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: left;
}

.value-card {
  border-radius: 14px;
  padding: 1.5rem;
  position: relative;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.vc-wide {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.vc-wide .vc-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.vc-blue    { background: linear-gradient(135deg, #1e3a5f, #1e2d4f); }
.vc-purple  { background: linear-gradient(135deg, #2d1b69, #1e1540); }
.vc-green   { background: linear-gradient(135deg, #064e3b, #0f2a20); }
.vc-orange  { background: linear-gradient(135deg, #7c2d12, #431407); }
.vc-teal    { background: linear-gradient(135deg, #134e4a, #0d2926); }
.vc-pink    { background: linear-gradient(135deg, #831843, #4a0d26); }
.vc-indigo  { background: linear-gradient(135deg, #312e81, #1e1b4b); }

.vc-number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.5rem;
}

.vc-icon {
  font-size: 1.75rem;
  margin-bottom: 0.6rem;
  display: block;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* Buy Section */
.buy-section {
  background: linear-gradient(135deg, #0f0f1a, #1a1040);
  padding: 3.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.buy-inner {
  max-width: 520px;
  margin: 0 auto;
}

.buy-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #34d399;
  margin-bottom: 0.5rem;
}

.buy-heading {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 0.6rem;
}

.buy-price {
  color: #34d399;
}

.buy-sub {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.buy-btn {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(16,185,129,0.3);
}

.buy-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.buy-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: #475569;
}

/* Divider */
.gate-divider {
  text-align: center;
  padding: 1.5rem 2rem;
  background: #f8fafc;
  position: relative;
}

.gate-divider::before,
.gate-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

.gate-divider::before { left: 5%; }
.gate-divider::after  { right: 5%; }

.gate-divider span {
  font-size: 0.8rem;
  color: #64748b;
  background: #f8fafc;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

/* Gate Section */
.gate-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 3rem 2rem 4rem;
  display: flex;
  justify-content: center;
}

.gate-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.gate-lock {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.gate-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.gate-card > p {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.gate-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gate-input-group input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  color: #0f172a;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.gate-input-group input::placeholder {
  color: #94a3b8;
}

.gate-input-group input:focus {
  outline: none;
  border-color: #6366f1;
}

.gate-input-group button {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.gate-input-group button:hover {
  opacity: 0.9;
}

.gate-card .error {
  color: #f87171;
  margin-top: 0.75rem;
  font-size: 0.875rem;
}

.gate-card .help-text {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: #475569;
}

.gate-card .help-text a {
  color: #818cf8;
  text-decoration: none;
  font-weight: 600;
}

.gate-card .help-text a:hover {
  text-decoration: underline;
}

/* Footer */
.landing-footer {
  background: #f8fafc;
  border-top: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  padding: 1.25rem;
  font-size: 0.8rem;
  color: #64748b;
}

.landing-footer a {
  color: #64748b;
  text-decoration: none;
}

.landing-footer a:hover {
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
  .value-grid {
    grid-template-columns: 1fr;
  }

  .vc-wide {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 600px) {
  .landing-hero {
    padding: 3rem 1.25rem 2.5rem;
  }

  .value-section {
    padding: 2.5rem 1.25rem;
  }
}
