:root {
  --bg: #07111f;
  --bg-2: #0b1728;
  --surface: #ffffff;
  --surface-soft: #f2f5f8;
  --surface-alt: #e9eef3;
  --text: #0c1724;
  --text-muted: #617083;
  --text-light: #ecf5ff;
  --line: rgba(10, 24, 40, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);
  --accent: #58f0a7;
  --accent-2: #43cfff;
  --accent-dark: #1cbf77;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 70px rgba(14, 31, 49, 0.12);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-dark {
  background: var(--bg);
  color: var(--text-light);
}

.section-light {
  background: var(--surface);
}

.section-soft {
  background: var(--surface-soft);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.site-header.scrolled {
  background: rgba(7, 17, 31, 0.9);
  backdrop-filter: blur(18px);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand-symbol {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(88, 240, 167, 0.22), rgba(67, 207, 255, 0.1));
  color: var(--accent);
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Oswald", sans-serif;
  font-size: 21px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 6px;
  font-size: 8px;
  letter-spacing: 0.24em;
  color: #91a2b5;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 600;
}

.nav-links > a:not(.btn) {
  transition: color 0.2s ease;
}

.nav-links > a:not(.btn):hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 42px;
  padding-inline: 18px;
}

.btn-large {
  min-height: 58px;
  padding-inline: 30px;
}

.btn-primary {
  background: var(--accent);
  color: #061119;
  box-shadow: 0 12px 30px rgba(88, 240, 167, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(88, 240, 167, 0.28);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.24);
  background: transparent;
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.btn-dark {
  color: #fff;
  background: var(--bg);
}

.full {
  width: 100%;
}

.hero {
  min-height: 800px;
  padding-top: 150px;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 60px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 80px;
}

.hero h1,
.section-heading h2,
.ai-copy h2,
.impact-heading h2,
.cta-box h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(64px, 8vw, 118px);
}

.hero h1 span,
.section-heading h2 span,
.ai-copy h2 span,
.impact-heading h2 span,
.cta-box h2 span {
  color: var(--accent);
}

.hero-lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: #9db0c4;
  font-size: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #b5c5d5;
}

.eyebrow-dark {
  color: #566678;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(88,240,167,0.1);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.hero-metrics {
  display: flex;
  gap: 38px;
  margin-top: 55px;
}

.hero-metrics > div {
  min-width: 105px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.hero-metrics strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  line-height: 1;
  color: #fff;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: #7f91a4;
}

.hero-visual {
  height: 610px;
  position: relative;
}

.hero-image-shell {
  position: absolute;
  inset: 25px 0 0 40px;
  border-radius: 50% 50% 24px 24px / 42% 42% 24px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 25%, rgba(88,240,167,0.18), transparent 26%),
    linear-gradient(145deg, #12243a, #091624 72%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 35px 90px rgba(0,0,0,0.32);
}

.hero-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-copy {
  display: none;
}

.hero-image-shell.image-placeholder .placeholder-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.86);
}

.placeholder-copy span {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.26em;
  font-weight: 800;
}

.placeholder-copy strong {
  margin-top: 12px;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 58px;
  line-height: 0.9;
}

.sport-orbit {
  position: absolute;
  inset: 0;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(88,240,167,0.12);
  border-radius: 50%;
}

.orbit-1 {
  width: 560px;
  height: 560px;
  top: 25px;
  left: 5px;
}

.orbit-2 {
  width: 430px;
  height: 430px;
  top: 90px;
  left: 70px;
  border-color: rgba(67,207,255,0.1);
}

