:root {
  --bg: #0D0D0D;
  --bg2: #111111;
  --card: #1A1A1A;
  --border: #2A2A2A;
  --blue: #1B6FD8;
  --blue-light: #3B8FFF;
  --text: #FFFFFF;
  --muted: #888888;
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--blue-light); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.nav-logo span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.hero-text { flex: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,111,216,0.15);
  border: 1px solid rgba(27,111,216,0.3);
  color: var(--blue-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--blue-light); }

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  cursor: not-allowed;
  opacity: 0.6;
  transition: all 0.2s;
  position: relative;
}

.store-btn .soon {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--blue);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.store-btn svg { width: 24px; height: 24px; fill: white; }

.store-btn .btn-text { text-align: left; }
.store-btn .btn-text small { display: block; font-size: 11px; color: var(--muted); }
.store-btn .btn-text strong { display: block; font-size: 15px; font-weight: 700; }

/* PHONE MOCKUPS */
.hero-phones {
  flex: 1;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
}

.phone {
  background: #111;
  border: 2px solid #333;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px #222;
  position: relative;
}

.phone::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: #333;
  border-radius: 50px;
  z-index: 2;
}

.phone img {
  width: 100%;
  display: block;
}

.phone-main {
  width: 220px;
  transform: translateY(0);
}

.phone-side {
  width: 185px;
  transform: translateY(30px);
  opacity: 0.85;
}

/* FEATURES */
.section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 56px;
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(27,111,216,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* SCREENSHOTS */
.screens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.screen-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.screen-item img {
  width: 100%;
  display: block;
}

.screen-label {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

/* STATS */
.stats-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue-light);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

/* CTA SECTION */
.cta-section {
  padding: 80px 40px;
  text-align: center;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(27,111,216,0.15) 0%, rgba(27,111,216,0.05) 100%);
  border: 1px solid rgba(27,111,216,0.3);
  border-radius: 24px;
  padding: 60px 40px;
}

.cta-box h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-box p {
  color: var(--muted);
  margin-bottom: 36px;
  font-size: 16px;
}

.cta-box .store-buttons {
  justify-content: center;
}

/* FOOTER */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 40px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 13px;
  max-width: 240px;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #aaa;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
  text-decoration: none;
}

.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 {
  color: var(--muted);
  font-size: 13px;
}

/* LEGAL PAGES */
.legal-header {
  padding: 120px 40px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-header h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.legal-header .updated {
  color: var(--muted);
  font-size: 14px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--text);
}

.legal-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--blue-light);
}

.legal-content p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  color: #ccc;
  font-size: 15px;
  line-height: 1.8;
  margin: 10px 0 14px 20px;
}

.legal-content ul li { margin-bottom: 6px; }

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.legal-content th {
  background: var(--card);
  color: var(--text);
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
}

.legal-content td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  color: #ccc;
  vertical-align: top;
}

.legal-content tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

.info-box {
  background: rgba(27,111,216,0.1);
  border: 1px solid rgba(27,111,216,0.25);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 14px;
  color: #aad4ff;
  line-height: 1.7;
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.contact-info h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  background: rgba(27,111,216,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item .detail strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.contact-item .detail span {
  color: var(--muted);
  font-size: 14px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.btn-primary {
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--blue-light); }

/* DELETION PAGE */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.step-content strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.step-content span {
  color: var(--muted);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero { flex-direction: column; padding: 100px 20px 40px; gap: 40px; }
  .hero-phones { width: 100%; }
  .phone-main { width: 160px; }
  .phone-side { width: 130px; }
  .section { padding: 60px 20px; }
  .screens-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-header, .legal-content { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 500px) {
  .screens-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 40px 20px; }
}

/* HERO IMAGE */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 560px;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

/* APP SCREENS MOCKUP */
.app-screens {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.app-screen-card { text-align: center; }

.phone-frame {
  background: #111;
  border: 2px solid #2a2a2a;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  margin: 0 auto 12px;
  width: 100%;
  max-width: 180px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.phone-notch {
  width: 50px;
  height: 5px;
  background: #2a2a2a;
  border-radius: 50px;
  margin: 10px auto 6px;
  flex-shrink: 0;
}

.screen-content {
  flex: 1;
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

/* MOCK UI ELEMENTS */
.mock-search {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 10px;
  color: #666;
}

.mock-label {
  font-size: 11px;
  font-weight: 700;
  color: #ccc;
  margin-top: 4px;
}

.mock-sports {
  display: flex;
  gap: 6px;
}

.mock-sport {
  background: #1e1e1e;
  border-radius: 6px;
  padding: 4px 7px;
  font-size: 9px;
  color: #aaa;
}

.mock-coach {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B6FD8, #0d3d7a);
  flex-shrink: 0;
}

.mock-name { font-size: 11px; font-weight: 600; color: #fff; }
.mock-rating { font-size: 9px; color: #888; }
.mock-price { font-size: 11px; font-weight: 700; color: var(--blue-light); margin-left: auto; }

/* Booking screen */
.mock-coach-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 4px;
}

.mock-avatar-lg {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B6FD8, #0d3d7a);
  flex-shrink: 0;
}

.mock-name-lg { font-size: 13px; font-weight: 700; color: #fff; }
.mock-certified { font-size: 9px; color: var(--blue-light); }

.mock-calendar {
  display: flex;
  gap: 5px;
}

.mock-day {
  flex: 1;
  background: #1e1e1e;
  border-radius: 6px;
  padding: 6px 0;
  text-align: center;
  font-size: 10px;
  color: #888;
}

.mock-day.active {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}

.mock-slots { display: flex; gap: 5px; }

.mock-slot {
  flex: 1;
  background: #1e1e1e;
  border-radius: 6px;
  padding: 5px 0;
  text-align: center;
  font-size: 9px;
  color: #888;
  border: 1px solid #2a2a2a;
}

.mock-slot.active {
  border-color: var(--blue);
  color: var(--blue-light);
  background: rgba(27,111,216,0.1);
}

.mock-confirm-btn {
  margin-top: auto;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
}

/* Dashboard screen */
.mock-session-card {
  background: linear-gradient(135deg, var(--blue), #0d3d7a);
  border-radius: 10px;
  padding: 10px;
}

.mock-timer {
  display: flex;
  gap: 6px;
  margin: 6px 0;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

.mock-join-btn {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 6px;
  padding: 5px 8px;
  text-align: center;
  font-size: 9px;
  font-weight: 600;
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
  margin-top: 4px;
}

.mock-bar {
  flex: 1;
  background: #2a2a2a;
  border-radius: 3px;
}

.mock-bar.active { background: var(--blue); }

/* Reviews screen */
.mock-rating-big {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1;
}

.mock-stars { text-align: center; font-size: 12px; margin: 2px 0; }

.mock-review {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 8px;
}

.mock-reviewer { font-size: 9px; font-weight: 600; color: #aaa; margin-bottom: 3px; }
.mock-review-text { font-size: 9px; color: #ccc; line-height: 1.4; }

.mock-book-btn {
  margin-top: auto;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-visual { width: 100%; }
  .hero-img { max-width: 100%; }
  .app-screens { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .app-screens { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
