/*!****************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./frontend/pages/index/index.css ***!
  \****************************************************************************************************************************/
/* ==========================================================================
   Eko Trap — Landing Page
   ========================================================================== */

:root {
  --accent: #9bd64f;
  --accent-deep: #5b8f2a;
}

html {
  scroll-behavior: smooth;
}

.et-page {
  overflow-x: hidden;
}

/* ── Glass / grid / glow decorations ──────────────────────────────────── */

.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

#nav.scrolled {
  background: rgba(12, 14, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.grid-bg {
  background-image:
    linear-gradient(rgba(233, 236, 225, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 236, 225, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}

/* ── Nav / links / buttons ─────────────────────────────────────────────── */

.nav-link {
  position: relative;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}
.nav-link:hover {
  color: var(--paper, #e9ece1);
}
.nav-link:hover::after {
  width: 100%;
}

.btn-accent {
  background: var(--accent);
  color: #0c0e0a;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-accent:hover {
  background: #aee165;
  box-shadow: 0 8px 24px -8px rgba(155, 214, 79, 0.55);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.txt-grad {
  background: linear-gradient(100deg, var(--accent) 0%, #e3f5c7 55%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Phone mockups ─────────────────────────────────────────────────────── */

.phone {
  position: relative;
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(160deg, #23281a, #0c0e0a);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.phone-screen {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 19.5;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 18px;
  border-radius: 10px;
  background: #000;
  z-index: 2;
}

.phone-stack {
  position: relative;
}
.phone-back,
.phone-front {
  position: relative;
}
.phone-back {
  position: absolute;
  width: 82%;
  opacity: 0.85;
  filter: saturate(0.85) brightness(0.85);
}
.phone-front {
  position: relative;
  z-index: 2;
}

.float {
  animation: floatY 6s ease-in-out infinite;
}
.floatB {
  animation: floatY 7s ease-in-out infinite;
  animation-delay: -2.5s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.pulse-ring {
  animation: pulseRing 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ── Scroll reveal ─────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}
.reveal-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-scale,
  .float,
  .floatB,
  .pulse-ring {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Marquee ticker ────────────────────────────────────────────────────── */

.marquee {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: marqueeScroll 28s linear infinite;
}
.marquee:hover {
  animation-play-state: paused;
}
.marquee span {
  white-space: nowrap;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Feature cards / spec list ─────────────────────────────────────────── */

.fcard {
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.fcard:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 214, 79, 0.35);
  background: rgba(26, 30, 20, 0.9);
}

.spec-item {
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.spec-item.is-active {
  opacity: 1;
}
.spec-bar {
  transition: height 0.3s ease;
}

/* ── Legal document body (Terms / Privacy) ────────────────────────────── */

.legal-content {
  line-height: 1.7;
}
.legal-content p,
.legal-content > br {
  margin: 0 0 1.1em;
}
.legal-content ul,
.legal-content ol {
  margin: 0 0 1.1em 1.4em;
  padding: 0;
}
.legal-content ul {
  list-style: disc;
}
.legal-content ol {
  list-style: decimal;
}
.legal-content li {
  margin: 0 0 0.6em;
}
.legal-content li ul,
.legal-content li ol {
  margin-top: 0.6em;
}
.legal-content .corporate_subheading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent-deep);
  margin: 1.8em 0 0.7em;
}
.legal-content strong {
  font-weight: 600;
}


/*# sourceMappingURL=indexView.css.map*/