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

  :root {
    --red: #e8211a;
    --red-dark: #b01510;
    --gold: #f5c518;
    --black: #0a0a0a;
    --dark: #111111;
    --mid: #1c1c1c;
    --card: #181818;
    --text: #f0f0f0;
    --muted: #888;
    --border: rgba(255,255,255,0.07);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 64px;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--text);
    text-decoration: none;
  }

  .nav-logo span { color: var(--red); }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--text); }

  .nav-cta {
    background: var(--red);
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--red-dark) !important; color: white !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 80px 5vw 60px;
  }

  /* Animated grid bg */
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(232,33,26,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(232,33,26,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
  }

  @keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
  }

  /* Radial glow */
  .hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,33,26,0.18) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,33,26,0.15);
    border: 1px solid rgba(232,33,26,0.35);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 28px;
    position: relative;
    animation: fadeDown 0.8s ease both;
  }

  .badge-dot {
    width: 7px; height: 7px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1.4s ease-in-out infinite;
  }

  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
  @keyframes fadeDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:none} }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 12vw, 140px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    position: relative;
    animation: fadeUp 0.9s 0.1s ease both;
  }

  .hero h1 em {
    display: block;
    font-style: normal;
    color: var(--red);
    -webkit-text-stroke: 1px var(--red);
  }

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

  .hero-sub {
    font-size: clamp(15px, 2vw, 19px);
    color: var(--muted);
    max-width: 560px;
    margin: 24px auto 40px;
    font-weight: 300;
    animation: fadeUp 0.9s 0.25s ease both;
  }

  .hero-sub strong { color: var(--text); font-weight: 600; }

  .hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.9s 0.4s ease both;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }

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

  .btn-primary {
    background: var(--red);
    color: white;
    box-shadow: 0 0 0 0 rgba(232,33,26,0.5);
    animation: btnGlow 2s ease-in-out infinite;
  }

  @keyframes btnGlow {
    0%,100% { box-shadow: 0 0 0 0 rgba(232,33,26,0.4); }
    50% { box-shadow: 0 0 32px 8px rgba(232,33,26,0.25); }
  }

  .btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
  }

  .btn-outline:hover { border-color: rgba(255,255,255,0.3); }

  .hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeUp 1s 0.8s ease both;
  }

  .scroll-arrow {
    width: 20px; height: 20px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    animation: bounce 1.5s ease-in-out infinite;
  }

  @keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(4px)} }

  /* ── STATS BAR ── */
  .stats {
    background: var(--mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 5vw;
    display: flex;
    justify-content: center;
    gap: clamp(30px, 6vw, 80px);
    flex-wrap: wrap;
  }

  .stat { text-align: center; }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    letter-spacing: 1px;
    color: var(--text);
    line-height: 1;
  }

  .stat-num span { color: var(--red); }

  .stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
  }

  /* ── SECTION COMMON ── */
  .section {
    padding: 100px 5vw;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
  }

  .section-sub {
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 56px;
  }

  /* ── FEATURED CARDS ── */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  }

  .card:hover {
    transform: translateY(-6px);
    border-color: rgba(232,33,26,0.4);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,33,26,0.1);
  }

  .card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--mid) 0%, #222 100%);
    position: relative;
    overflow: hidden;
  }

  /* Placeholder images with CSS art */
  .card-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    position: relative;
    overflow: hidden;
  }

  .card-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
  }

  .ci-1 { background: linear-gradient(135deg, #1a0a0a, #2d1010); }
  .ci-1::before { background: radial-gradient(circle at 30% 50%, var(--red), transparent); }
  .ci-2 { background: linear-gradient(135deg, #0a0a1a, #101028); }
  .ci-2::before { background: radial-gradient(circle at 70% 40%, #4466ee, transparent); }
  .ci-3 { background: linear-gradient(135deg, #0a1a0a, #102010); }
  .ci-3::before { background: radial-gradient(circle at 50% 60%, #22cc66, transparent); }

  .card-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
  }

  .card-body { padding: 20px 22px 24px; }

  .card-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
  }

  .card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--muted);
  }

  .card-rating { color: var(--gold); }

  /* ── MARQUEE ── */
  .marquee-wrap {
    background: var(--red);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
  }

  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
  }

  .marquee-track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 0.06em;
    padding: 0 32px;
    color: rgba(255,255,255,0.9);
    display: inline-flex;
    align-items: center;
    gap: 24px;
  }

  .marquee-track span::after {
    content: '★';
    color: rgba(255,255,255,0.4);
  }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── FEATURE ROW ── */
  .feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 5vw;
    max-width: 1200px;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    .feature-row { grid-template-columns: 1fr; gap: 40px; }
    .nav-links { display: none; }
  }

  .feature-visual {
    aspect-ratio: 4/3;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Animated rings */
  .feature-visual::before, .feature-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(232,33,26,0.2);
    animation: ringExpand 3s ease-in-out infinite;
  }

  .feature-visual::before { width: 200px; height: 200px; animation-delay: 0s; }
  .feature-visual::after { width: 300px; height: 300px; animation-delay: 1s; }

  @keyframes ringExpand {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
  }

  .feature-icon-big {
    font-size: 80px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(232,33,26,0.5));
  }

  .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
  }

  .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: var(--muted);
  }

  .feature-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: rgba(232,33,26,0.15);
    border: 1px solid rgba(232,33,26,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23e8211a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
  }

  /* ── CATEGORIES ── */
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 48px;
  }

  .cat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    color: var(--text);
    display: block;
  }

  .cat-card:hover {
    background: rgba(232,33,26,0.08);
    border-color: rgba(232,33,26,0.35);
    transform: translateY(-3px);
  }

  .cat-icon { font-size: 36px; margin-bottom: 10px; }

  .cat-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .cat-count { font-size: 11px; color: var(--muted); margin-top: 4px; }

  /* ── TESTIMONIALS ── */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
  }

  .testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
    transition: border-color 0.2s;
  }

  .testi-card:hover { border-color: rgba(232,33,26,0.25); }

  .testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 3px; }

  .testi-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .ta-1 { background: linear-gradient(135deg, #e8211a, #b01510); }
  .ta-2 { background: linear-gradient(135deg, #4466ee, #2244bb); }
  .ta-3 { background: linear-gradient(135deg, #22cc66, #118833); }

  .testi-name { font-size: 13px; font-weight: 700; }
  .testi-role { font-size: 11px; color: var(--muted); }

  /* ── NEWSLETTER ── */
  .newsletter-wrap {
    background: linear-gradient(135deg, #1a0505 0%, #0d0d0d 60%);
    border: 1px solid rgba(232,33,26,0.15);
    border-radius: 16px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 5vw 80px;
  }

  .newsletter-wrap::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232,33,26,0.12), transparent 70%);
    pointer-events: none;
  }

  .newsletter-wrap h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
    margin-bottom: 12px;
    position: relative;
  }

  .newsletter-wrap p { color: var(--muted); margin-bottom: 32px; position: relative; }

  .newsletter-form {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .newsletter-form input {
    flex: 1;
    min-width: 220px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 13px 18px;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
  }

  .newsletter-form input::placeholder { color: var(--muted); }
  .newsletter-form input:focus { border-color: rgba(232,33,26,0.5); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 60px 5vw 30px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  @media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  .footer-brand p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    margin-top: 12px;
    max-width: 260px;
  }

  .footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-col a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--text); }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--muted);
  }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ── CURSOR DOT ── */
  #cursor {
    width: 12px; height: 12px;
    background: var(--red);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.2s;
    mix-blend-mode: screen;
  }

  #cursor-ring {
    width: 40px; height: 40px;
    border: 1px solid rgba(232,33,26,0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
  }

  @media (hover: none) { #cursor, #cursor-ring { display: none; } }

  /* Particle canvas */
  #particles { position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.4; }