/* =============================================
   MCGBA LLC — Website Styles
   ============================================= */

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

:root {
  --black: #090909;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f0ede8;
  --text-muted: #888;
  --text-dim: #555;

  /* Fit or Flop palette */
  --fof-pink: #FF2D55;
  --fof-gold: #F5C842;
  --fof-cream: #FAF7F2;

  /* Adapt palette */
  --adapt-blue: #3B82F6;
  --adapt-lime: #84CC16;
  --adapt-steel: #374151;

  --radius: 20px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(9, 9, 9, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255, 45, 85, 0.12) 0%, rgba(59, 130, 246, 0.08) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

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

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-gradient {
  background: linear-gradient(135deg, var(--fof-gold) 0%, var(--fof-pink) 50%, var(--adapt-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: white;
  color: black;
}

.btn-primary:hover {
  background: var(--fof-cream);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

/* ---- SECTION COMMON ---- */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* ---- APPS ---- */
.apps {
  padding: 100px 0;
}

.apps .container {
  text-align: center;
}

.apps .section-title {
  margin-bottom: 64px;
}

/* App Card */
.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 40px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.app-card-content {
  padding: 56px 52px;
}

.app-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.app-badge--live {
  background: rgba(132, 204, 22, 0.15);
  color: var(--adapt-lime);
  border: 1px solid rgba(132, 204, 22, 0.25);
}

.app-badge--soon {
  background: rgba(59, 130, 246, 0.15);
  color: var(--adapt-blue);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.app-icon-wrap {
  margin-bottom: 24px;
}

.app-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.app-icon-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.adapt-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.app-name {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.1;
}

.app-name--adapt {
  background: linear-gradient(135deg, var(--adapt-blue), var(--adapt-lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-tagline {
  font-size: 15px;
  color: var(--fof-gold);
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 400;
}

.app-tagline--adapt {
  color: var(--adapt-blue);
}

.app-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.app-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.feature-icon {
  color: var(--fof-pink);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 3px;
}

.feature-icon--adapt {
  color: var(--adapt-blue);
}

.app-platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.platform-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.platform-tag--adapt {
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--adapt-blue);
  background: rgba(59, 130, 246, 0.08);
}

/* App Card Visual Panel */
.app-card-visual {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-left: 1px solid var(--border);
}

.app-splash {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Adapt Visual */
.app-card-visual--adapt {
  background: linear-gradient(160deg, #0d1f3c 0%, #0a0a0a 100%);
  align-items: flex-start;
  padding: 48px 40px;
}

.adapt-visual-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.adapt-stat-card {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}

.adapt-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--adapt-blue);
  margin-bottom: 6px;
}

.adapt-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.adapt-stat-unit {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.adapt-coach-bubble {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}

.adapt-coach-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  margin-bottom: 10px;
}

.adapt-coach-attr {
  font-size: 11px;
  color: var(--adapt-blue);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.adapt-bars {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}

.adapt-bar-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.adapt-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.adapt-bar-row:last-child {
  margin-bottom: 0;
}

.adapt-bar-week {
  font-size: 11px;
  color: var(--text-dim);
  width: 28px;
  flex-shrink: 0;
}

.adapt-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
}

.adapt-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--adapt-blue), var(--adapt-lime));
  border-radius: 100px;
  transition: width 1s ease;
}

.adapt-bar-val {
  font-size: 12px;
  font-weight: 600;
  color: var(--adapt-lime);
  width: 30px;
  text-align: right;
  flex-shrink: 0;
}

/* ---- ABOUT ---- */
.about {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

.about-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--fof-gold), var(--fof-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-tech {
  padding-top: 80px;
}

.tech-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.tech-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-muted);
}

.tech-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fof-pink), var(--adapt-blue));
  flex-shrink: 0;
}

/* ---- CONTACT ---- */
.contact {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.contact-inner {
  text-align: center;
}

.contact-inner .section-title {
  margin-bottom: 16px;
}

.contact-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 56px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 32px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}

.contact-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  background: var(--surface-2);
}

.contact-card-icon {
  font-size: 22px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-card-val {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  padding-bottom: 64px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

.footer-col a {
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .app-card {
    grid-template-columns: 1fr;
  }

  .app-card-visual {
    border-left: none;
    border-top: 1px solid var(--border);
    min-height: 300px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-tech {
    padding-top: 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(9, 9, 9, 0.97);
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links--open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle--open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle--open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle--open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .app-card-content {
    padding: 36px 28px;
  }

  .about-stats {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero {
    padding: 100px 24px 60px;
  }
}
