:root { --green: #073c2a; --green-2: #0a5a3c; --lime: #18b767; --gold: #ffc400; --ink: #10251d; --paper: #f6f7f2; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Geist", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
.announcement { min-height: 36px; padding: 8px 4vw; background: var(--gold); display: flex; align-items: center; justify-content: center; gap: 32px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.announcement a { text-decoration: underline; text-underline-offset: 3px; }
.nav-wrap { height: 82px; padding: 0 4vw; background: #fff; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 20; box-shadow: 0 8px 35px rgba(6,45,31,.08); }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: var(--gold); font: 700 25px "Oswald", sans-serif; border: 3px solid var(--gold); box-shadow: 0 0 0 3px var(--green); }
.brand b { display: block; color: var(--green); font: 700 23px/.9 "Oswald", sans-serif; letter-spacing: .04em; }
.brand small { display: block; margin-top: 5px; font-size: 9px; font-weight: 900; letter-spacing: .18em; }
nav { display: flex; gap: 34px; font-size: 13px; font-weight: 750; }
nav a:hover { color: var(--green-2); }
.button { min-height: 48px; padding: 0 22px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-wa { background: #1fc867; color: #062d1d; box-shadow: 0 10px 24px rgba(31,200,103,.24); }
.button-wa:hover { background: #2bd875; box-shadow: 0 13px 28px rgba(31,200,103,.34); }
.wa-icon { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #16a958; font-size: 13px; transform: rotate(-18deg); }
.hero { height: min(680px, calc(100vh - 118px)); min-height: 560px; position: relative; overflow: hidden; background: var(--green); }
.poster { position: absolute; inset: 0; background-position: center; background-size: cover; opacity: 0; animation: posterFade 12s infinite; }
.poster-one { background-image: url('assets/poster-cricket.png'); }
.poster-two { background-image: url('assets/poster-badminton.png'); animation-delay: 6s; }
.poster-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(1,26,18,.95) 0%, rgba(1,35,23,.76) 38%, rgba(1,33,22,.12) 66%); }
.poster-two .poster-shade { background: linear-gradient(90deg, rgba(1,28,19,.1) 25%, rgba(1,35,23,.76) 62%, rgba(1,25,17,.96) 100%); }
.poster-copy { position: absolute; z-index: 2; left: 6vw; top: 50%; width: min(590px, 48vw); transform: translateY(-50%); color: #fff; }
.poster-copy.align-right { left: auto; right: 6vw; text-align: right; display: flex; flex-direction: column; align-items: flex-end; }
.eyebrow { display: inline-block; color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ''; display: inline-block; width: 32px; height: 3px; margin: 0 10px 3px 0; background: currentColor; }
.poster h1, .poster h2, .section-heading h2, .why h2, .cta h2 { margin: 18px 0; font-family: "Oswald", sans-serif; font-weight: 700; line-height: .95; letter-spacing: -.025em; text-transform: uppercase; }
.poster h1, .poster h2 { font-size: clamp(52px, 6vw, 94px); }
em { color: var(--gold); font-style: normal; }
.poster-copy p { max-width: 540px; margin: 0 0 30px; color: rgba(255,255,255,.82); font-size: clamp(15px, 1.4vw, 19px); line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button-ghost { color: #fff; border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.08); backdrop-filter: blur(7px); }
.poster-dots { position: absolute; z-index: 8; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.poster-dots span { width: 32px; height: 4px; background: rgba(255,255,255,.35); border-radius: 4px; overflow: hidden; }
.poster-dots span::after { content: ''; display: block; height: 100%; background: var(--gold); animation: dotFill 12s infinite; }
.poster-dots span:nth-child(2)::after { animation-delay: 6s; }
@keyframes posterFade { 0%, 45% { opacity: 1; } 50%, 95% { opacity: 0; } 100% { opacity: 1; } }
@keyframes dotFill { 0% { width: 0; } 45% { width: 100%; } 50%, 100% { width: 0; } }
.trust-strip { max-width: 1180px; margin: -2px auto 0; padding: 25px 3vw; background: #fff; display: grid; grid-template-columns: repeat(4, 1fr); box-shadow: 0 18px 50px rgba(5,50,34,.09); position: relative; z-index: 10; }
.trust-strip > div { display: flex; align-items: center; justify-content: center; gap: 13px; border-right: 1px solid #e3e8e3; }
.trust-strip > div:last-child { border: 0; }
.trust-strip b { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: #e8f7ee; }
.trust-strip strong, .trust-strip small { display: block; }
.trust-strip strong { font-size: 13px; text-transform: uppercase; }
.trust-strip small { margin-top: 3px; color: #768079; font-size: 11px; }
.section { padding: 110px 5vw; }
.section-heading { max-width: 700px; margin: 0 auto 50px; text-align: center; }
.eyebrow.dark { color: var(--green-2); }
.section-heading h2, .why h2, .cta h2 { font-size: clamp(43px, 5vw, 72px); }
.section-heading h2 em, .why h2 em { color: var(--green-2); }
.section-heading p { color: #66736b; line-height: 1.7; }
.product-grid { max-width: 1180px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { padding: 30px; background: #fff; border: 1px solid #e6e9e4; border-radius: 16px; transition: transform .25s, box-shadow .25s, border .25s; }
.product-card:hover { transform: translateY(-5px); border-color: #badac8; box-shadow: 0 20px 40px rgba(6,62,41,.09); }
.product-icon { width: 62px; height: 62px; display: grid; place-items: center; background: #eff8f2; border-radius: 14px; font-size: 31px; }
.product-card h3 { margin: 20px 0 8px; font: 700 25px "Oswald", sans-serif; text-transform: uppercase; }
.product-card p { min-height: 48px; margin: 0 0 20px; color: #6b756e; font-size: 13px; line-height: 1.65; }
.product-card a { color: var(--green-2); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.product-card a span { color: var(--gold); font-size: 18px; }
.why { padding: 100px max(5vw, calc((100vw - 1180px)/2)); display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: center; background: var(--green); color: #fff; }
.why-copy > p { max-width: 620px; color: rgba(255,255,255,.68); line-height: 1.7; }
.why-copy ul { list-style: none; padding: 0; margin: 35px 0 0; }
.why-copy li { display: flex; gap: 18px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.14); }
.why-copy li b { color: var(--gold); font: 700 23px "Oswald", sans-serif; }
.why-copy li strong, .why-copy li small { display: block; }
.why-copy li small { color: rgba(255,255,255,.58); margin-top: 5px; }
.quote-card { padding: 52px 42px; background: var(--gold); color: var(--ink); border-radius: 24px; box-shadow: 20px 20px 0 #052d20; }
.quote-ball { width: 76px; height: 76px; display: grid; place-items: center; background: var(--green); color: #fff; border: 5px solid #fff; border-radius: 50%; font: 700 19px "Oswald", sans-serif; box-shadow: 0 0 0 2px var(--green); }
.quote-card h3 { font: 700 38px/1.05 "Oswald", sans-serif; text-transform: uppercase; }
.quote-card p { line-height: 1.65; }
.quote-card .button-wa { margin-top: 16px; background: var(--green); color: #fff; box-shadow: none; }
.cta { padding: 120px 5vw; text-align: center; background: #eef1eb; position: relative; overflow: hidden; }
.cta::before, .cta::after { content: ''; position: absolute; width: 330px; height: 330px; border-radius: 50%; border: 60px solid rgba(255,196,0,.16); }
.cta::before { left: -190px; top: -150px; } .cta::after { right: -190px; bottom: -170px; }
.cta p { max-width: 650px; margin: 0 auto 30px; color: #657068; line-height: 1.7; }
.button-large { min-height: 58px; padding: 0 30px; font-size: 14px; }
footer { padding: 42px 5vw; background: #031f16; color: rgba(255,255,255,.65); display: flex; justify-content: space-between; align-items: center; gap: 25px; font-size: 12px; }
.footer-brand b { color: #fff; } .footer-brand small { color: rgba(255,255,255,.65); }
.floating-wa { position: fixed; z-index: 50; right: 22px; bottom: 22px; min-height: 54px; padding: 0 18px 0 13px; display: flex; align-items: center; gap: 9px; border-radius: 999px; background: #1fc867; color: #06331f; font-size: 13px; font-weight: 900; box-shadow: 0 12px 34px rgba(0,0,0,.25); }
.floating-wa .wa-icon { width: 32px; height: 32px; }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; } }
@media (max-width: 850px) {
  nav { display: none; } .nav-cta { display: none; } .nav-wrap { height: 72px; }
  .hero { height: 690px; min-height: 0; }
  .poster { background-position: 64% center; }
  .poster-two { background-position: 35% center; }
  .poster-shade, .poster-two .poster-shade { background: linear-gradient(0deg, rgba(1,25,17,.98) 0%, rgba(1,28,19,.84) 47%, rgba(1,28,19,.08) 78%); }
  .poster-copy, .poster-copy.align-right { left: 6vw; right: 6vw; top: auto; bottom: 55px; width: auto; transform: none; text-align: left; align-items: flex-start; }
  .poster h1, .poster h2 { font-size: clamp(43px, 12vw, 68px); }
  .poster-copy p { font-size: 14px; line-height: 1.55; margin-bottom: 22px; }
  .trust-strip { grid-template-columns: 1fr 1fr; gap: 22px 0; margin: 0; }
  .trust-strip > div:nth-child(2) { border: 0; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .why { grid-template-columns: 1fr; gap: 50px; padding: 80px 6vw; }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
  .announcement { justify-content: center; text-align: center; font-size: 9px; } .announcement a { display: none; }
  .hero { height: 650px; } .poster { background-position: 70% center; }
  .poster-two { background-position: 30% center; }
  .hero-actions { flex-direction: column; align-items: stretch; } .button { width: 100%; }
  .trust-strip { grid-template-columns: 1fr; padding: 24px 8vw; }
  .trust-strip > div { justify-content: flex-start; border-right: 0; border-bottom: 1px solid #e3e8e3; padding-bottom: 16px; }
  .trust-strip > div:last-child { border-bottom: 0; padding-bottom: 0; }
  .section { padding: 80px 5vw; } .product-grid { grid-template-columns: 1fr; }
  .quote-card { padding: 38px 25px; box-shadow: 10px 10px 0 #052d20; }
  .floating-wa span:last-child { display: none; } .floating-wa { width: 56px; padding: 0; justify-content: center; }
}
