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

    :root {
      --bg:        #0a0d14;
      --bg2:       #0f1320;
      --bg3:       #141929;
      --border:    rgba(255,255,255,0.07);
      --text:      #e8eaf0;
      --muted:     #7a8299;
      --accent1:   #4f7cff;
      --accent2:   #34d4a4;
      --grad:      linear-gradient(135deg, #4f7cff 0%, #34d4a4 100%);
      --grad-rev:  linear-gradient(135deg, #4f7cff 0%, #6b4fff 100%);
      --grad-go:   linear-gradient(135deg, #34d4a4 0%, #0fb8c9 100%);
      --grad-rankowl: linear-gradient(135deg, #a855f7 0%, #d946ef 100%);
      --grad-muddyhogs: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── ACCESSIBILITY & FOCUS ── */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 1rem;
      background: var(--grad);
      color: #fff;
      padding: 0.6rem 1.2rem;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.875rem;
      z-index: 1000;
      text-decoration: none;
      transition: top 0.2s ease;
    }

    .skip-link:focus {
      top: 1rem;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
      outline: 2px solid var(--accent1);
      outline-offset: 3px;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 6%;
      background: rgba(10,13,20,0.85);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      transition: color 0.2s;
    }

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

    .nav-cta {
      background: var(--grad);
      color: #fff !important;
      padding: 0.45rem 1.1rem;
      border-radius: 6px;
      font-weight: 600 !important;
      transition: opacity 0.2s !important;
    }

    .nav-cta:hover { opacity: 0.88; }

    .nav-toggle {
      display: none;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: 8px;
      color: var(--text);
      padding: 0.5rem 0.65rem;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s, background 0.2s;
    }

    .nav-toggle:hover {
      border-color: rgba(255,255,255,0.25);
      background: rgba(255,255,255,0.04);
    }

    .nav-toggle svg {
      width: 22px;
      height: 22px;
      display: block;
      stroke: currentColor;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 7rem 6% 5rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
      height: 900px;
      background: radial-gradient(circle, rgba(79,124,255,0.12) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -10%;
      right: -5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(52,212,164,0.08) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(79,124,255,0.12);
      border: 1px solid rgba(79,124,255,0.25);
      color: #7fa8ff;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.35rem 0.9rem;
      border-radius: 100px;
      margin-bottom: 1.8rem;
    }

    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 5rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      max-width: 820px;
      margin-bottom: 1.5rem;
    }

    .hero h1 span {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--muted);
      max-width: 560px;
      margin-bottom: 2.5rem;
      font-weight: 400;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-primary {
      background: var(--grad);
      color: #fff;
      padding: 0.8rem 1.8rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.2s;
      display: inline-block;
    }

    .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

    .btn-outline {
      background: transparent;
      color: var(--text);
      padding: 0.8rem 1.8rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      border: 1px solid var(--border);
      transition: border-color 0.2s, transform 0.2s;
      display: inline-block;
    }

    .btn-outline:hover { border-color: rgba(255,255,255,0.25); transform: translateY(-1px); }

    .hero-stats {
      display: flex;
      gap: 3rem;
      margin-top: 4rem;
      padding-top: 3rem;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
      justify-content: center;
    }

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

    .stat-value {
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-label {
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 0.2rem;
    }

    /* ── SECTION SHARED ── */
    section { padding: 6rem 6%; }

    .section-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent1);
      margin-bottom: 0.8rem;
    }

    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .section-sub {
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 540px;
      line-height: 1.7;
    }

    /* ── PRODUCTS ── */
    #products {
      background: var(--bg2);
    }

    .products-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .products-header .section-sub { margin: 0 auto; }

    .products-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .product-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2.5rem;
      transition: transform 0.25s, border-color 0.25s;
      position: relative;
      overflow: hidden;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
    }

    .product-card.revuquest::before { background: var(--grad-rev); }
    .product-card.golaketexoma::before { background: var(--grad-go); }
    .product-card.rankowl::before { background: var(--grad-rankowl); }
    .product-card.muddyhogs::before { background: var(--grad-muddyhogs); }

    .product-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,255,255,0.14);
    }

    .product-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .product-card.revuquest .product-icon { background: rgba(79,124,255,0.15); }
    .product-card.golaketexoma .product-icon { background: rgba(52,212,164,0.15); }
    .product-card.rankowl .product-icon { background: rgba(168,85,247,0.15); }
    .product-card.muddyhogs .product-icon { background: rgba(249,115,22,0.15); }

    .product-tag {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.65rem;
      border-radius: 4px;
      margin-bottom: 1rem;
      display: inline-block;
    }

    .product-card.revuquest .product-tag {
      background: rgba(79,124,255,0.12);
      color: #7fa8ff;
    }

    .product-card.golaketexoma .product-tag {
      background: rgba(52,212,164,0.12);
      color: #5de8c4;
    }

    .product-card.rankowl .product-tag {
      background: rgba(168,85,247,0.12);
      color: #c084fc;
    }

    .product-card.muddyhogs .product-tag {
      background: rgba(249,115,22,0.12);
      color: #fb923c;
    }

    .product-name {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 0.75rem;
    }

    .product-desc {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 1.8rem;
    }

    .product-features {
      list-style: none;
      margin-bottom: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .product-features li {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.88rem;
      color: var(--muted);
    }

    .product-features li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .product-card.revuquest .product-features li::before { background: var(--accent1); }
    .product-card.golaketexoma .product-features li::before { background: var(--accent2); }
    .product-card.rankowl .product-features li::before { background: #a855f7; }
    .product-card.muddyhogs .product-features li::before { background: #f97316; }

    .product-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      transition: gap 0.2s;
    }

    .product-card.revuquest .product-link { color: #7fa8ff; }
    .product-card.golaketexoma .product-link { color: #5de8c4; }
    .product-card.rankowl .product-link { color: #c084fc; }
    .product-card.muddyhogs .product-link { color: #fb923c; }
    .product-link:hover { gap: 0.7rem; }

    /* ── ABOUT ── */
    #about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
    }

    #about-section { padding: 6rem 6%; }

    .about-text p {
      color: var(--muted);
      line-height: 1.8;
      font-size: 0.98rem;
      margin-bottom: 1.2rem;
    }

    .about-text p:last-child { margin-bottom: 0; }

    .about-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }

    .value-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.4rem;
    }

    .value-icon {
      font-size: 1.4rem;
      margin-bottom: 0.6rem;
    }

    .value-title {
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 0.3rem;
    }

    .value-desc {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ── CONTACT ── */
    #contact-section {
      background: var(--bg2);
      padding: 6rem 6%;
    }

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

    .contact-inner .section-title { margin-bottom: 0.8rem; }
    .contact-inner .section-sub { margin: 0 auto 2.5rem; }

    .contact-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2.5rem;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      text-align: left;
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }

    .form-group label {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 0.02em;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 8px;
      color: var(--text);
      font-family: inherit;
      font-size: 0.9rem;
      padding: 0.7rem 1rem;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--accent1);
    }

    .form-group textarea { resize: vertical; min-height: 110px; }

    .form-group select option { background: var(--bg2); }

    .form-submit {
      background: var(--grad);
      color: #fff;
      border: none;
      padding: 0.85rem 1.8rem;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      font-family: inherit;
      transition: opacity 0.2s, transform 0.2s;
      margin-top: 0.5rem;
    }

    .form-submit:hover { opacity: 0.88; transform: translateY(-1px); }

    .contact-direct {
      margin-top: 1.8rem;
      padding-top: 1.8rem;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      color: var(--muted);
      font-size: 0.875rem;
    }

    .contact-direct a {
      color: var(--accent1);
      text-decoration: none;
      font-weight: 600;
    }

    .contact-direct a:hover { text-decoration: underline; }

    /* ── FOOTER ── */
    footer {
      padding: 2.5rem 6%;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-logo {
      font-size: 0.95rem;
      font-weight: 700;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-copy {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
    }

    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.82rem;
      transition: color 0.2s;
    }

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

    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── LEGAL PAGES ── */
    .legal-container {
      max-width: 800px;
      margin: 7.5rem auto 4rem;
      padding: 0 6%;
      line-height: 1.8;
      color: var(--muted);
      min-height: calc(100vh - 300px);
    }

    .legal-container h1, .legal-container h2 {
      color: var(--text);
    }

    .legal-container h1 {
      font-size: clamp(2rem, 4vw, 2.5rem);
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .legal-container p {
      margin-bottom: 1.5rem;
    }

    .legal-container h2 {
      font-size: 1.4rem;
      margin-top: 2.5rem;
      margin-bottom: 1rem;
    }

    .legal-container a {
      color: var(--accent1);
      text-decoration: none;
    }

    .legal-container a:hover {
      text-decoration: underline;
    }

    .legal-container ul {
      margin-bottom: 1.5rem;
      padding-left: 2rem;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 1rem 5%; }
      .nav-toggle { display: flex; }
      .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 13, 20, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 1.5rem 6%;
        gap: 1.25rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
        box-shadow: 0 12px 30px rgba(0,0,0,0.6);
      }
      .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      .nav-links a {
        font-size: 1rem;
        display: inline-block;
      }
      .nav-links .nav-cta {
        text-align: center;
        display: block;
        padding: 0.65rem 1.1rem;
      }
      section { padding: 4rem 5%; }
      #about { grid-template-columns: 1fr; gap: 3rem; }
      #about-section { padding: 4rem 5%; }
      #contact-section { padding: 4rem 5%; }
      .about-values { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr; }
      footer { flex-direction: column; text-align: center; }
    }

    @media (max-width: 480px) {
      .about-values { grid-template-columns: 1fr; }
    }