.orbit-3 {
  width: 680px;
  height: 680px;
  top: -38px;
  left: -55px;
  border-color: rgba(255,255,255,0.05);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 155px;
  padding: 15px 17px;
  border-radius: 17px;
  color: #fff;
  background: rgba(11, 24, 40, 0.82);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

.floating-card small {
  display: block;
  color: #8195a8;
  font-size: 10px;
}

.floating-card strong {
  display: block;
  font-size: 14px;
}

.mini-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(88,240,167,0.12);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.card-attendance {
  top: 110px;
  left: 0;
}

.card-finance {
  right: -28px;
  top: 250px;
}

.card-ai {
  left: 75px;
  bottom: 15px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.14;
}

.hero-glow-a {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: 130px;
  right: -180px;
}

.hero-glow-b {
  width: 350px;
  height: 350px;
  background: var(--accent-2);
  left: -140px;
  bottom: 60px;
}

.sport-strip {
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.sport-strip-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #8091a4;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.sport-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.section-heading {
  max-width: 620px;
}

.section-heading.centered {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.ai-copy h2,
.impact-heading h2,
.cta-box h2 {
  color: var(--text);
  font-size: clamp(48px, 6.1vw, 84px);
}

.section-heading p,
.ai-copy > p,
.cta-box p {
  margin: 25px 0 0;
  color: var(--text-muted);
  font-size: 17px;
}

.section-heading.light h2 {
  color: #fff;
}

.section-heading.light p {
  color: #8ea1b5;
}

.app-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 45px 0;
}

.filter-btn {
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #526174;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
  transition: 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: #fff;
  background: var(--bg);
  border-color: var(--bg);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.app-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 34px rgba(15, 31, 49, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.app-card.is-hidden {
  display: none;
}

.app-media {
  height: 230px;
  position: relative;
  overflow: hidden;
  background: #0f2134;
}

.app-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(2,8,15,0.7), transparent 62%);
}

.app-media::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -40px;
  top: -40px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50%;
}

