@import "tailwindcss";

@font-face {
  font-family: "Eudoxus Sans";
  src: url("./assets/fonts/EudoxusSans-Regular-BF659b6cb1d4714.ttf")
    format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Eudoxus Sans";
  src: url("./assets/fonts/EudoxusSans-Medium-BF659b6cb1c14cb.ttf")
    format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Eudoxus Sans";
  src: url("./assets/fonts/EudoxusSans-Bold-BF659b6cb1408e5.ttf")
    format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Eudoxus Sans";
  src: url("./assets/fonts/EudoxusSans-ExtraBold-BF659b6cb1b96c9.ttf")
    format("truetype");
  font-weight: 800;
}
@font-face {
  font-family: "Eudoxus Sans";
  src: url("./assets/fonts/EudoxusSans-Light-BF659b6cb2036b5.ttf")
    format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Eudoxus Sans";
  src: url("./assets/fonts/EudoxusSans-ExtraLight-BF659b6cb1e7092.ttf")
    format("truetype");
  font-weight: 200;
}

.font-eudoxus {
  font-family: 'Eudoxus Sans', sans-serif;
}

details summary::-webkit-details-marker {
  display: none;
}

@layer utilities {
  .hero-bg {
    position: relative;
    background:
      radial-gradient(circle at 15% 0%, rgba(153, 0, 0, 0.9), #0A0A0A 60%),
      url('./assets/pngegge.png');
    background-size: cover, 1800px 1000px;
    background-repeat: no-repeat, repeat;
    background-blend-mode: soft-light;
  }

  .hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('./assets/pngegge.png');
    background-size: 1800px 1000px;
    background-repeat: repeat;
    filter: brightness(2) invert(1) contrast(2);
    opacity: 0.22;
    pointer-events: none;
  }

  .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.9)
    );
    pointer-events: none;
  }

  .chip-span {
    border: rgba(255, 204, 204, 60%) 1px solid;
    background: rgba(255, 204, 204, 0.2);
    border-radius: 50px;
    background-color: #F1F1F2;
  }

}

@layer components {
  .btn-primary {
    @apply inline-flex items-center gap-3 bg-[#1a1a1a] text-white text-sm font-semibold py-2 pl-2.5 pr-5 rounded-[50px] hover:bg-[#2a2a2a] transition;
  }
  
  .btn-red {
    @apply inline-flex items-center gap-2 bg-[#e8201a] text-white text-sm font-semibold px-[22px] py-2.5 rounded-[50px] hover:bg-[#c41a14] transition;
  }
  
  .btn-icon {
    @apply w-[34px] h-[34px] bg-[#e8201a] rounded-full flex items-center justify-center shrink-0;
  }
  
  .badge {
    @apply inline-flex items-center gap-2 border border-white/20 bg-white/5 rounded-[50px] px-4 py-2 text-white text-xs font-medium;
  }
  
  .nav-link {
    @apply text-gray-400 hover:text-white transition;
  }
  
  .nav-link-active {
    @apply text-white font-semibold flex items-center gap-2 before:content-[''] before:w-2 before:h-2 before:bg-[#e8201a] before:rounded-full;
  }
}

body {
  --font-sans: 'Eudoxus Sans' !important;
}

.owl-nav.disabled {
  display: none;
}

.angle-deco {
  position: relative;
}

.angle-deco::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -100px;
  width: 4px;
  height: 30px;
  background: #FF0000;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.angle-deco::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -100px;
  height: 4px;
  width: 30px;
  background: #FF0000;
}

.banner-right::after {
  content: "";
  background-image: url('./assets/images/banner-deco.png');
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.banner-right::before {
  content: "";
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.bg-default-radial {
  background-image: url(/assets/images/bg-radial.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.icon-wrap {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(232,32,26,.1);
    border: 1px solid rgba(232,32,26,.2);
    margin-bottom: 20px;
  }
 
  .check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .check-dot {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(232,32,26,.12);
    border: 1px solid rgba(232,32,26,.3);
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
  }
 
  .use-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 28px;
    transition: background .25s, border-color .25s;
  }
  .use-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(232,32,26,.25);
  }
 
  .use-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
  }
 
  /* Phone mockup */
  .phone-frame {
    background: #111;
    border-radius: 40px;
    border: 2px solid rgba(255,255,255,.1);
    padding: 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.05);
    max-width: 260px;
    margin: 0 auto;
    position: relative;
  }
  .phone-screen {
    background: linear-gradient(160deg, #1a0000 0%, #0d0d0d 100%);
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 9/19;
    position: relative;
    padding: 20px 16px;
  }
  .phone-notch {
    width: 80px; height: 22px;
    background: #111;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 16px;
  }
 
  /* Animated number counter feel */
  .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e8201a;
    line-height: 1;
  }
 
  .fade-up { animation: fadeUp .65s cubic-bezier(.22,1,.36,1) both; }
  @keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
  .d1{animation-delay:.1s} .d2{animation-delay:.2s} .d3{animation-delay:.3s} .d4{animation-delay:.4s}
.icon-ring {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid rgba(232,32,26,.3);
    background: rgba(232,32,26,.07);
    position: relative;
  }
  .icon-ring::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid rgba(232,32,26,.12);
  }
 
  .step-line {
    position: absolute;
    left: 27px; top: 60px; bottom: -16px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(232,32,26,.3), transparent);
  }
 
  .trust-badge {
    display: flex; align-items: center; gap: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: .78rem;
    font-weight: 600;
    color: #333;
    letter-spacing: .03em;
  }
  