/* ══════════════════════════════════════════════════════════
   يلا بطولة — Design tokens
   Concept: stadium at night — deep turf green, floodlight glow,
   match-ticket signature for plans/pricing.
   ══════════════════════════════════════════════════════════ */

:root{
  /* colors */
  --pitch:    #0B2A1E;   /* base background — deep turf green */
  --pitch-2:  #0F3626;   /* section background, one step up   */
  --pitch-3:  #17462F;   /* card surface                      */
  --pitch-4:  #1E5539;   /* raised surface / hover             */
  --line:     rgba(198,255,61,.14);
  --line-hi:  rgba(198,255,61,.30);

  --lime:     #C6FF3D;   /* primary accent — floodlight/kit    */
  --lime-d:   #96D91C;
  --amber:    #FFB238;   /* secondary accent — ticket stub      */
  --red-card: #FF5D5D;

  --chalk:    #F3F7EC;   /* primary text on dark                */
  --muted:    #93AF9E;   /* secondary text                      */

  --r-sm: 8px; --r-md: 14px; --r-lg: 22px;
  --content-w: 1180px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
[data-icon] svg{width:100%;height:100%;display:block}
[data-icon]{display:inline-flex;align-items:center;justify-content:center}

html,body{
  background:var(--pitch);
  color:var(--chalk);
  direction:rtl;
  min-height:100vh;
  font-family:'IBM Plex Sans Arabic','Segoe UI',sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* subtle turf-stripe texture across the whole page */
body{
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.012) 0 60px, transparent 60px 120px),
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(198,255,61,.10), transparent 65%);
}

h1,h2,h3,.display{
  font-family:'Baloo Bhaijaan 2','IBM Plex Sans Arabic',sans-serif;
  font-weight:700;
  line-height:1.25;
}

.mono{ font-family:'JetBrains Mono', monospace; letter-spacing:.02em; }

a{color:inherit;text-decoration:none}
::selection{background:var(--lime);color:var(--pitch)}

::-webkit-scrollbar{width:8px;height:8px}
::-webkit-scrollbar-track{background:var(--pitch)}
::-webkit-scrollbar-thumb{background:var(--pitch-4);border-radius:4px}

:focus-visible{outline:2.5px solid var(--lime);outline-offset:2px;border-radius:4px}

/* ── layout shells ── */
.wrap{max-width:var(--content-w);margin:0 auto;padding:0 24px}
.wrap-narrow{max-width:560px;margin:0 auto;padding:0 20px}

.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 24px;max-width:var(--content-w);margin:0 auto;
}
.nav .brand{display:flex;align-items:center;gap:10px;font-family:'Baloo Bhaijaan 2';font-size:20px;font-weight:700}
.nav .brand .logo-mark{height:32px;width:auto;display:block}
.nav .links{display:flex;align-items:center;gap:14px}

/* ── buttons ── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 22px;border-radius:var(--r-md);border:none;cursor:pointer;
  font-family:'IBM Plex Sans Arabic';font-weight:700;font-size:15px;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn:active{transform:scale(.97)}
.btn-primary{background:var(--lime);color:var(--pitch);box-shadow:0 8px 22px rgba(198,255,61,.22)}
.btn-primary:hover{background:var(--lime-d)}
.btn-ghost{background:transparent;color:var(--chalk);border:1.5px solid rgba(243,247,236,.22)}
.btn-ghost:hover{border-color:rgba(243,247,236,.45)}
.btn-block{width:100%}
.btn-sm{padding:9px 16px;font-size:13.5px}
.btn:disabled{opacity:.5;cursor:not-allowed}

/* ── forms ── */
.field{margin-bottom:18px;text-align:right}
.field label{display:block;font-size:13.5px;color:var(--muted);margin-bottom:8px;font-weight:600}
.field .optional{color:var(--muted);font-weight:400;font-size:12px}
.field input[type=text],.field input[type=email],.field input[type=password]{
  width:100%;background:var(--pitch-2);border:1.5px solid rgba(243,247,236,.12);
  color:var(--chalk);padding:14px 16px;border-radius:var(--r-md);
  font-family:'IBM Plex Sans Arabic';font-size:15px;outline:none;
  transition:border-color .15s;
}
.field input:focus{border-color:var(--lime)}
.field input::placeholder{color:rgba(147,175,158,.65)}

/* ── card ── */
.card{background:var(--pitch-3);border:1px solid rgba(255,255,255,.06);border-radius:var(--r-lg);padding:22px}

/* ── section spacing ── */
.section{padding:64px 0}
.eyebrow{font-family:'JetBrains Mono';font-size:12px;letter-spacing:.14em;color:var(--lime);
  text-transform:uppercase;margin-bottom:12px;display:flex;align-items:center;gap:10px}
.hero-grid .eyebrow{justify-content:center}
.eyebrow::before{content:'';width:22px;height:2px;background:var(--lime)}

/* ══════════════════════ HERO ══════════════════════ */
.hero{position:relative;padding:56px 0 40px;overflow:hidden}
.hero-grid{display:block;position:relative;z-index:2;max-width:640px;margin:0 auto;text-align:center}
.hero h1{font-size:44px;margin-bottom:18px}
.hero h1 .accent{color:var(--lime)}
.hero p.lead{color:var(--muted);font-size:16.5px;line-height:1.85;max-width:480px;margin:0 auto 30px}
.hero .cta-row{display:flex;gap:14px;flex-wrap:wrap;justify-content:center}

