/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #00E676;
  --green-dark: #00C864;
  --black: #0A0A0A;
  --carbon: #141414;
  --surface: #1A1A1A;
  --surface2: #222222;
  --white: #FFFFFF;
  --grey: #6B7280;
  --grey-light: #9CA3AF;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1100px;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }

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

.green { color: var(--green); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
}

.logo-mark.small {
  width: 28px;
  height: 60px;
  font-size: 10px;
  border-radius: 6px;
}

.nav-logo-img {
  height: 36px;
  width: 36px;
  object-fit: contain;
}

.nav-logo-full {
  height: 140px;
  width: auto;
  object-fit: contain;
  max-width: 500px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  max-width: 280px;
  margin-bottom: 12px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-light);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-cta { margin-left: 16px; }

.coming-soon-pill {
  background: rgba(0,230,118,0.12);
  color: var(--green);
  border: 1px solid rgba(0,230,118,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,230,118,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,118,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,230,118,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 80px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero-sub {
  font-size: 18px;
  color: var(--grey-light);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #00ff84;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

.hero-slogan {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--green);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 1px;
}

.scroll-arrow {
  margin-top: 6px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ── PROBLEM STRIP ── */
.problem-strip {
  background: var(--carbon);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}

.problem-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--grey-light);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.problem-text strong { color: var(--white); }

/* ── SECTION SHARED ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label.light { color: rgba(0,230,118,0.7); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 17px;
  color: var(--grey-light);
  max-width: 580px;
  margin-bottom: 48px;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.step {
  background: var(--carbon);
  padding: 36px 28px;
  transition: background 0.2s;
}

.step:hover { background: var(--surface); }

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--green);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.step p {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.65;
}

/* ── TWO SIDES ── */
.two-sides {
  padding: 100px 0;
  background: var(--carbon);
}

.two-sides .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}

.side-card {
  padding: 52px 44px;
  background: var(--surface);
  transition: background 0.2s;
}

.side-card:hover { background: var(--surface2); }

.side-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.side-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.side-card p {
  font-size: 15px;
  color: var(--grey-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.side-card ul {
  list-style: none;
  margin-bottom: 32px;
}

.side-card ul li {
  font-size: 14px;
  color: var(--grey-light);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.side-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 12px;
}

.side-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  transition: opacity 0.2s;
}

.side-link:hover { opacity: 0.7; }

/* ── SPORTS STRIP ── */
.sports-strip {
  padding: 80px 0;
}

.sports-row {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.sport-item {
  flex: 1;
  min-width: 160px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s;
}

.sport-item.active {
  border-color: rgba(0,230,118,0.3);
  background: rgba(0,230,118,0.05);
}

.sport-item.coming { opacity: 0.5; }

.sport-icon { font-size: 32px; margin-bottom: 10px; }

.sport-item span {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}

.sport-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(0,230,118,0.15);
  color: var(--green);
}

.sport-item.coming .sport-badge {
  background: rgba(255,255,255,0.08);
  color: var(--grey);
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 100px 0;
  background: var(--carbon);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 17px;
  color: var(--grey-light);
  margin-bottom: 40px;
}

.app-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 20px;
  border-radius: 10px;
  cursor: not-allowed;
  opacity: 0.7;
}

.badge-sub { font-size: 10px; color: var(--grey-light); }
.badge-store { font-size: 16px; font-weight: 600; }

.cta-small {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 0 !important;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.2);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 18px;
  color: var(--grey-light);
  max-width: 520px;
  line-height: 1.7;
}