.app-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-futvia { background: linear-gradient(145deg, #142d39, #0b1a25); }
.app-courtia { background: linear-gradient(145deg, #1d3a31, #0d1e1c); }
.app-hoopvia { background: linear-gradient(145deg, #4b2a18, #17100d); }
.app-volvia { background: linear-gradient(145deg, #0341b3, #031b4e); }
.app-aquavia { background: linear-gradient(145deg, #074561, #0a2435); }
.app-skativa { background: linear-gradient(145deg, #40295c, #171020); }
.app-karavia { background: linear-gradient(145deg, #542526, #1e0e10); }
.app-taekvia { background: linear-gradient(145deg, #242c4d, #101425); }

.app-number {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  color: rgba(255,255,255,0.55);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
}

.app-sport {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(7,17,31,0.7);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.app-content {
  padding: 22px;
}

.app-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.app-kicker {
  color: #8592a1;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.app-content h3 {
  margin: 3px 0 0;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
}

.app-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: #607084;
}

.app-content p {
  min-height: 63px;
  margin: 15px 0 18px;
  color: var(--text-muted);
  font-size: 13px;
}

.chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.chips span {
  padding: 6px 8px;
  border-radius: 6px;
  background: var(--surface-soft);
  color: #617083;
  font-size: 9px;
  font-weight: 700;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 80px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 30px;
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
}

.text-link span {
  color: var(--accent-dark);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 225px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.feature-index {
  color: #99a5b1;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
}

.feature-card h3 {
  margin: 45px 0 8px;
  font-size: 19px;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.feature-card-highlight {
  background: var(--bg);
  border-color: var(--bg);
  color: #fff;
}

.feature-card-highlight .feature-index {
  color: var(--accent);
}

.feature-card-highlight p {
  color: #8fa1b4;
}

.section-ai {
  overflow: hidden;
}

.ai-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.ai-copy h2 {
  color: #fff;
}

.ai-copy > p {
  color: #91a4b6;
}

.ai-list {
  margin-top: 35px;
}

.ai-list > div {
  display: flex;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
  color: #d8e5ef;
  font-size: 13px;
}

.ai-list > div span {
  color: var(--accent);
  font-family: "Oswald", sans-serif;
  font-size: 11px;
}

.ai-note {
  font-size: 11px !important;
  color: #708398 !important;
}

.ai-dashboard {
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(18,38,58,0.92), rgba(8,20,34,0.9));
  box-shadow: 0 38px 100px rgba(0,0,0,0.35);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-top small,
.dashboard-top strong {
  display: block;
}

.dashboard-top small {
  color: var(--accent);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.dashboard-top strong {
  margin-top: 4px;
  font-size: 17px;
}

.live-badge {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(88,240,167,0.1);
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
}

.dashboard-score {
  margin: 35px 0 30px;
  padding: 25px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
}

.dashboard-score span {
  display: block;
  color: #7f92a7;
  font-size: 11px;
}

.dashboard-score strong {
  font-family: "Oswald", sans-serif;
  font-size: 80px;
  line-height: 1;
}

.dashboard-score small {
  color: #65798e;
}

.dashboard-bars > div {
  margin-bottom: 18px;
}

.dashboard-bars span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 10px;
  color: #91a3b4;
}

.dashboard-bars span b {
  color: #dce6ef;
}

.dashboard-bars i {
  height: 5px;
  display: block;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,0.08);
}

.dashboard-bars em {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.dashboard-insight {
  display: flex;
  gap: 13px;
  margin-top: 28px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(88,240,167,0.07);
  border: 1px solid rgba(88,240,167,0.1);
}

.spark {
  color: var(--accent);
}

.dashboard-insight small {
  color: var(--accent);
  font-size: 8px;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.dashboard-insight p {
  margin: 5px 0 0;
  color: #b9c9d6;
  font-size: 11px;
}

.ai-noise {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    radial-gradient(circle at 15% 25%, rgba(88,240,167,0.09), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(67,207,255,0.08), transparent 30%);
}

.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 100px;
}

.phone-stage {
  min-height: 610px;
  position: relative;
}

.phone {
  position: absolute;
  width: 270px;
  height: 560px;
  padding: 10px;
  border-radius: 45px;
  background: #08111b;
  border: 1px solid #273543;
  box-shadow: 0 35px 90px rgba(18,34,52,0.18);
}

.phone-back {
  left: 70px;
  top: 10px;
  transform: rotate(-8deg);
}

.phone-front {
  left: 245px;
  top: 35px;
  transform: rotate(5deg);
}

.phone-notch {
  position: absolute;
  z-index: 3;
  width: 90px;
  height: 20px;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #061019;
}

.phone-screen {
  height: 100%;
  padding: 60px 22px 22px;
  overflow: hidden;
  border-radius: 36px;
  background: var(--surface-soft);
}

.screen-label {
  color: #738094;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.phone-screen > strong {
  display: block;
  margin-top: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 27px;
  line-height: 1.05;
}

.screen-dashboard {
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(88,240,167,0.2), transparent 25%),
    #0b1929;
}

.mobile-stat {
  margin-top: 32px;
  padding: 18px;
  border-radius: 17px;
  background: rgba(255,255,255,0.06);
}

.mobile-stat small {
  display: block;
  color: #8295a8;
  font-size: 9px;
}

.mobile-stat b {
  display: block;
  margin-top: 7px;
  font-family: "Oswald", sans-serif;
  font-size: 36px;
}

.mobile-button {
  margin-top: 12px;
  padding: 13px;
  border-radius: 12px;
  background: var(--accent);
  color: #07121c;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
}

.mobile-list {
  height: 60px;
  margin-top: 15px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
}

.mobile-list.small {
  height: 45px;
}

.screen-calendar {
  color: var(--text);
  background: #eef3f6;
}

.mock-event {
  height: 68px;
  margin-top: 18px;
  border-radius: 14px;
  background: #fff;
  border-left: 4px solid var(--accent-dark);
}

.mock-event.short {
  height: 48px;
  border-left-color: var(--accent-2);
}

.mobile-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.mobile-features span {
  font-size: 13px;
  font-weight: 700;
  color: #455669;
}

.section-impact {
  background: #edf2f5;
}

.impact-heading {
  text-align: center;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 55px;
}

.impact-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.impact-card strong {
  font-family: "Oswald", sans-serif;
  font-size: 55px;
  color: var(--accent-dark);
  line-height: 1;
}

.impact-card h3 {
  margin: 45px 0 8px;
  font-size: 18px;
}

.impact-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.section-pricing {
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 55px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.035);
}

.price-card-featured {
  background: #102338;
  border-color: rgba(88,240,167,0.28);
  box-shadow: 0 25px 80px rgba(0,0,0,0.25);
}

.recommended {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #07121c;
  font-size: 8px;
  font-weight: 900;
}

.price-period {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.price-card h3 {
  margin: 8px 0 5px;
  font-family: "Oswald", sans-serif;
  font-size: 32px;
}

.price-description {
  min-height: 46px;
  margin: 0;
  color: #8194a8;
  font-size: 12px;
}

.price-value {
  min-height: 92px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 25px 0;
}

.price-value strong {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  line-height: 1;
}

.price-value > span,
.price-value small {
  color: #8ba0b4;
  font-size: 10px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.price-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #b1c1d0;
  font-size: 11px;
}

.price-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent);
}

.pricing-note {
  margin: 25px 0 0;
  text-align: center;
  color: #71859a;
  font-size: 10px;
}

.section-cta {
  padding-block: 80px;
  background: var(--accent);
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.cta-box .eyebrow {
  margin-bottom: 15px;
}

.cta-box h2 {
  font-size: clamp(48px, 5vw, 74px);
}

.cta-box h2 span {
  color: #0f2637;
}

.cta-box p {
  color: #315146;
  font-weight: 600;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
}

.section-cta .btn-primary {
  background: #fff;
}

.footer {
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
}

.brand-footer {
  margin-bottom: 20px;
}

.footer p {
  max-width: 290px;
  color: #74889d;
  font-size: 12px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 12px;
}

.footer-grid a {
  color: #7f91a5;
  font-size: 11px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #5f7285;
  font-size: 9px;
}

.whatsapp-float {
  position: fixed;
  z-index: 999;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #07121c;
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
  font-weight: 900;
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 18px;
  }

  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
  }

  .floating-card {
    display: none;
  }

  .solutions-grid,
  .ai-grid,
  .mobile-grid {
    gap: 50px;
  }

  .phone-back {
    left: 10px;
  }

  .phone-front {
    left: 170px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 80px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 80px 0 auto;
    padding: 28px 20px 35px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(7,17,31,0.98);
    border-top: 1px solid rgba(255,255,255,0.08);
  }

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

  .nav-links > a {
    padding: 12px 0;
  }

  .hero {
    padding-top: 125px;
  }

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

  .hero-copy {
    padding-bottom: 20px;
  }

  .hero-visual {
    height: 500px;
  }

  .hero-image-shell {
    inset: 20px 6% 0;
  }

  .sport-strip-inner {
    overflow: auto;
    justify-content: flex-start;
    white-space: nowrap;
  }

  .solutions-grid,
  .ai-grid,
  .mobile-grid {
    grid-template-columns: 1fr;
  }

  .solutions-grid {
    gap: 45px;
  }

  .mobile-grid .section-heading {
    order: -1;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .price-card {
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    width: 100%;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-metrics {
    gap: 15px;
    justify-content: space-between;
  }

  .hero-metrics > div {
    min-width: 0;
  }

  .hero-visual {
    height: 420px;
  }

  .hero-image-shell {
    inset: 10px 0 0;
  }

  .placeholder-copy strong {
    font-size: 46px;
  }

  .apps-grid,
  .feature-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .app-media {
    height: 260px;
  }

  .app-content p {
    min-height: auto;
  }

  .section-heading h2,
  .ai-copy h2,
  .impact-heading h2,
  .cta-box h2 {
    font-size: clamp(45px, 15vw, 68px);
  }

  .phone-stage {
    min-height: 500px;
    transform: scale(0.82);
    transform-origin: left top;
    width: 120%;
  }

  .phone-back {
    left: 0;
  }

  .phone-front {
    left: 145px;
  }

  .mobile-features {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ==========================================================
   ESPORTIA FAMILY BRAND + LOGIN STANDARD V1 — VISUAL BLOQUEADO
   No modificar sin aprobación expresa del propietario.
   ========================================================== */
.brand-locked .brand-copy small{color:#f1bd35;letter-spacing:.13em;font-size:7px}.hero-family-visual{height:650px;display:flex;flex-direction:column;padding:28px;border:1px solid rgba(255,255,255,.15);border-radius:34px;background:linear-gradient(155deg,rgba(3,18,43,.84),rgba(8,51,91,.62));box-shadow:0 30px 80px rgba(0,0,0,.22);overflow:hidden}.hero-family-lockup{position:relative;z-index:3;display:flex;align-items:center;gap:14px}.hero-family-symbol{width:54px;height:54px;display:grid;place-items:center;border-radius:15px 5px;background:linear-gradient(145deg,#18d0e8,#1e67f0);font-family:"Oswald",sans-serif;font-size:30px;font-weight:700;font-style:italic;color:#fff}.hero-family-lockup strong,.hero-family-lockup small{display:block}.hero-family-lockup strong{font-family:"Oswald",sans-serif;font-size:28px;letter-spacing:.08em}.hero-family-lockup small{margin-top:4px;color:#f1bd35;font-size:8px;font-weight:800;letter-spacing:.12em}.hero-neon-sports{position:relative;flex:1;min-height:300px;margin:8px 0}.hero-neon-sports:before{position:absolute;inset:6% 10%;border-radius:50%;background:radial-gradient(circle,rgba(31,134,210,.13),transparent 68%);border:1px solid rgba(47,179,228,.12);content:""}.neon-orbit{position:absolute;inset:5% 13%;border:1px solid rgba(31,180,231,.18);border-radius:50%;transform:rotate(-8deg)}.orbit-two{inset:18% 24%;border-color:rgba(241,188,53,.16);transform:rotate(28deg)}.orbit-three{inset:30% 36%;border-color:rgba(231,37,144,.14);transform:rotate(-31deg)}.neon-sport{position:absolute;z-index:2;width:58px;height:58px;display:grid;place-items:center;border-radius:18px;background:rgba(3,18,42,.76);border:1px solid currentColor;font-size:1.55rem;box-shadow:0 10px 24px rgba(0,0,0,.28),0 0 26px currentColor}.neon-basket{left:6%;top:8%;color:#ff7900}.neon-volley{right:8%;top:11%;color:#f2ce1d}.neon-swim{left:31%;top:39%;color:#19d4e2}.neon-football{left:1%;bottom:14%;color:#c8ec13}.neon-tennis{left:30%;bottom:0;color:#a8e30c}.neon-skate{right:2%;bottom:6%;color:#f51b8b}.neon-combat{right:23%;bottom:29%;color:#8d8efc}.hero-family-apps{position:relative;z-index:3;display:grid;grid-template-columns:repeat(4,1fr);gap:8px}.hero-family-apps img{height:64px;padding:5px;border-radius:12px;background:#fff;object-fit:contain}.hero-standard-lock{position:relative;z-index:3;display:flex;align-items:center;gap:11px;margin-top:13px;padding-top:13px;border-top:1px solid rgba(255,255,255,.12)}.hero-standard-lock>span{width:40px;height:40px;display:grid;place-items:center;border:1px solid rgba(241,189,53,.5);border-radius:11px;color:#f1bd35}.hero-standard-lock small,.hero-standard-lock strong{display:block}.hero-standard-lock small{font-size:10px;color:#95a6b8}.hero-standard-lock strong{margin-top:3px;font-size:11px;color:#fff}.landing-family-logo-grid{display:grid;grid-template-columns:repeat(8,1fr);gap:12px;margin:0 0 34px}.landing-family-logo-grid article{padding:12px 9px;border:1px solid rgba(10,24,40,.1);border-radius:18px;background:#fff;box-shadow:0 12px 34px rgba(14,31,49,.055);text-align:center}.landing-family-logo-grid img{height:92px;object-fit:contain}.landing-family-logo-grid span{display:block;margin-top:8px;color:#657487;font-size:11px;font-weight:700}
@media(max-width:1020px){.hero-family-visual{height:auto;min-height:580px}.landing-family-logo-grid{grid-template-columns:repeat(4,1fr)}}
@media(max-width:640px){.hero-family-apps,.landing-family-logo-grid{grid-template-columns:repeat(2,1fr)}.hero-family-visual{padding:20px}.hero-neon-sports{min-height:260px}.neon-sport{width:46px;height:46px;font-size:1.15rem}.hero-family-apps img{height:72px}}

/* ESPORTIA Family logo aprobado - actualización B24 */
.brand-image-lockup{display:flex;align-items:center;background:#fff;border-radius:12px;padding:4px 8px}.brand-image-lockup img{width:165px;height:62px;object-fit:contain}.hero-family-logo-image{display:flex;justify-content:center;align-items:center;background:#fff;border-radius:18px;padding:8px;max-width:420px;margin:auto}.hero-family-logo-image img{width:100%;max-height:180px;object-fit:contain}

/* Accesos independientes por aplicación.
   Mantiene el diseño aprobado y solo añade el botón solicitado bajo cada logo. */
.landing-family-logo-grid .app-logo-login {
  width: 100%;
  min-height: 36px;
  margin-top: 10px;
  padding: 0 12px;
  font-size: 11px;
  box-shadow: 0 9px 22px rgba(88, 240, 167, 0.16);
}

.landing-family-logo-grid .app-logo-login:focus-visible {
  outline: 3px solid rgba(7, 17, 31, 0.25);
  outline-offset: 3px;
}