/* floodlight glow beams behind hero copy */
.floodlight{position:absolute;top:-140px;right:-100px;width:640px;height:640px;
  background:radial-gradient(circle, rgba(198,255,61,.20) 0%, transparent 62%);
  filter:blur(4px);pointer-events:none;z-index:1}

/* scoreboard signature widget */
.scoreboard{background:var(--pitch-2);border:1px solid rgba(255,255,255,.08);border-radius:var(--r-lg);
  padding:22px;position:relative;box-shadow:0 30px 60px -20px rgba(0,0,0,.5)}
.scoreboard .sb-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}
.scoreboard .sb-live{display:flex;align-items:center;gap:7px;font-size:11.5px;color:var(--red-card);font-weight:700;font-family:'JetBrains Mono'}
.scoreboard .sb-live .pulse{width:7px;height:7px;border-radius:50%;background:var(--red-card);animation:pulse 1.4s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.25}}
.scoreboard .sb-row{display:flex;align-items:center;justify-content:space-between;padding:10px 0}
.scoreboard .sb-row+.sb-row{border-top:1px dashed rgba(255,255,255,.1)}
.scoreboard .team{display:flex;align-items:center;gap:10px;font-weight:700;font-size:14.5px}
.scoreboard .team .badge{width:28px;height:28px;border-radius:8px;background:var(--pitch-4);display:flex;align-items:center;justify-content:center;font-size:13px}
.team-dot{width:9px;height:9px;border-radius:50%;display:inline-block;flex-shrink:0}
.scoreboard .score{font-family:'JetBrains Mono';font-size:22px;font-weight:700;color:var(--lime)}
.scoreboard .sb-foot{margin-top:14px;padding-top:14px;border-top:1px solid rgba(255,255,255,.08);
  display:flex;justify-content:space-between;font-size:12px;color:var(--muted)}

/* ══════════════════════ FEATURES ══════════════════════ */
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:36px}
.feat-card{background:var(--pitch-3);border:1px solid rgba(255,255,255,.06);border-radius:var(--r-lg);padding:24px;position:relative}
.feat-card .ic{width:42px;height:42px;border-radius:12px;background:var(--pitch-4);display:flex;align-items:center;justify-content:center;color:var(--lime);margin-bottom:16px}
.feat-card .ic svg{width:21px;height:21px}
.feat-card h3{font-size:16.5px;margin-bottom:8px;display:flex;align-items:center;gap:8px}
.feat-card p{font-size:13.5px;color:var(--muted);line-height:1.75}
.pro-flag{font-family:'JetBrains Mono';font-size:10px;font-weight:700;background:var(--lime);color:var(--pitch);
  padding:2px 8px;border-radius:20px;letter-spacing:.03em}

/* ══════════════════════ PRICING — match ticket signature ══════════════════════ */
.pricing-grid{display:grid;grid-template-columns:1fr 1fr;gap:26px;margin-top:36px}
.ticket{
  position:relative;background:var(--pitch-3);border-radius:var(--r-lg);
  border:1px solid rgba(255,255,255,.07);overflow:visible;display:flex;flex-direction:column;
}
.ticket.pro{border-color:var(--lime);box-shadow:0 20px 50px -18px rgba(198,255,61,.25)}
.ticket-top{padding:26px 26px 20px}
.ticket-top .plan-name{display:flex;align-items:center;justify-content:space-between;margin-bottom:6px}
.ticket-top h3{font-size:19px}
.ticket-top .tag{font-family:'JetBrains Mono';font-size:10.5px;background:var(--lime);color:var(--pitch);
  padding:3px 9px;border-radius:20px;font-weight:700;letter-spacing:.04em}
.ticket-top .price{font-family:'JetBrains Mono';font-size:30px;font-weight:700;color:var(--lime);margin:10px 0 4px}
.ticket-top .price span{font-size:12.5px;color:var(--muted);font-family:'IBM Plex Sans Arabic'}

/* perforation divider with cutout notches */
.perf{position:relative;height:0;border-top:2px dashed rgba(255,255,255,.16);margin:0 0}
.perf::before,.perf::after{
  content:'';position:absolute;top:50%;transform:translateY(-50%);
  width:22px;height:22px;border-radius:50%;background:var(--pitch);
}
.perf::before{right:-11px}
.perf::after{left:-11px}

.ticket-bottom{padding:20px 26px 26px;flex:1;display:flex;flex-direction:column}
.ticket-bottom ul{list-style:none;display:flex;flex-direction:column;gap:11px;margin-bottom:20px;flex:1}
.ticket-bottom li{display:flex;align-items:flex-start;gap:9px;font-size:13.5px;color:var(--chalk)}
.ticket-bottom li.no{color:var(--muted)}
.ticket-bottom li .ic{flex-shrink:0;width:16px;height:16px;margin-top:1px;color:var(--lime)}
.ticket-bottom li.no .ic{color:var(--muted)}

/* ══════════════════════ RESPONSIVE ══════════════════════ */
@media (max-width:1000px) and (min-width:861px){
  .feat-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:860px){
  .hero-grid{grid-template-columns:1fr}
  .hero h1{font-size:32px}
  .hero p.lead{max-width:100%}
  .feat-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-grid{grid-template-columns:1fr}
  .floodlight{width:420px;height:420px;top:-100px;right:-140px}
  .section{padding:44px 0}
}
@media (max-width:480px){
  .nav{padding:16px 18px}
  .wrap{padding:0 18px}
  .hero{padding:36px 0 24px}
  .hero h1{font-size:27px}
  .nav .links .btn-ghost{display:none}
  .feat-grid{grid-template-columns:1fr}
}