/* ── USE CASES ── */
.use-cases {
  padding: 100px 0;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.use-case {
  background: var(--carbon);
  padding: 36px 28px;
  transition: background 0.2s;
}

.use-case:hover { background: var(--surface); }

.use-case-icon { font-size: 28px; margin-bottom: 16px; }

.use-case h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.use-case p {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.65;
}

/* ── PROFILE SECTION ── */
.profile-section {
  padding: 100px 0;
  background: var(--carbon);
}

.profile-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.profile-layout.reversed { direction: rtl; }
.profile-layout.reversed > * { direction: ltr; }

.profile-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.profile-content > p {
  font-size: 16px;
  color: var(--grey-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.profile-fields { display: flex; flex-direction: column; gap: 14px; }

.profile-field {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.field-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.profile-field strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.profile-field span {
  font-size: 13px;
  color: var(--grey-light);
}

/* ── MOCKUP CARD ── */
.profile-mockup {
  display: flex;
  justify-content: center;
}

.mockup-card {
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 500px;
}

.mockup-avatar {
  width: 56px;
  height: 56px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
  border: 2px solid rgba(0,230,118,0.3);
}

.mockup-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.mockup-club-badge {
  width: 48px;
  height: 48px;
  background: var(--surface);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid rgba(255,255,255,0.1);
}

.mockup-verified {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.2);
  padding: 3px 8px;
  border-radius: 4px;
}

.mockup-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.mockup-pos {
  font-size: 13px;
  color: var(--green);
  margin-bottom: 12px;
}

.mockup-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }

.mtag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  color: var(--grey-light);
}

.green-tag {
  background: rgba(0,230,118,0.12);
  color: var(--green);
}

.mockup-detail {
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 12px;
}

.mockup-bio {
  font-size: 12px;
  color: var(--grey-light);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 12px;
  font-style: italic;
}

.mockup-needs { margin-bottom: 12px; }
.mockup-needs strong { font-size: 12px; color: var(--grey); display: block; margin-bottom: 6px; }
.needs-tags { display: flex; gap: 6px; }
.need-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  background: rgba(0,230,118,0.12);
  border-radius: 4px;
  color: var(--green);
}

/* ── MATCHING SECTION ── */
.matching-section {
  padding: 100px 0;
}

.match-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.match-step {
  flex: 1;
  min-width: 160px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}

.match-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin: 0 auto 14px;
}

.match-num.green {
  background: var(--green);
  color: var(--black);
}

.match-step p {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.5;
}

.match-arrow {
  font-size: 20px;
  color: var(--green);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ── PREMIUM ── */
.premium-section {
  padding: 100px 0;
  background: var(--carbon);
}

.premium-card {
  background: var(--black);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 20px;
  padding: 52px;
  max-width: 680px;
  margin: 0 auto;
}

.premium-header { margin-bottom: 40px; }

.premium-header h2 {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 16px;
}

.premium-price {
  font-size: 40px;
  font-weight: 700;
  color: var(--green);
}

.premium-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--grey);
}

.premium-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.pf {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--grey-light);
}

.pf-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.premium-note {
  font-size: 13px;
  color: var(--grey);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
}

/* ── PAGE FOOTER CTA ── */
.page-footer-cta {
  padding: 100px 0;
  text-align: center;
}

.page-footer-cta h2 {
  font-family: var(--font-display);
  font-size: 48px;
  margin-bottom: 14px;
}

.page-footer-cta p {
  font-size: 17px;
  color: var(--grey-light);
  margin-bottom: 36px;
}

/* ── FOOTER ── */
.footer {
  background: var(--carbon);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 32px;
}

.footer-inner {
  display: flex;
  gap: 64px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--grey-light);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: var(--grey);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-slogan {
  font-family: var(--font-display);
  color: var(--green);
  opacity: 0.6;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp 0.6s ease both; }
.hero-title { animation: fadeUp 0.6s ease 0.1s both; }
.hero-sub { animation: fadeUp 0.6s ease 0.2s both; }
.hero-cta-row { animation: fadeUp 0.6s ease 0.3s both; }
.hero-slogan { animation: fadeUp 0.6s ease 0.4s both; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .two-sides .container { grid-template-columns: 1fr; }
  .use-case-grid { grid-template-columns: 1fr 1fr; }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-layout.reversed { direction: ltr; }
  .match-steps { flex-direction: column; }
  .match-arrow { transform: rotate(90deg); }
  .premium-features { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .use-case-grid { grid-template-columns: 1fr; }
  .sports-row { flex-direction: column; }
}
