:root {
  --green: #4CAF50;
  --green-light: #6bc86e;
  --bg-dark: #090c0a;
  --bg-card: #0d161a;
  --text-gray: #9aa39a;
  --border-green: rgba(76, 175, 80, 0.4);
  --radius-lg: 22px;
  --radius-md: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

html, body {
  background: var(--bg-dark);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

a, button {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-dark);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 20px rgba(0,0,0,0.35);
}

.logo {
  height: 38px;
  width: auto;
  display: block;
}

/* Hero */
.hero {
  position: relative;
  height: 540px;
  overflow: visible;
  display: flex;
  justify-content: center;
}

.hero-field {
  position: absolute;
  inset: 0;
  background: url('2.jpg') center 30%/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 50% 42%, rgba(4,10,7,0.55) 0%, rgba(4,10,7,0.15) 60%, rgba(4,10,7,0) 100%),
    linear-gradient(180deg, rgba(4,8,6,0.78) 0%, rgba(5,15,10,0.42) 26%, rgba(5,15,10,0.28) 55%, rgba(5,10,8,0.6) 85%, rgba(5,10,8,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 52px 28px 0;
  max-width: 360px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fade-up 0.7s var(--ease) both;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border-green);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--green-light);
  margin-bottom: 20px;
}

.kicker .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-light);
}

.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin-top: 6px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.divider {
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: var(--green);
  margin: 22px auto;
}

.welcome {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.club-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--green-light);
  margin-top: 4px;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

/* Info card */
.info-card {
  position: relative;
  z-index: 2;
  margin: -190px 16px 40px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 26px 32px;
  text-align: center;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.6);
  animation: fade-up 0.7s 0.1s var(--ease) both;
}

.icon-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.14);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-badge svg {
  width: 28px;
  height: 28px;
}

.info-card h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.info-text {
  color: var(--text-gray);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 28px;
  padding: 0 4px;
}

.phone-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1.5px solid var(--border-green);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 20px;
  text-decoration: none;
  color: #fff;
  transition: border-color 0.2s var(--ease);
}

.phone-box:hover {
  border-color: rgba(76, 175, 80, 0.7);
}

.phone-box:active {
  opacity: 0.85;
}

.phone-box svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex-shrink: 0;
}

.phone-box span {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-solid {
  background: var(--green);
  color: #0a0e0b;
}

.btn-solid:hover {
  background: #58b25c;
}

.btn-solid:active {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-green);
  color: var(--green);
}

.btn-outline:hover {
  background: rgba(76, 175, 80, 0.08);
  border-color: rgba(76, 175, 80, 0.65);
}

.btn-outline:active {
  opacity: 0.85;
}

.redirect-note {
  color: var(--text-gray);
  font-size: 13px;
  margin-bottom: 26px;
}

.stats-divider {
  height: 1px;
  background: rgba(76,175,80,0.35);
  margin-bottom: 26px;
}

.stats-row {
  display: flex;
  justify-content: space-between;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 0 4px;
}

.stat:last-child {
  border-right: none;
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-label {
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.92);
}

main {
  padding-bottom: env(safe-area-inset-bottom);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content, .info-card {
    animation: none;
  }
}

@media (min-width: 600px) {
  .info-card {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
