/* Right Now Sports — static stylesheet (matches the React version) */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;600;700&family=Sora:wght@400;600;700&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --brand-base: #0a0a0b;
  --brand-soft: #121316;
  --brand-orange: #f97316;
  --brand-text: #fafafa;
  --brand-text-soft: #f0f0f0;
  --brand-border: #636363;
  --brand-purple: rgb(139 92 246);
  --footer-muted: #787878;
  --max-width: 1224px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Montserrat", -apple-system, Roboto, Helvetica, sans-serif;
  background-color: var(--brand-base);
  color: var(--brand-text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; width: 100%;
  border-bottom: 1px solid rgba(99, 99, 99, 0.3);
  background-color: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(8px);
}
.header-inner {
  width: 100%; max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; gap: 32px; padding: 24px;
}
.header-logo { flex: 1; }
.logo-img { height: 32.15px; width: 149.923px; }
.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 16px; font-weight: 700; line-height: 120%; color: var(--brand-text); transition: color 0.2s ease; }
.nav-link:hover { color: var(--brand-orange); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.btn-outline {
  border-radius: 9999px; border: 1px solid var(--brand-orange); background-color: var(--brand-base);
  padding: 12px 16px; font-size: 16px; font-weight: 700; line-height: 24px; color: var(--brand-orange);
  /* transition: background-color 0.2s ease; */
}
.btn-outline:hover { background-color: rgba(249, 115, 22, 0.1); }
.hamburger {
  display: none; height: 40px; width: 40px; align-items: center; justify-content: center;
  border: none; background: transparent; border-radius: 6px; color: var(--brand-text); transition: color 0.2s ease;
}
.hamburger:hover { color: var(--brand-orange); }
.hamburger .icon-close { display: none; }
.hamburger.is-open .icon-menu { display: none; }
.hamburger.is-open .icon-close { display: block; }

/* Mobile menu */
.mobile-menu { display: none; border-top: 1px solid rgba(99, 99, 99, 0.3); background-color: var(--brand-base); }
.mobile-menu.is-open { display: block; }
.mobile-nav {
  width: 100%; max-width: var(--max-width); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 24px; padding: 32px 24px;
}
.nav-link-mobile { font-size: 18px; font-weight: 700; line-height: 120%; color: var(--brand-text); transition: color 0.2s ease; }
.nav-link-mobile:hover { color: var(--brand-orange); }
.mobile-cta { width: 100%; max-width: 288px; }

/* Store buttons */
.btn-store {
  display: flex; height: 48px; align-items: center; gap: 8px; border-radius: 9999px;
  border: 1px solid var(--brand-orange); background-color: var(--brand-base); padding: 0 16px; 
  /* transition: background-color 0.2s ease; */
}
.btn-store:hover { background-color: rgba(249, 115, 22, 0.1); }
.btn-store-text { display: flex; flex-direction: column; align-items: flex-start; }
.btn-store-label { font-size: 10px; font-weight: 400; line-height: 12px; color: var(--brand-orange); }
.btn-store-name { font-size: 16px; font-weight: 700; line-height: 16px; color: var(--brand-orange); }

/* Hero */
.hero { display: flex; width: 100%; justify-content: center; overflow: hidden; background-color: var(--brand-soft); }
.hero-inner { width: 100%; max-width: var(--max-width); display: flex; flex-wrap: wrap; align-items: center; gap: 21px; padding: 57px 24px; }
.hero-copy { display: flex; min-width: 280px; flex: 1 1 499px; flex-direction: column; gap: 32px; }
.hero-text { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.hero-title { font-size: 32px; font-weight: 700; line-height: 120%; color: var(--brand-text); }
.hero-desc, .body-text { font-size: 16px; font-weight: 400; line-height: 180%; color: var(--brand-text); }
.store-row { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-start; }
.hero-img { height: auto; width: 100%; max-width: 600px; flex: 1 1 400px; border-radius: 16px; aspect-ratio: 600 / 421; object-fit: cover; }

/* Value section */
.value-section { display: flex; width: 100%; flex-direction: column; align-items: center; gap: 16px; background-color: var(--brand-base); padding: 52px 24px; }
.section-heading { width: 100%; max-width: var(--max-width); font-size: 32px; font-weight: 700; line-height: 120%; color: var(--brand-text); }
.value-grid { display: flex; width: 100%; max-width: var(--max-width); flex-wrap: wrap; align-items: stretch; gap: 24px; }
.value-card { display: flex; flex: 1 1 280px; flex-direction: column; gap: 16px; border-radius: 8px; background-color: var(--brand-base); padding: 32px; }
.card-head { display: flex; align-items: center; gap: 8px; }
.icon-badge { display: flex; height: 40px; width: 40px; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 9999px; background-color: var(--brand-orange); }
.card-title { font-size: 18px; font-weight: 700; line-height: 24px; color: var(--brand-text); }
.card-text { font-size: 16px; font-weight: 400; line-height: 180%; color: var(--brand-text); }

/* Audience */
.audience-section { display: flex; width: 100%; flex-direction: column; gap: 48px; background-color: var(--brand-soft); padding: 52px 0; }
.audience-row-wrap { display: flex; justify-content: center; padding: 0 24px; }
.audience-row { width: 100%; max-width: 1232px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px; }
.audience-img { height: auto; width: 100%; max-width: 496px; flex: 1 1 400px; border-radius: 16px; aspect-ratio: 1 / 1; object-fit: cover; }
.audience-copy { display: flex; max-width: 496px; flex: 1 1 400px; flex-direction: column; gap: 32px; }
.audience-text { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.audience-title { font-size: 32px; font-weight: 700; line-height: 120%; color: var(--brand-text); }
.font-space-grotesk { font-family: "Space Grotesk", -apple-system, Roboto, Helvetica, sans-serif; }
.tag-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-start; }
.tag { display: flex; border-radius: 8px; background-color: var(--brand-soft); padding: 8px; }
.audience-section .tag { background-color: var(--brand-base); }
.tag span { font-size: 16px; font-weight: 400; line-height: 24px; color: var(--brand-text); }

/* How it works */
.how-section { width: 100%; background-color: var(--brand-base); padding: 80px 0; }
.how-inner { margin: 0 auto; max-width: var(--max-width); padding: 0 24px; }
.how-heading { margin-bottom: 48px; font-size: 32px; font-weight: 700; line-height: 120%; color: var(--brand-text); }
.how-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.step-card { display: flex; flex-direction: column; gap: 12px; border-radius: 8px; background-color: var(--brand-base); padding: 32px; }
.step-head { display: flex; align-items: center; gap: 16px; }
.step-title { font-size: 16px; font-weight: 700; line-height: 24px; color: var(--brand-text); }
.step-text { font-family: "Open Sans", sans-serif; font-size: 16px; font-weight: 400; line-height: 180%; color: var(--brand-text); }

/* Download CTA */
.download-section { width: 100%; overflow: hidden; background-color: var(--brand-soft); }
.download-inner { margin: 0 auto; max-width: var(--max-width); padding: 64px 24px; }
.download-flex { display: flex; flex-direction: column; align-items: center; gap: 48px; }
.download-left { flex-shrink: 0; }
.download-mark { margin-bottom: 24px; position: relative; height: 54px; width: 68px; }
.download-mark .mark-back { position: absolute; bottom: 0; left: 0; }
.download-mark .mark-front { position: absolute; left: 0; top: 0; height: 54px; width: 68px; }
.download-title { margin-bottom: 24px; font-size: 24px; font-weight: 700; line-height: 120%; color: var(--brand-text); }
.download-right { width: 100%; min-width: 0; flex: 1; }
.download-stage { position: relative; height: 320px; width: 100%; }
.download-glow { pointer-events: none; position: absolute; right: 0; top: 0; height: 100%; width: 65%; border-radius: 50%; background-color: rgba(139, 92, 246, 0.3); filter: blur(80px); }
.download-img-wrap { position: absolute; inset: 0; display: flex; align-items: center; justify-content: flex-end; }
.download-img-inner { position: relative; height: 100%; width: 100%; max-width: 580px; }
.download-img-inner img { width: 100%; }

/* Footer */
.site-footer { border-top: 1px solid #2a3140; background-color: var(--brand-base); }
.footer-inner { margin: 0 auto; max-width: var(--max-width); padding: 32px 24px; }
.footer-top { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo-text { font-family: "Sora", sans-serif; line-height: 1; }
.footer-logo-name { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #e9eef5; }
.footer-logo-sub { margin-top: 4px; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand-orange); }
.footer-links { display: flex; align-items: center; gap: 24px; font-size: 14px; color: var(--footer-muted); }
.footer-link { transition: color 0.2s ease; }
.footer-link:hover, .footer-link.active { color: var(--brand-orange); }
.footer-copyright { margin-top: 24px; text-align: center; font-size: 14px; color: var(--footer-muted); }

/* FAQ / shared narrow page */
.page-soft { min-height: 100vh; background-color: var(--brand-soft); color: var(--brand-text); }
.narrow-section { display: flex; align-items: flex-start; justify-content: center; overflow: hidden; background-color: var(--brand-soft); padding: 82px 24px; }
.narrow-inner { display: flex; width: 100%; max-width: 808px; flex-direction: column; align-items: flex-start; gap: 32px; }
.page-title { font-size: 32px; font-weight: 700; line-height: 120%; color: var(--brand-text); }
.faq-list { display: flex; width: 100%; flex-direction: column; align-items: flex-start; gap: 24px; }
.faq-item { display: flex; width: 100%; flex-direction: column; align-items: flex-start; gap: 16px; border-radius: 8px; border: 1px solid var(--brand-border); background-color: var(--brand-base); padding: 16px; }
.faq-question { display: flex; width: 100%; align-items: center; gap: 16px; text-align: left; border: none; background: transparent; color: var(--brand-text); }
.faq-question span { flex: 1; font-size: 16px; font-weight: 700; line-height: 180%; color: var(--brand-text); }
.faq-chevron { height: 24px; width: 24px; flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; white-space: pre-line; font-size: 16px; font-weight: 400; line-height: 180%; color: var(--brand-text); }
.faq-item.is-open .faq-answer { display: block; }

/* Privacy */
.privacy-body { display: flex; width: 100%; flex-direction: column; align-items: flex-start; gap: 24px; }
.privacy-body p {font-size: 16px; font-weight: 400; line-height: 180%; color: var(--brand-text); }

/* Contact */
.page-flex { display: flex; min-height: 100vh; flex-direction: column; background-color: var(--brand-soft); }
.contact-main { display: flex; flex: 1; align-items: flex-start; justify-content: center; background-color: var(--brand-soft); padding: 80px 24px; }
.contact-wrap { width: 100%; max-width: 808px; }
.contact-form { display: flex; flex-direction: column; gap: 32px; }
.contact-head { display: flex; max-width: 496px; flex-direction: column; gap: 16px; }
.contact-fields { display: flex; flex-direction: column; gap: 24px; }
.field-row { display: flex; flex-direction: column; gap: 24px; }
.field { display: flex; min-width: 0; flex: 1; flex-direction: column; }
.field-wrap { display: flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 8px 8px 8px 8px; border-bottom: 1px solid var(--brand-border); background-color: var(--brand-base); overflow: hidden; }
.field-inner { display: flex; min-width: 0; flex: 1; flex-direction: column; }
.field-label { font-size: 12px; font-weight: 400; line-height: 16px; color: var(--brand-text-soft); }
.field-input { font-size: 16px; font-weight: 400; line-height: 32px; color: var(--brand-text); background: transparent; outline: none; border: none; width: 100%; }
.field-input::placeholder { color: var(--brand-text-soft); opacity: 0.5;}
select.field-input { cursor: pointer; appearance: none; }
select.field-input option { background-color: var(--brand-base); color: var(--brand-text); }
.field-chevron { flex-shrink: 0; pointer-events: none; }
.textarea-wrap { display: flex; align-items: flex-start; gap: 8px; overflow: hidden; border-radius: 8px 8px 0 0; border-bottom: 1px solid var(--brand-border); background-color: var(--brand-base); padding: 16px; }
.textarea-input {opacity: 0.5; width: 100%; resize: none; background: transparent; border: none; outline: none; font-family: inherit; font-size: 16px; font-weight: 400; line-height: 32px; color: var(--brand-text-soft); }
.textarea-input::placeholder { color: var(--brand-text-soft); }
.btn-submit { width: 100%; max-width: 288px; border-radius: 9999px; border: 1px solid var(--brand-border); background-color: var(--brand-orange); padding: 16px; font-size: 16px; font-weight: 700; color: var(--brand-text); transition: opacity 0.2s ease; }
.btn-submit:hover { opacity: 0.9; }

/* Responsive */
@media (min-width: 640px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { flex-direction: row; }
  .download-stage { height: 360px; }
  .footer-top { flex-direction: row; }
}
@media (min-width: 1024px) {
  .how-grid { grid-template-columns: repeat(4, 1fr); }
  .how-section { padding: 96px 0; }
  .download-inner { padding: 96px 24px; }
  .download-flex { flex-direction: row; gap: 32px; align-items: center; }
  .download-left { width: 380px; }
  .download-stage { height: 395px; }
}
@media (min-width: 1280px) {
  .download-left { width: 420px; }
}
@media (max-width: 767px) {
  .nav-desktop, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 28px; }
  .hero-text, .audience-text { text-align: center; }
  .store-row, .tag-row { justify-content: center; }
}


/* Input focus effect */

.field-wrap:focus-within,
.textarea-wrap:focus-within {
    border: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    transition: all 0.3s ease;
}

/* Gravity Forms */

.gform_wrapper {
    width: 100%;
}

.gform-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gfield {
    margin: 0 !important;
}

.gfield input,
.gfield select {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fafafa;
    font-size: 16px;
}

.gfield textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fafafa;
    resize: none;
}

.gfield_label {
    font-size: 12px !important;
    color: #f0f0f0;
    margin-bottom: 4px !important;
}

.ginput_container {
    padding: 8px 16px;
    background: #0a0a0b;
    border: 1px solid #636363;
    border-radius: 8px;
}

.ginput_container:focus-within {
    border-color: #fff;
}

.gform_button {
    width: 100%;
    max-width: 288px;
    border-radius: 9999px;
    border: 1px solid #636363;
    background: #f97316;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    cursor: pointer;
}

.success-message{
    margin-bottom:24px;
    padding:16px;
    border-radius:8px;
    background:#0f3d1f;
    border:1px solid #22c55e;
    color:#ffffff;
    font-weight:600;
}