/* ============================================================
   GetSplays Business — Global Stylesheet
   Color: Red (#E31837) + Black (#0D0D0D) + White
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #E31837;
  --red-dark:  #B8142D;
  --red-glow:  rgba(227, 24, 55, 0.18);
  --black:     #0D0D0D;
  --dark:      #141414;
  --card:      #1B1B1B;
  --border:    #2A2A2A;
  --white:     #FFFFFF;
  --muted:     #888888;
  --light:     #CCCCCC;
  --font:      'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius:    12px;
  --radius-sm: 6px;
  --transition: 0.25s ease;
  --max-width: 1200px;
  --section-pad: 100px 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  margin-top: 14px;
  max-width: 560px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--white);
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.logo span { color: var(--red); }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--light);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 22px; font-size: 14px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--light);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a:hover { background: var(--card); color: var(--white); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 24px 110px;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(227,24,55,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227,24,55,0.12);
  border: 1px solid rgba(227,24,55,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero-title .accent { color: var(--red); }

.hero-desc {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  padding: 0 40px;
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 36px;
  background: var(--border);
}
.stat-number {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.stat-number span { color: var(--red); }
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* ---------- Services ---------- */
.services {
  padding: var(--section-pad);
  background: var(--dark);
}
.services-header { margin-bottom: 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--red);
  border-radius: 0 0 3px 0;
  transition: height 0.4s ease;
}
.service-card:hover {
  border-color: rgba(227,24,55,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 52px; height: 52px;
  background: var(--red-glow);
  border: 1px solid rgba(227,24,55,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(227,24,55,0.25); }

.service-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- How It Works ---------- */
.how-it-works {
  padding: var(--section-pad);
}
.hiw-header { margin-bottom: 60px; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.step {
  text-align: center;
  padding: 0 16px;
}
.step-number {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Why Choose ---------- */
.why {
  padding: var(--section-pad);
  background: var(--dark);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.why-visual::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(227,24,55,0.12), transparent 70%);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-check {
  width: 22px; height: 22px;
  background: rgba(227,24,55,0.15);
  border: 1px solid rgba(227,24,55,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-text strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.feature-text span { font-size: 13px; color: var(--muted); }

.metric-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.metric {
  flex: 1;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}
.metric-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
}
.metric-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.progress-block { }
.progress-label { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
.progress-label span:last-child { color: var(--red); font-weight: 600; }
.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 12px;
}
.progress-fill {
  height: 100%;
  background: var(--red);
  border-radius: 100px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(227,24,55,0.12) 0%, transparent 60%);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.cta-banner p { color: var(--muted); font-size: 17px; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 36px; height: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background var(--transition), border-color var(--transition);
  color: var(--muted);
}
.social-link:hover {
  background: var(--red-glow);
  border-color: rgba(227,24,55,0.4);
  color: var(--red);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--white); }

/* ---------- Inner Pages (Privacy / Terms) ---------- */
.page-hero {
  padding: 80px 24px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(227,24,55,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.page-hero p {
  color: var(--muted);
  font-size: 16px;
}

.page-content {
  padding: 72px 24px 100px;
}
.page-content-inner {
  max-width: 820px;
  margin: 0 auto;
}

.page-toc {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin-bottom: 48px;
}
.page-toc h3 { font-size: 14px; font-weight: 700; margin-bottom: 12px; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; }
.page-toc ol { padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.page-toc ol a { font-size: 14px; color: var(--muted); transition: color var(--transition); }
.page-toc ol a:hover { color: var(--red); }

.policy-section {
  margin-bottom: 52px;
}
.policy-section:last-child { margin-bottom: 0; }

.policy-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.policy-section h2 .num {
  width: 28px; height: 28px;
  background: var(--red);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.policy-section p {
  font-size: 15px;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 14px;
}
.policy-section p:last-child { margin-bottom: 0; }

.policy-section ul, .policy-section ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.policy-section li { font-size: 15px; color: var(--light); line-height: 1.75; }

.policy-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin: 20px 0 10px;
}

.policy-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 52px 0;
}

.highlight-box {
  background: rgba(227,24,55,0.07);
  border: 1px solid rgba(227,24,55,0.2);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 20px 0;
}
.highlight-box p { color: var(--light); font-size: 14px; margin: 0; }
.highlight-box strong { color: var(--red); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 24px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 80px 24px 72px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 340px; justify-content: center; }

  .hero-stats { gap: 0; flex-direction: column; }
  .stat + .stat::before { display: none; }
  .stat { padding: 16px 40px; border-top: 1px solid var(--border); }
  .stat:first-child { border-top: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .metric-row { flex-direction: column; }

  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .btn { padding: 13px 24px; font-size: 14px; }
  .hero-stats .stat { padding: 14px 24px; }
}
