/*
Theme Name: Ruyah Creative
Author: Adnan
Version: 1.0
*/


  :root {
    --yellow: #FFD600;
    --black: #0A0A0A;
    --white: #FAFAFA;
    --yellow-dim: rgba(255,214,0,0.08);
    --yellow-mid: rgba(255,214,0,0.15);
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s var(--transition), height 0.3s var(--transition), background 0.3s;
  }
  .cursor-trail {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--yellow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: left 0.15s var(--transition), top 0.15s var(--transition), width 0.3s var(--transition), height 0.3s var(--transition), opacity 0.3s;
    opacity: 0.5;
  }
  body:hover .cursor { opacity: 1; }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,214,0,0.1);
    transition: all 0.4s var(--transition);
  }
  nav.scrolled {
    padding: 1rem 4rem;
    background: rgba(10,10,10,0.97);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
    color: var(--yellow);
    text-decoration: none;
    transition: transform 0.3s var(--transition), letter-spacing 0.3s;
  }
  .nav-logo:hover { transform: scale(1.05); letter-spacing: 0.1em; }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--yellow);
    transition: width 0.3s var(--transition);
  }
  .nav-links a:hover { color: var(--yellow); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--yellow);
    color: var(--black) !important;
    padding: 0.6rem 1.5rem;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    font-weight: 700 !important;
    transition: background 0.3s, transform 0.3s var(--transition) !important;
  }
  .nav-cta:hover { background: #fff !important; transform: scale(1.05) !important; }
  .nav-cta::after { display: none !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 4rem;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(255,214,0,0.12) 0%, transparent 70%);
  }
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,214,0,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,214,0,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
  }
  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--transition) 0.2s forwards;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 40px; height: 1px;
    background: var(--yellow);
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 12vw, 11rem);
    line-height: 0.9;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.9s var(--transition) 0.4s forwards;
  }
  .hero-title span { color: var(--yellow); display: block; }
  .hero-desc {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(250,250,250,0.65);
    max-width: 560px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.9s var(--transition) 0.6s forwards;
  }
  .hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.9s var(--transition) 0.8s forwards;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.5rem;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: transform 0.3s var(--transition), background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition);
  }
  .btn-primary:hover::before { transform: scaleX(1); }
  .btn-primary:hover { transform: translateY(-3px); }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-ghost {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: color 0.3s, border-color 0.3s, letter-spacing 0.3s;
  }
  .btn-ghost:hover { color: var(--yellow); border-color: var(--yellow); letter-spacing: 0.15em; }

  /* HERO STATS */
  .hero-stats {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 3rem;
    opacity: 0;
    animation: fadeLeft 0.9s var(--transition) 1s forwards;
  }
  .hero-stat {
    text-align: right;
    position: relative;
    transition: transform 0.3s var(--transition);
  }
  .hero-stat:hover { transform: translateX(-8px); }
  .hero-stat::before {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--yellow);
    transition: height 0.5s var(--transition);
  }
  .hero-stat:hover::before { height: 100%; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--yellow);
  }
  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,250,250,0.4);
  }

  /* SCROLL INDICATOR */
  .scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--transition) 1.5s forwards;
  }
  .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--yellow), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  .scroll-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }

  /* SECTION STYLES */
  section { padding: 7rem 4rem; position: relative; }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .section-label::before {
    content: '';
    display: inline-block;
    width: 30px; height: 1px;
    background: var(--yellow);
  }

  /* MARQUEE */
  .marquee-wrap {
    overflow: hidden;
    border-top: 1px solid rgba(255,214,0,0.15);
    border-bottom: 1px solid rgba(255,214,0,0.15);
    padding: 1.2rem 0;
    background: rgba(255,214,0,0.03);
  }
  .marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
  }
  .marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    padding: 0 2.5rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .marquee-dot { color: var(--yellow); font-size: 1.8rem; line-height: 1; }

  /* WHY US */
  #why {
    background: linear-gradient(135deg, rgba(255,214,0,0.03) 0%, transparent 50%);
  }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .why-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
  }
  .why-headline em { color: var(--yellow); font-style: normal; display: block; }
  .why-big-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 1;
    color: var(--yellow);
    opacity: 0.15;
    position: absolute;
    top: -1rem;
    right: 0;
    pointer-events: none;
  }
  .credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(255,214,0,0.1);
  }
  .cred-card {
    background: var(--black);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.4s var(--transition);
  }
  .cred-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--yellow);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s var(--transition);
    z-index: 0;
  }
  .cred-card:hover::before { transform: scaleY(1); }
  .cred-card:hover .cred-num, .cred-card:hover .cred-sub { color: var(--black); }
  .cred-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--yellow);
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  .cred-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }

  /* RESULTS */
  #results { background: var(--black); }
  .results-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,214,0,0.15);
  }
  .tab-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.4);
    cursor: none;
    position: relative;
    transition: color 0.3s;
  }
  .tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.3s var(--transition);
  }
  .tab-btn.active { color: var(--yellow); }
  .tab-btn.active::after { transform: scaleX(1); }
  .tab-btn:hover { color: var(--white); }
  .tab-panel { display: none; }
  .tab-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; animation: fadeUp 0.5s var(--transition) forwards; }
  .result-card {
    position: relative;
    overflow: hidden;
    background: rgba(255,214,0,0.04);
    border: 1px solid rgba(255,214,0,0.08);
    transition: border-color 0.4s, transform 0.4s var(--transition);
    aspect-ratio: 9/14;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
  }
  .result-card:hover {
    border-color: rgba(255,214,0,0.4);
    transform: translateY(-8px);
  }
  .result-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: 1;
  }
  .result-card-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    opacity: 0.04;
    font-family: 'Bebas Neue', sans-serif;
  }
  .result-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--yellow);
    color: var(--black);
    padding: 0.25rem 0.75rem;
    display: inline-block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
  }
  .result-views {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--yellow);
    position: relative;
    z-index: 2;
  }
  .result-client {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
  }

  /* CLIENTS */
  #clients {
    background: linear-gradient(180deg, var(--black) 0%, rgba(255,214,0,0.03) 50%, var(--black) 100%);
  }
  .clients-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 3.5rem;
    max-width: 600px;
  }
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5px;
    background: rgba(255,214,0,0.08);
  }
  .client-tile {
    background: var(--black);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: background 0.35s var(--transition), transform 0.35s var(--transition);
    position: relative;
    overflow: hidden;
  }
  .client-tile::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.35s var(--transition);
  }
  .client-tile:hover { background: rgba(255,214,0,0.06); transform: translateY(-4px); }
  .client-tile:hover::after { transform: scaleX(1); }
  .client-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.4rem;
    transition: color 0.3s;
  }
  .client-tile:hover .client-name { color: var(--yellow); }
  .client-desc {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.5;
  }

  /* SERVICES / REASONS */
  #reasons { background: var(--black); }
  .reasons-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }
  .reasons-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 0.95;
    position: sticky;
    top: 8rem;
  }
  .reasons-title span { color: var(--yellow); display: block; }
  .reasons-list { display: flex; flex-direction: column; gap: 0; }
  .reason-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 2rem 0;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
  }
  .reason-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: rgba(255,214,0,0.05);
    transition: width 0.4s var(--transition);
  }
  .reason-item:hover::before { width: 100%; }
  .reason-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: rgba(255,214,0,0.2);
    min-width: 3rem;
    transition: color 0.3s, transform 0.3s var(--transition);
  }
  .reason-item:hover .reason-num { color: var(--yellow); transform: scale(1.1); }
  .reason-body {}
  .reason-title-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 0.5rem;
    transition: letter-spacing 0.3s;
  }
  .reason-item:hover .reason-title-text { letter-spacing: 0.1em; }
  .reason-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
  }

  /* PRICING */
  #pricing {
    background: linear-gradient(135deg, rgba(255,214,0,0.04) 0%, transparent 60%);
  }
  .pricing-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
  }
  .pricing-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 0.95;
  }
  .pricing-headline span { color: var(--yellow); }
  .pricing-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    max-width: 220px;
    text-align: right;
    line-height: 1.7;
  }
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(255,214,0,0.08);
  }
  .price-card {
    background: var(--black);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--transition);
  }
  .price-card.featured { background: var(--yellow); }
  .price-card:not(.featured):hover { transform: translateY(-6px); background: rgba(255,214,0,0.06); }
  .price-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--black);
    color: var(--yellow);
    padding: 0.3rem 0.8rem;
    display: inline-block;
    margin-bottom: 1.5rem;
  }
  .featured .price-badge { background: var(--black); color: var(--yellow); }
  .price-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--yellow);
  }
  .featured .price-name { color: var(--black); }
  .price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--white);
    margin-bottom: 0.25rem;
  }
  .featured .price-amount { color: var(--black); }
  .price-strike {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    text-decoration: line-through;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1.5rem;
  }
  .featured .price-strike { color: rgba(0,0,0,0.3); }
  .price-per {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-bottom: 2rem;
  }
  .featured .price-per { color: rgba(0,0,0,0.4); }
  .price-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 2rem; }
  .featured .price-divider { background: rgba(0,0,0,0.15); }
  .price-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
  .price-features li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    line-height: 1.5;
  }
  .featured .price-features li { color: rgba(0,0,0,0.7); }
  .price-features li::before {
    content: '→';
    color: var(--yellow);
    font-size: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
  }
  .featured .price-features li::before { color: var(--black); }
  .price-cta {
    display: block;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: all 0.3s var(--transition);
  }
  .price-card:not(.featured) .price-cta {
    background: rgba(255,214,0,0.1);
    color: var(--yellow);
    border: 1px solid rgba(255,214,0,0.2);
  }
  .price-card:not(.featured) .price-cta:hover { background: var(--yellow); color: var(--black); }
  .featured .price-cta { background: var(--black); color: var(--yellow); }
  .featured .price-cta:hover { background: rgba(0,0,0,0.85); }

  /* INFLUENCER */
  #influencer { background: var(--black); }
  .influencer-inner {
    border: 1px solid rgba(255,214,0,0.12);
    padding: 5rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s;
  }
  .influencer-inner:hover { border-color: rgba(255,214,0,0.3); }
  .influencer-inner::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,214,0,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .inf-handle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--yellow);
    margin-bottom: 0.5rem;
  }
  .inf-followers {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .inf-desc { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 2rem; }
  .audience-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .pill {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255,214,0,0.2);
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    transition: all 0.3s;
  }
  .pill:hover { border-color: var(--yellow); color: var(--yellow); }
  .audience-bars { display: flex; flex-direction: column; gap: 1rem; }
  .aud-row {
    display: grid;
    grid-template-columns: 140px 1fr 50px;
    align-items: center;
    gap: 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s;
  }
  .aud-row:hover .aud-bar-fill { filter: brightness(1.3); }
  .aud-label { color: rgba(255,255,255,0.5); }
  .aud-bar { height: 4px; background: rgba(255,255,255,0.06); overflow: hidden; }
  .aud-bar-fill {
    height: 100%;
    background: var(--yellow);
    width: 0;
    transition: width 1.5s var(--transition);
  }
  .aud-pct { color: var(--yellow); text-align: right; }

  /* CTA SECTION */
  #cta {
    text-align: center;
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at center, rgba(255,214,0,0.07) 0%, transparent 70%);
  }
  .cta-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,214,0,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,214,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  }
  .cta-content { position: relative; z-index: 2; }
  .cta-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.5rem;
  }
  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
  }
  .cta-title span { color: var(--yellow); display: block; }
  .cta-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
  }
  .cta-contacts {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 4rem;
  }
  .cta-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s, gap 0.3s;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
  }
  .cta-contact-item:hover { color: var(--yellow); gap: 1.5rem; border-color: rgba(255,214,0,0.3); }
  .cta-contact-icon {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,214,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s;
  }
  .cta-contact-item:hover .cta-contact-icon { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

  /* FOOTER */
  footer {
    padding: 2.5rem 4rem;
    border-top: 1px solid rgba(255,214,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
    transition: color 0.3s;
  }
  .footer-logo:hover { color: var(--yellow); }
  .footer-copy {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeLeft {
    from { opacity: 0; transform: translateX(40px) translateY(-50%); }
    to { opacity: 1; transform: translateX(0) translateY(-50%); }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* HOVER LINE */
  .hover-line {
    position: relative;
    display: inline-block;
  }
  .hover-line::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--yellow);
    transition: width 0.4s var(--transition);
  }
  .hover-line:hover::after { width: 100%; }

  /* YELLOW ACCENT BLOCKS */
  .accent-block {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: 0 0.3em;
  }

  /* SERVICES ROW */
  .services-row {
    display: flex;
    gap: 1.5px;
    background: rgba(255,214,0,0.08);
    margin-top: 4rem;
  }
  .service-tile {
    flex: 1;
    background: var(--black);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.35s var(--transition), transform 0.35s var(--transition);
  }
  .service-tile:hover { background: rgba(255,214,0,0.06); transform: translateY(-4px); }
  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s var(--transition);
  }
  .service-tile:hover .service-icon { transform: scale(1.2) rotate(-5deg); }
  .service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 0.75rem;
  }
  .service-desc { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; }

  /* SECOND PRICING GRID */
  .pricing-secondary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(255,214,0,0.08);
    margin-top: 1.5px;
  }
  .price-card-sm {
    background: var(--black);
    padding: 2.5rem;
    transition: background 0.3s, transform 0.35s var(--transition);
  }
  .price-card-sm:hover { background: rgba(255,214,0,0.05); transform: translateY(-4px); }
  .price-card-sm .price-name { font-size: 1.5rem; }
  .price-card-sm .price-amount { font-size: 3rem; }

  .nav-logo-svg{height:46px;width:auto;display:flex;align-items:center}
  .nav-logo-svg svg{height:46px;width:auto;display:block;transition:filter .3s,transform .3s}
  .nav-logo:hover .nav-logo-svg svg{filter:brightness(1.3) drop-shadow(0 0 10px rgba(255,214,0,.55));transform:scale(1.04)}
  .footer-logo-svg{height:30px;width:auto;display:flex;align-items:center;opacity:.45;transition:opacity .3s}
  .footer-logo-svg:hover{opacity:1}
  .footer-logo-svg svg{height:30px;width:auto;display:block}
  .hero{padding-top:96px;box-sizing:border-box}
  .hero-content{max-width:520px}
  .hero-organically{color:rgba(255,255,255,0.15);-webkit-text-stroke:1px rgba(255,214,0,0.3)}
  body.light-mode .hero-organically{color:#0A1628;-webkit-text-stroke:0px}
  .hero-chrome{position:absolute;left:50%;top:14%;transform:translateX(-50%);width:680px;max-width:44vw;z-index:1;overflow:visible;pointer-events:none;animation:fadeUp 1.2s var(--transition) 0.3s both}
  #chromeCanvas{width:100%!important;height:auto!important;display:block;outline:none;overflow:visible}
  .hero-stats-right{position:absolute;right:3.5rem;top:50%;transform:translateY(-50%);display:flex;flex-direction:column;gap:2rem;z-index:3;text-align:right}
  .hero-stats-right .stat-num{font-family:'Bebas Neue',sans-serif;font-size:clamp(1.8rem,3vw,2.9rem);color:var(--yellow);line-height:1;letter-spacing:.02em}
  .hero-stats-right .stat-label{font-family:'Barlow Condensed',sans-serif;font-size:.58rem;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,0.4);margin-top:.2rem}
  .founder-card{border:1px solid rgba(255,214,0,.18);padding:1.2rem 1.6rem;flex:1;min-width:175px;transition:border-color .3s,background .3s}
  .founder-card:hover{border-color:rgba(255,214,0,.5);background:rgba(255,214,0,.04)}
  .founder-name{font-family:'Bebas Neue',sans-serif;font-size:1.35rem;color:var(--yellow);letter-spacing:.05em;margin-bottom:.25rem}
  .founder-role{font-family:'Barlow Condensed',sans-serif;font-size:.65rem;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.35)}
  .founder-handle{font-family:'Barlow Condensed',sans-serif;font-size:.65rem;letter-spacing:.12em;color:rgba(255,214,0,.5);margin-top:.4rem}
  .theme-toggle{background:none;border:1px solid rgba(255,214,0,.3);cursor:pointer;padding:0;margin-left:1.5rem;border-radius:999px;transition:border-color .3s;flex-shrink:0}
  .theme-toggle:hover{border-color:rgba(255,214,0,.7)}
  .theme-toggle-track{position:relative;width:52px;height:28px;border-radius:999px;background:rgba(255,255,255,.07);display:flex;align-items:center;padding:4px;transition:background .4s}
  .theme-toggle-thumb{position:absolute;left:4px;width:20px;height:20px;border-radius:50%;background:var(--yellow);transition:transform .4s cubic-bezier(.16,1,.3,1);z-index:1;box-shadow:0 1px 4px rgba(0,0,0,.4)}
  .theme-icon-dark,.theme-icon-light{position:absolute;font-size:11px;line-height:1;transition:opacity .3s;pointer-events:none}
  .theme-icon-dark{right:6px;opacity:1}.theme-icon-light{left:6px;opacity:0}
  body.light-mode .theme-toggle-thumb{transform:translateX(24px)}
  body.light-mode .theme-toggle-track{background:rgba(0,0,0,.08)}
  body.light-mode .theme-icon-dark{opacity:0}
  body.light-mode .theme-icon-light{opacity:1}
  #bgOverlay{position:fixed;inset:0;background:#000744;opacity:0.5;z-index:0;pointer-events:none}
  body.light-mode #bgOverlay{display:none}
  .cred-card{background:rgba(0,7,68,0.5)!important}.client-tile{background:rgba(0,7,68,0.5)!important}
  .price-card{background:rgba(0,7,68,0.5)!important}.price-card.featured{background:var(--yellow)!important}
  .result-card{background:rgba(0,7,68,0.5)!important}.influencer-inner{background:rgba(0,7,68,0.5)!important}
  nav{background:rgba(0,7,68,0.85)!important}nav.scrolled{background:rgba(0,7,68,0.97)!important}
  footer{background:rgba(0,7,68,0.9)}#cta{background:rgba(0,7,68,0.95)!important}
  .credentials-grid{background:rgba(0,7,68,0.25)}.clients-grid{background:rgba(0,7,68,0.2)}
  .pricing-cards,.pricing-secondary{background:rgba(0,7,68,0.2)}
  .client-tile:hover{background:rgba(0,7,68,0.75)!important}.price-card:not(.featured):hover{background:rgba(0,7,68,0.8)!important}
  .cred-card::before{background:var(--yellow)!important}
  .cred-card:hover .cred-num,.cred-card:hover .cred-sub{color:#0A0A0A!important}
  body.light-mode{background:#FFD600;color:#0D1B2A}
  body.light-mode .cursor{background:#0A1628}body.light-mode .cursor-trail{border-color:#0A1628}
  body.light-mode nav{background:rgba(255,214,0,.92)!important;border-bottom-color:rgba(0,0,0,.12)!important}
  body.light-mode nav.scrolled{background:rgba(255,214,0,.98)!important}
  body.light-mode .nav-logo-svg svg .cls-1{fill:#0D1B2A}
  body.light-mode .nav-links a{color:#0D1B2A}body.light-mode .nav-links a::after{background:#0A1628}
  body.light-mode .nav-cta{background:#0A1628!important;color:#FFD600!important}
  body.light-mode .hero{background:#FFD600!important}
  body.light-mode .hero-bg{background:radial-gradient(ellipse 80% 60% at 60% 50%,rgba(0,20,60,.06) 0%,transparent 70%)!important}
  body.light-mode .hero-title{color:#0D1B2A}body.light-mode .hero-title span:first-of-type{color:#0A1628}
  body.light-mode .hero-eyebrow{color:#0A1628}body.light-mode .hero-eyebrow::before{background:#0A1628}
  body.light-mode .hero-desc{color:rgba(10,22,40,.65)}
  body.light-mode .hero-stats-right .stat-num{color:#0A1628}body.light-mode .hero-stats-right .stat-label{color:rgba(10,22,40,.55)}
  body.light-mode .btn-primary{background:#0A1628;color:#FFD600}body.light-mode .btn-ghost{color:#0D1B2A;border-color:rgba(0,0,0,.3)}
  body.light-mode .marquee-wrap{background:rgba(0,0,0,.04);border-color:rgba(0,0,0,.12)}
  body.light-mode .marquee-item{color:#0D1B2A!important}body.light-mode .marquee-dot{color:#0A1628!important}
  body.light-mode #why{background:#FFD600!important}body.light-mode #results{background:#FFCA00!important}
  body.light-mode #clients{background:#FFD600!important}body.light-mode #reasons{background:#FFCA00!important}
  body.light-mode #pricing{background:#FFD600!important}body.light-mode #influencer{background:#FFCA00!important}
  body.light-mode #cta{background:#0A1628!important}
  body.light-mode .section-label{color:#0A1628!important}body.light-mode .section-label::before{background:#0A1628}
  body.light-mode .why-headline{color:#0D1B2A!important}body.light-mode .why-headline em{color:#0A1628}
  body.light-mode #why p{color:rgba(10,22,40,.65)!important}
  body.light-mode .cred-card{background:#0A1628!important}body.light-mode .cred-num{color:#FFD600}body.light-mode .cred-sub{color:rgba(255,255,255,.55)}
  body.light-mode .founder-card{border-color:rgba(0,0,0,.18);background:rgba(0,0,0,.04)!important}
  body.light-mode .founder-name{color:#0A1628}body.light-mode .founder-role{color:rgba(10,22,40,.5)}
  body.light-mode .service-tile{border-color:rgba(0,0,0,.14);background:rgba(0,0,0,.04)!important}
  body.light-mode .service-name{color:#0D1B2A!important}body.light-mode .service-desc{color:rgba(10,22,40,.5)!important}
  body.light-mode .results-tabs{border-color:rgba(0,0,0,.15)}
  body.light-mode .tab-btn{color:rgba(10,22,40,.45)!important}body.light-mode .tab-btn.active{color:#0A1628!important}body.light-mode .tab-btn::after{background:#0A1628}
  body.light-mode .result-card{background:#0A1628!important}body.light-mode .result-views{color:#FFD600}body.light-mode .result-tag{background:#FFD600;color:#0A1628}
  body.light-mode .clients-headline{color:#0D1B2A!important}body.light-mode .clients-grid{background:rgba(0,0,0,.1)!important}
  body.light-mode .client-tile{background:#0A1628!important}body.light-mode .client-tile:hover{background:#112040!important}body.light-mode .client-tile::after{background:#FFD600}
  body.light-mode .client-name{color:#fff}
  body.light-mode .reasons-title{color:#0D1B2A!important}body.light-mode .reasons-title span{color:#0A1628}
  body.light-mode .reason-item{border-color:rgba(0,0,0,.1)}body.light-mode .reason-num{color:rgba(10,22,40,.18)}
  body.light-mode .reason-title-text{color:#0A1628!important}body.light-mode .reason-desc{color:rgba(10,22,40,.6)!important}
  body.light-mode .pricing-headline{color:#0D1B2A!important}body.light-mode .pricing-note{color:rgba(10,22,40,.5)!important}
  body.light-mode .pricing-cards,.pricing-secondary{background:rgba(0,0,0,.1)!important}
  body.light-mode .price-card{background:#0A1628!important}body.light-mode .price-card:not(.featured):hover{background:#112040!important}
  body.light-mode .price-card.featured{background:linear-gradient(135deg,#FFD600 0%,#F0B800 100%)!important}
  body.light-mode .price-badge{background:#FFD600;color:#0A1628}body.light-mode .price-name{color:#FFD600}body.light-mode .price-amount{color:#fff}
  body.light-mode .price-features li{color:rgba(255,255,255,.65)}body.light-mode .price-features li::before{color:#FFD600}
  body.light-mode .price-card.featured .price-name,.price-card.featured .price-amount{color:#0A1628}
  body.light-mode .price-card.featured .price-cta{background:#0A1628;color:#FFD600}
  body.light-mode .influencer-inner{background:#0A1628!important;border-color:rgba(255,214,0,.2)}
  body.light-mode .inf-handle{color:#FFD600}body.light-mode .inf-followers{color:rgba(255,255,255,.4)!important}
  body.light-mode .inf-desc{color:rgba(255,255,255,.55)!important}body.light-mode .aud-label{color:rgba(255,255,255,.45)!important}
  body.light-mode .aud-bar{background:rgba(255,255,255,.1)}body.light-mode .aud-bar-fill{background:#FFD600}body.light-mode .aud-pct{color:#FFD600}
  body.light-mode .cta-title{color:#fff}body.light-mode .cta-title span{color:#FFD600}body.light-mode .cta-eyebrow{color:#FFD600}
  body.light-mode .cta-sub{color:rgba(255,255,255,.5)}body.light-mode #cta .btn-primary{background:#FFD600;color:#0A1628}
  body.light-mode footer{background:#0A1628!important;border-color:rgba(255,214,0,.12)}
  body.light-mode .footer-logo-svg svg .cls-1{fill:#FFD600}body.light-mode .footer-logo-svg{opacity:.7}body.light-mode .footer-copy{color:rgba(255,255,255,.3)}
  @media(max-width:1024px){
    .hero-chrome{width:460px;max-width:42vw;top:18%}
    .hero-stats-right{right:1.5rem;gap:1.2rem}
    .hero-stats-right .stat-num{font-size:clamp(1.4rem,2.2vw,2rem)}
    .hero-content{max-width:400px}
    section{padding:5rem 2.5rem}
    .tab-panel.active{grid-template-columns:repeat(2,1fr)}
    .clients-grid{grid-template-columns:repeat(3,1fr)}
    nav{padding:1.2rem 2.5rem}
  }
  @media(max-width:768px){
    .cursor,.cursor-trail{display:none!important}body{cursor:auto!important}
    nav{padding:1rem 1.5rem!important}.nav-links{display:none!important}.theme-toggle{margin-left:.8rem!important}
    section{padding:4rem 1.5rem!important}
    .hero{display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:flex-start!important;min-height:100svh!important;padding:110px 1.5rem 3rem!important;overflow-x:hidden!important}
    .hero-content{position:relative!important;width:100%!important;max-width:100%!important;text-align:center!important;z-index:3!important;order:1}
    .hero-title{font-size:clamp(2.6rem,11vw,4.5rem)!important}
    .hero-eyebrow{justify-content:center}.hero-desc{text-align:center;margin-left:auto;margin-right:auto}
    .hero-actions{flex-direction:column!important;align-items:center!important;gap:.9rem!important}
    .hero-chrome{position:relative!important;left:auto!important;top:auto!important;transform:none!important;width:260px!important;max-width:70vw!important;margin:1.8rem auto 0!important;z-index:1!important;order:2}
    .hero-stats-right{position:relative!important;right:auto!important;top:auto!important;transform:none!important;display:grid!important;grid-template-columns:1fr 1fr!important;gap:1.2rem 2rem!important;margin-top:2rem!important;width:100%!important;text-align:center!important;z-index:3!important;order:3}
    .hero-stats-right .stat-item{text-align:center!important}.hero-stats-right .stat-num{font-size:2rem!important}
    .scroll-indicator{display:none!important}
    .why-grid{grid-template-columns:1fr!important;gap:2.5rem!important}
    .founder-card{min-width:140px;padding:1rem 1.2rem}
    .credentials-grid{grid-template-columns:repeat(2,1fr)!important}
    .services-row{grid-template-columns:1fr!important;gap:0!important}
    .results-tabs{flex-wrap:wrap}.tab-btn{padding:.75rem 1.2rem;font-size:.78rem}
    .tab-panel.active{grid-template-columns:repeat(2,1fr)!important;gap:1rem!important}
    .clients-grid{grid-template-columns:repeat(2,1fr)!important}
    .reasons-layout{grid-template-columns:1fr!important;gap:2rem!important}
    .reasons-title{position:relative!important;top:auto!important;font-size:clamp(2.5rem,9vw,4rem)}
    .pricing-intro{flex-direction:column!important;align-items:flex-start!important;gap:1rem!important}
    .pricing-cards,.pricing-secondary{grid-template-columns:1fr!important;gap:1px!important}
    .influencer-inner{grid-template-columns:1fr!important;gap:2.5rem!important;padding:2rem 1.5rem!important}
    #cta{padding:5rem 1.5rem!important}.cta-title{font-size:clamp(3rem,10vw,5.5rem)!important}
    .cta-contacts{flex-direction:column!important;align-items:center!important;gap:1.5rem!important}
    footer{flex-direction:column!important;text-align:center!important;gap:1rem!important;padding:2rem 1.5rem!important}
  }
  @media(max-width:480px){
    section{padding:3rem 1.2rem!important}.hero{padding:100px 1.2rem 2.5rem!important}
    .hero-chrome{width:200px!important;max-width:75vw!important}
    .hero-stats-right .stat-num{font-size:1.7rem!important}
    .hero-title{font-size:clamp(2.2rem,10vw,3.5rem)!important}
    .tab-panel.active{grid-template-columns:1fr!important}.founder-card{min-width:100%}
    #cta{padding:4rem 1.2rem!important}
  }
  
