/*

Theme Name: beardman

Theme URI: https://wordpress.org/themes/beardman/

Author: Arvind

Author URI: mailto:arvindgh91@gmail.com
Text Domain: twentysixteen

*/
:root{
    --lime:#d4fe03;
    --lime-dim:rgba(212,254,3,0.1);
    --lime-dim-2:rgba(212,254,3,0.22);
    --black:#0d0f10;
    --black-2:#151719;
    --black-3:#1c1f21;
    --line:#2a2d2f;
    --ink:#f2f3ee;
    --muted:#9a9f9a;
    --display: 'Bricolage Grotesque', system-ui, sans-serif;
    --body: 'Inter', system-ui, sans-serif;
    --mono: 'IBM Plex Mono', monospace;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--black);
    color:var(--ink);
    font-family:var(--body);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  a{color:inherit; text-decoration:none;}
  img,svg{display:block; max-width:100%;}
  .wrap{max-width:1200px; margin:0 auto; padding:0 32px;}
  @media (max-width:640px){ .wrap{padding:0 20px;} }

  ::selection{background:var(--lime); color:var(--black);}
  :focus-visible{outline:2px solid var(--lime); outline-offset:3px;}

  h1,h2,h3,h4{font-family:var(--display); font-weight:700; letter-spacing:-0.02em; line-height:1.05;}
  .eyebrow{
    font-family:var(--mono); font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
    color:var(--lime); display:flex; align-items:center; gap:10px; margin-bottom:18px;
  }
  .eyebrow::before{content:''; width:7px; height:7px; background:var(--lime); border-radius:50%; box-shadow:0 0 10px var(--lime);}

  /* ---------- NAV ---------- */
  header{
    position:fixed; top:0; left:0; right:0; z-index:100;
    background:rgba(13,15,16,0.78); backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line);
  }
  nav{display:flex; align-items:center; justify-content:space-between; height:76px;}
  .logo{font-family:var(--display); font-weight:800; font-size:20px; letter-spacing:-0.02em; display:flex; align-items:center; gap:8px;}
  .logo .dot{width:8px; height:8px; background:var(--lime); border-radius:2px; display:inline-block;}
  .nav-links{display:flex; gap:36px; font-size:14.5px; font-weight:500;}
  .nav-links a{color:var(--muted); transition:color .2s;}
  .nav-links a:hover{color:var(--ink);}
  .btn{
    font-family:var(--body); font-weight:600; font-size:14.5px; padding:12px 22px;
    border-radius:100px; display:inline-flex; align-items:center; gap:8px; cursor:pointer;
    transition:transform .2s ease, box-shadow .2s ease;
    white-space:nowrap;
  }
  .btn-primary{background:var(--lime); color:var(--black);}
  .btn-primary:hover{transform:translateY(-2px); box-shadow:0 8px 24px -6px var(--lime-dim-2);}
  .btn-ghost{border:1px solid var(--line); color:var(--ink);}
  .btn-ghost:hover{border-color:var(--lime); color:var(--lime);}
  .menu-toggle{display:none; background:none; border:none; color:var(--ink); font-size:26px; cursor:pointer;}

  @media (max-width:860px){
    .nav-links{display:none;}
    nav .btn-ghost{display:none;}
  }

  /* ---------- HERO ---------- */
  .hero{padding:168px 0 0; position:relative;}
  .hero-grid{display:grid; grid-template-columns:1.15fr .85fr; gap:60px; align-items:end; padding-bottom:64px; border-bottom:1px solid var(--line);}
  .hero h1{font-size:clamp(40px,6vw,78px); max-width:820px;}
  .hero h1 em{font-style:normal; color:var(--lime);}
  .hero-sub{color:var(--muted); font-size:17px; max-width:420px; padding-bottom:6px;}
  .hero-cta{display:flex; gap:14px; margin-top:36px; flex-wrap:wrap;}
  @media (max-width:860px){
    .hero{padding-top:130px;}
    .hero-grid{grid-template-columns:1fr; gap:24px;}
  }

  /* marquee */
  .marquee{
    border-bottom:1px solid var(--line); overflow:hidden; white-space:nowrap;
    background:var(--black-2);
  }
  .marquee-track{display:inline-flex; animation:scroll 32s linear infinite;}
  .marquee-track span{
    font-family:var(--mono); font-size:14px; letter-spacing:.08em; text-transform:uppercase;
    color:var(--muted); padding:18px 36px; display:inline-flex; align-items:center; gap:36px;
  }
  .marquee-track span::after{content:'/'; color:var(--lime); font-size:14px;}
  @keyframes scroll{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

  /* ---------- STATS ---------- */
  .stats{padding:56px 0; border-bottom:1px solid var(--line);}
  .stats-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line);}
  .stat{background:var(--black); padding:28px 8px; text-align:left;}
  .stat b{display:block; font-family:var(--display); font-size:clamp(28px,3.4vw,42px); color:var(--lime);}
  .stat span{font-family:var(--mono); font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.08em;}
  @media (max-width:700px){ .stats-grid{grid-template-columns:repeat(2,1fr);} }

  /* ---------- SECTION HEADS ---------- */
  section{padding:110px 0;}
  .sec-head{display:flex; justify-content:space-between; align-items:flex-end; gap:40px; margin-bottom:56px;}
  .sec-head h2{font-size:clamp(30px,4vw,46px); max-width:600px;}
  .sec-head p{color:var(--muted); max-width:320px; font-size:15px; padding-bottom:4px;}
  @media (max-width:760px){ .sec-head{flex-direction:column; align-items:flex-start; gap:16px;} }

  /* ---------- SERVICES ---------- */
  .services-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line);}
  .service{background:var(--black); padding:38px 32px; transition:background .25s ease;}
  .service:hover{background:var(--black-2);}
  .service .num{font-family:var(--mono); font-size:13px; color:var(--muted);}
  .service h3{font-size:21px; margin:22px 0 12px;}
  .service p{color:var(--muted); font-size:14.5px; line-height:1.6;}
  @media (max-width:900px){ .services-grid{grid-template-columns:repeat(2,1fr);} }
  @media (max-width:620px){ .services-grid{grid-template-columns:1fr;} }

  /* ---------- PROCESS ---------- */
  .process{background:var(--black-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
  .process-list{display:flex; flex-direction:column;}
  .process-item{
    display:grid; grid-template-columns:90px 1fr 1fr; gap:24px; padding:34px 0;
    border-top:1px solid var(--line); align-items:center;
  }
  .process-item:first-child{border-top:none;}
  .process-item .idx{font-family:var(--mono); color:var(--lime); font-size:14px;}
  .process-item h4{font-size:22px;}
  .process-item p{color:var(--muted); font-size:14.5px; max-width:420px;}
  @media (max-width:760px){
    .process-item{grid-template-columns:1fr; gap:8px; padding:24px 0;}
  }

  /* ---------- PROOF / CHART (signature) ---------- */
  .proof{position:relative;}
  .proof-grid{display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; align-items:center;}
  .proof-copy h2{font-size:clamp(28px,3.6vw,40px); margin-bottom:18px;}
  .proof-copy p{color:var(--muted); font-size:15.5px; max-width:420px; margin-bottom:28px;}
  .proof-tags{display:flex; flex-wrap:wrap; gap:10px;}
  .proof-tags span{
    font-family:var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:.06em;
    border:1px solid var(--line); padding:7px 12px; border-radius:100px; color:var(--muted);
  }
  .chart-card{
    background:var(--black-2); border:1px solid var(--line); border-radius:18px; padding:32px;
  }
  .chart-card-top{display:flex; justify-content:space-between; align-items:baseline; margin-bottom:22px;}
  .chart-card-top .yr{font-family:var(--mono); font-size:12px; color:var(--muted);}
  .chart-card-top .now{font-family:var(--display); font-size:15px; color:var(--lime);}
  #growthPath{stroke-dasharray:1000; stroke-dashoffset:1000; transition:stroke-dashoffset 1.8s cubic-bezier(.16,.8,.3,1);}
  .proof.in-view #growthPath{stroke-dashoffset:0;}
  @media (max-width:860px){ .proof-grid{grid-template-columns:1fr;} }

  /* ---------- CROSS-BRAND ---------- */
  .cross{background:var(--black-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
  .cross-card{
    display:grid; grid-template-columns:1fr auto; align-items:center; gap:24px;
    border:1px solid var(--line); border-radius:18px; padding:38px 40px; background:var(--black);
  }
  .cross-card h3{font-size:24px; margin-bottom:8px;}
  .cross-card p{color:var(--muted); font-size:14.5px; max-width:480px;}
  .cross-card .btn-ghost{border-color:var(--lime); color:var(--lime);}
  @media (max-width:640px){ .cross-card{grid-template-columns:1fr;} }

  /* ---------- CTA ---------- */
  .cta{text-align:center;}
  .cta h2{font-size:clamp(32px,5vw,56px); max-width:760px; margin:0 auto 22px;}
  .cta p{color:var(--muted); font-size:16px; max-width:460px; margin:0 auto 34px;}
  .cta-actions{display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}

  /* ---------- FOOTER ---------- */
  footer{border-top:1px solid var(--line); padding:56px 0 36px;}
  .foot-top{display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; padding-bottom:40px; border-bottom:1px solid var(--line); margin-bottom:28px;}
  .foot-col h5{font-family:var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); margin-bottom:14px;}
  .foot-col a{display:block; color:var(--ink); font-size:14.5px; margin-bottom:10px; opacity:.85;}
  .foot-col a:hover{color:var(--lime); opacity:1;}
  .foot-bottom{display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:13px; color:var(--muted);}

  .reveal{opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease;}
  .reveal.in-view{opacity:1; transform:none;}

  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    .marquee-track{animation:none;}
    .reveal{opacity:1; transform:none; transition:none;}
    #growthPath{transition:none; stroke-dashoffset:0;}
  }