/*
Theme Name: Moonwalk Fitness Landing
Theme URI: https://moonwalk.fitness/
Author: Moonwalk Team
Author URI: https://moonwalk.fitness/
Description: Single-page Moonwalk Fitness landing converted into a WordPress theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: moonwalk-fitness
*/

/* --- Semantic Reset Utility --- */
    /* Critical for keeping layout identical when switching div -> ul */
    .list-reset {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    /* --- Semantic Text Reset --- */
    /* Critical: removing default margins from P tags to match original DIV design */
    p {
      margin: 0; 
    }
    /* We restore margins only where specifically needed by the original design logic */
    
    /* --- Accessibility: Skip Link --- */
    .skip-link {
      position: absolute;
      top: -999px;
      left: 0;
      background: var(--accent-1);
      color: #000;
      padding: 8px 16px;
      z-index: 100;
      text-decoration: none;
      font-weight: bold;
      border-radius: 0 0 8px 0;
    }
    .skip-link:focus {
      top: 0;
    }

    /* --- Original Styles Preserved --- */
    :root {
      --bg-start: #0a0f1c;
      --bg-mid: #0b1220;
      --bg-end: #0a0f1c;
      --accent-1: #f472d0;
      --accent-2: #41d6e8;
      --text-main: #e5e7eb;
      --text-muted: #9ca3af;
      --text-strong: #f9fafb;
      --card-bg: rgba(255, 255, 255, 0.08);
      --card-border: rgba(255, 255, 255, 0.14);
      --border-subtle: rgba(148, 163, 184, 0.4);
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      color: var(--text-main);
      background:
        radial-gradient(circle at 0% 0%, #020617 0, transparent 50%),
        radial-gradient(circle at 100% 100%, #020617 0, transparent 45%),
        linear-gradient(135deg, var(--bg-start), var(--bg-mid), var(--bg-end));
      min-height: 100vh;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    body.no-scroll {
      overflow: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* Accessibility focus improvement */
    a:focus-visible,
    button:focus-visible,
    summary:focus-visible {
      outline: 2px solid var(--accent-2);
      outline-offset: 2px;
      border-radius: 4px;
    }

    button {
      font-family: inherit;
      border: none;
      background: none;
      padding: 0;
      cursor: pointer;
    }

    .bg-glow {
      position: fixed;
      pointer-events: none;
      z-index: -1;
      filter: blur(40px);
      opacity: 0.6;
      mix-blend-mode: screen;
    }

    .bg-glow.g1 {
      width: 420px;
      height: 420px;
      top: -120px;
      left: -80px;
      background: radial-gradient(circle, rgba(244, 114, 208, 0.35), transparent 60%);
      animation: float1 18s ease-in-out infinite;
    }

    .bg-glow.g2 {
      width: 420px;
      height: 420px;
      bottom: -120px;
      right: -40px;
      background: radial-gradient(circle, rgba(65, 214, 232, 0.3), transparent 60%);
      animation: float2 22s ease-in-out infinite;
    }

    @keyframes float1 {
      0%   { transform: translate3d(0, 0, 0); }
      50%  { transform: translate3d(14px, -18px, 0); }
      100% { transform: translate3d(0, 0, 0); }
    }

    @keyframes float2 {
      0%   { transform: translate3d(0, 0, 0); }
      50%  { transform: translate3d(-18px, 16px, 0); }
      100% { transform: translate3d(0, 0, 0); }
    }

    .page {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 16px 64px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(18px);
      background: linear-gradient(
        to bottom,
        rgba(10, 15, 28, 0.95),
        rgba(10, 15, 28, 0.7),
        transparent
      );
      border-bottom: 1px solid rgba(15, 23, 42, 0.85);
    }

    .header-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-logo {
      width: 36px;
      height: 36px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 18px rgba(65, 214, 232, 0.4);
      position: relative;
      overflow: hidden;
    }

    .brand-logo::after {
      content: "";
      position: absolute;
      inset: 3px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      opacity: 0.6;
    }

    .brand-mark {
      width: 16px;
      height: 16px;
      border-radius: 999px;
      border: 2px solid #0b1120;
      box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.3);
      background: radial-gradient(circle at 30% 20%, #fdf2ff, #f97316 70%);
    }

    .brand-text {
      font-weight: 600;
      font-size: 17px;
      letter-spacing: 0.04em;
      color: var(--text-strong);
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 16px;
    }

    .desktop-nav-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .nav-link {
      position: relative;
      padding: 6px 0;
      color: var(--text-muted);
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
      transition: width 0.2s ease;
    }

    .nav-link:hover {
      color: var(--text-main);
      transform: translateY(-1px);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: rgba(15, 23, 42, 0.96);
      padding: 8px 14px;
      font-size: 16px;
      color: var(--text-main);
      cursor: pointer;
    }

    .menu-toggle-icon {
      width: 16px;
      height: 2px;
      border-radius: 4px;
      background: var(--text-main);
      box-shadow: 0 5px 0 var(--text-main), 0 -5px 0 var(--text-main);
    }

    .menu-overlay {
      position: fixed;
      inset: 0;
      display: none;
      align-items: stretch;
      justify-content: flex-end;
      background: rgba(2, 6, 23, 0.8);
      backdrop-filter: blur(14px);
      z-index: 50;
    }

    .menu-overlay.open {
      display: flex;
    }

    .mobile-drawer {
      width: 88vw;
      max-width: 380px;
      background: rgba(15, 23, 42, 0.98);
      border-left: 1px solid rgba(148, 163, 184, 0.55);
      padding: 16px 18px 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      box-shadow: -22px 0 60px rgba(0, 0, 0, 0.8);
    }

    .mobile-drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 6px;
    }

    .mobile-drawer-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-strong);
    }

    .mobile-menu-note {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 2px;
    }

    .menu-close {
      background: transparent;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      padding: 4px 10px;
      font-size: 16px;
      color: var(--text-muted);
      cursor: pointer;
    }

    .mobile-link-card {
      background: var(--card-bg);
      border-radius: 18px;
      border: 1px solid var(--card-border);
      padding: 10px 12px;
      display: flex;
      flex-direction: column;
      gap: 3px;
      transition: transform 0.15s ease, box-shadow 0.15s ease,
        border-color 0.15s ease, background 0.15s ease;
    }

    .mobile-link-label {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-strong);
    }

    .mobile-link-path {
      font-size: 11px;
      color: var(--text-muted);
    }

    .mobile-link-card:hover {
      transform: translateY(-2px);
      border-color: rgba(148, 163, 184, 0.9);
      background: rgba(15, 23, 42, 0.98);
      box-shadow: 0 18px 30px rgba(15, 23, 42, 0.9);
    }

    main {
      max-width: 1120px;
      margin: 0 auto;
      padding: 40px 24px 80px;
    }

    .section {
      padding: 64px 0;
    }

    .section + .section {
      border-top: 1px solid rgba(15, 23, 42, 0.85);
    }

    .section-header {
      margin-bottom: 24px;
      max-width: 720px;
    }

    .section-eyebrow {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--accent-2);
      margin-bottom: 10px;
    }

    h1, h2, h3, h4 {
      margin: 0 0 10px;
      color: var(--text-strong);
    }

    h1 {
      font-size: clamp(32px, 4.5vw, 48px);
      line-height: 1.1;
      letter-spacing: -0.02em;
      font-weight: 800;
      margin-bottom: 20px;
    }

    h2 {
      font-size: 28px;
      line-height: 1.25;
      letter-spacing: -0.01em;
      margin-bottom: 16px;
    }

    h3 {
      font-size: 23px;
      line-height: 1.4;
      font-weight: 600;
    }

    .section-description {
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .hero {
      padding-top: 28px;
      padding-bottom: 100px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
      gap: 32px;
      align-items: center;
    }

    .hero-eyebrow {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--accent-2);
      margin-bottom: 12px;
    }

    .gradient-text {
      background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 25px;
      color: var(--text-strong);
      margin: 10px 0;
    }

    .hero-body {
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 14px;
      max-width: 560px;
    }

    .hero-bullets {
      margin: 0 0 14px;
      padding-left: 16px;
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 10px;
    }

    .hero-note {
      font-size: 12px;
      color: var(--text-muted);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 12px 24px;
      font-size: 16px;
      font-weight: 600;
      border: 1px solid transparent;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      letter-spacing: 0.01em;
    }

    .btn-primary {
      background-image: linear-gradient(135deg, var(--accent-1), var(--accent-2));
      color: #020617;
      box-shadow: 0 4px 12px rgba(244, 114, 208, 0.3), 0 8px 24px rgba(65, 214, 232, 0.2);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(244, 114, 208, 0.4), 0 12px 32px rgba(65, 214, 232, 0.3);
      filter: brightness(1.05);
    }

    .btn-ghost {
      background: rgba(15, 23, 42, 0.98);
      border-color: rgba(148, 163, 184, 0.7);
      color: var(--text-main);
    }

    .btn-ghost:hover {
      background: rgba(15, 23, 42, 1);
      border-color: rgba(148, 163, 184, 1);
      transform: translateY(-1px);
    }

        .promo-code {
          display: inline-flex;
          align-items: center;
          gap: 6px;
          padding: 6px 12px;
          border-radius: 999px;
          background: linear-gradient(135deg, #f472d0, #41d6e8);
          color: #020617;
          font-weight: 700;
          letter-spacing: 0.05em;
          box-shadow: 0 8px 20px rgba(244, 114, 208, 0.25), 0 10px 26px rgba(65, 214, 232, 0.2);
          text-transform: uppercase;
        }

    .btn-link {
      border: none;
      background: none;
      padding: 0;
      font-size: 16px;
      color: var(--accent-2);
      text-decoration: underline;
      text-underline-offset: 3px;
      box-shadow: none;
    }

    .btn-link:hover {
      color: var(--accent-1);
    }

    .hero-visual {
      display: flex;
      justify-content: flex-end;
    }

    .phone-card {
      width: 260px;
      max-width: 100%;
      aspect-ratio: 9 / 16;
      border-radius: 32px;
      background:
        radial-gradient(circle at 0 0, rgba(244, 114, 208, 0.12), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(65, 214, 232, 0.16), transparent 60%),
        rgba(15, 23, 42, 0.98);
      border: 1px solid rgba(248, 250, 252, 0.1);
      box-shadow: 0 24px 40px rgba(15, 23, 42, 0.9);
      padding: 12px 12px 14px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    .phone-card::before {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: 30px;
      border: 1px solid rgba(248, 250, 252, 0.06);
      pointer-events: none;
    }

    .phone-top {
      display: flex;
      justify-content: space-between;
      font-size: 10px;
      color: var(--text-muted);
    }

    .phone-moon-wrap {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .phone-moon {
      width: 120px;
      height: 120px;
      border-radius: 999px;
      background:
        radial-gradient(circle at 30% 20%, #f9fafb, #f472d0 48%, #41d6e8 100%);
      box-shadow:
        0 0 40px rgba(244, 114, 208, 0.8),
        0 0 60px rgba(65, 214, 232, 0.7);
      position: relative;
    }

    .phone-moon::after {
      content: "";
      position: absolute;
      inset: 16px 18px;
      border-radius: 999px;
      border: 2px dashed rgba(15, 23, 42, 0.22);
    }

    .phone-progress {
      font-size: 11px;
      color: var(--text-strong);
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .phone-bar {
      height: 6px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 1);
      overflow: hidden;
      position: relative;
    }

    .phone-bar-fill {
      width: 68%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    }

    .phone-footer {
      margin-top: 8px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      text-align: center;
      color: var(--text-muted);
    }

    .card-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .card {
      background: rgba(30, 41, 59, 0.3);
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 24px;
      backdrop-filter: blur(20px);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      background: rgba(30, 41, 59, 0.5);
      border-color: rgba(255, 255, 255, 0.15);
      box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    }

    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 1px inset rgba(255, 255, 255, 0.14);
      opacity: 0.4;
      pointer-events: none;
    }

    .card-title {
      font-size: 23px;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--text-strong);
    }

    .card-text {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 8px;
    }

    .pill {
      font-size: 11px;
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.6);
      color: var(--text-muted);
    }

    .timeline {
      margin-top: 12px;
      max-width: 860px;
    }

    .timeline-list {
      list-style: none;
      margin: 0;
      padding: 0;
      border-left: 1px solid rgba(148, 163, 184, 0.5);
    }

    .timeline-item {
      padding-left: 32px;
      padding-bottom: 32px;
      position: relative;
    }

    .timeline-item:last-child {
      padding-bottom: 0;
    }

    .timeline-marker {
      position: absolute;
      left: -16px;
      top: 0;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: #0f172a;
      border: 2px solid var(--accent-2);
      box-shadow: 0 0 12px rgba(65, 214, 232, 0.4), 0 0 0 4px rgba(15, 23, 42, 1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 700;
      color: var(--accent-2);
      z-index: 2;
    }

    .timeline-title {
      font-size: 23px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-strong);
    }

    .timeline-text {
      font-size: 18px;
      color: var(--text-main);
      line-height: 1.6;
      margin-bottom: 8px;
    }

    .timeline-list-inner {
      margin: 12px 0 0;
      padding-left: 0;
      font-size: 16px;
      color: var(--text-main);
      line-height: 1.7;
      list-style: none;
    }

    .timeline-list-inner li {
      position: relative;
      padding-left: 24px;
      margin-bottom: 8px;
    }

    .timeline-list-inner li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 9px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, #f472d0, #a855f7);
      box-shadow: 0 0 8px rgba(244, 114, 208, 0.6);
    }

    .guides-breadcrumbs {
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .guides-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .guide-card {
      background: var(--card-bg);
      border-radius: 20px;
      border: 1px solid var(--card-border);
      padding: 14px 14px 16px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      transition: transform 0.16s ease, box-shadow 0.16s ease,
        border-color 0.16s ease, background 0.16s ease;
    }

    .guide-card:hover {
      transform: translateY(-2px);
      border-color: rgba(148, 163, 184, 0.9);
      background: rgba(15, 23, 42, 0.98);
      box-shadow: 0 18px 30px rgba(15, 23, 42, 0.9);
    }

    .guide-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-strong);
    }

    .guide-desc {
      font-size: 16px;
      color: var(--text-muted);
    }

    .guide-path {
      font-size: 11px;
      color: var(--accent-2);
      margin-top: 4px;
    }

    .leagues-wrap {
      margin-top: 12px;
      max-width: 860px;
    }

    .league-bar {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 4px;
      margin-bottom: 10px;
    }

    .league-segment {
      border-radius: 999px;
      padding: 6px 6px;
      font-size: 11px;
      text-align: center;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.6);
      color: var(--text-muted);
      cursor: default;
    }

    .league-segment.highlight {
      background: linear-gradient(120deg, rgba(244, 114, 208, 0.22), rgba(65, 214, 232, 0.2));
      color: var(--text-strong);
    }

    .table-wrap {
      border-radius: 18px;
      border: 1px solid var(--border-subtle);
      background: rgba(15, 23, 42, 0.96);
      overflow: hidden;
      margin-top: 8px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 16px;
    }

    thead {
      background: linear-gradient(120deg, rgba(244, 114, 208, 0.25), rgba(65, 214, 232, 0.18));
    }

    th,
    td {
      padding: 8px 10px;
      text-align: left;
    }

    th {
      font-weight: 600;
      color: var(--text-strong);
      border-bottom: 1px solid rgba(15, 23, 42, 0.9);
    }

    tbody tr:nth-child(odd) {
      background: rgba(15, 23, 42, 0.9);
    }

    tbody tr:nth-child(even) {
      background: rgba(15, 23, 42, 0.8);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 10px;
    }

    .stat-card {
      background: rgba(15, 23, 42, 0.95);
      border-radius: 16px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      padding: 10px 12px;
    }

    .stat-label {
      font-size: 11px;
      color: var(--text-muted);
    }

    .stat-value {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-strong);
      margin-top: 4px;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 10px;
    }

    .review-card {
      background: var(--card-bg);
      border-radius: 18px;
      border: 1px solid var(--card-border);
      padding: 12px 14px;
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.7;
      position: relative;
      overflow: hidden;
    }

    .review-name {
      font-weight: 600;
      font-size: 16px;
      color: var(--text-strong);
      margin-bottom: 4px;
    }

    .review-tag {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 16px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 999px;
      background: linear-gradient(120deg, #f472d0, #41d6e8);
      color: #020617;
      box-shadow: 0 4px 12px rgba(244, 114, 208, 0.5);
      z-index: 2;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 24px;
      max-width: 860px;
    }

    details {
      background: rgba(15, 23, 42, 0.6);
      border-radius: 16px;
      border: 1px solid rgba(148, 163, 184, 0.2);
      padding: 16px 20px;
      transition: background 0.3s ease, border-color 0.3s ease;
    }

    details:hover {
      background: rgba(30, 41, 59, 0.8);
      border-color: rgba(255, 255, 255, 0.3);
    }

    details[open] {
      background: rgba(30, 41, 59, 0.9);
      border-color: rgba(244, 114, 208, 0.5);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    summary {
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      list-style: none;
      color: var(--text-strong);
      padding-right: 20px;
      position: relative;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "+";
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      font-size: 20px;
      font-weight: 400;
      color: var(--accent-2);
      transition: transform 0.3s ease;
    }

    details[open] summary::after {
      content: "−";
      transform: translateY(-50%) rotate(180deg);
      color: var(--accent-1);
    }

    details p {
      margin-top: 12px;
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.6;
      padding-right: 24px;
    }

    .contacts-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .contact-card {
      background: var(--card-bg);
      border-radius: 20px;
      border: 1px solid var(--card-border);
      padding: 14px 14px 16px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      transition: transform 0.16s ease, box-shadow 0.16s ease,
        border-color 0.16s ease, background 0.16s ease;
    }

    .contact-card:hover {
      transform: translateY(-2px);
      border-color: rgba(148, 163, 184, 0.9);
      background: rgba(15, 23, 42, 0.98);
      box-shadow: 0 18px 30px rgba(15, 23, 42, 0.9);
    }

    .contact-label {
      font-size: 16px;
      color: var(--text-muted);
    }

    .contact-value {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-strong);
    }

    .contact-extra {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 4px;
    }

    .footer {
      border-top: 1px solid rgba(15, 23, 42, 0.95);
      padding: 18px 16px 24px;
      font-size: 12px;
      color: var(--text-muted);
      background: rgba(10, 15, 28, 0.98);
    }

    .footer-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 16px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 10px 20px;
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 18px;
    }

    .footer-nav-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 10px 18px;
    }

    .footer-link {
      color: var(--text-muted);
    }

    .footer-link:hover {
      color: var(--text-main);
    }

    /* New styles for bright cards and pulsating button */
    .card-bright {
      background: rgba(30, 41, 59, 0.6) !important;
      border-color: rgba(255, 255, 255, 0.25) !important;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .card-bright:hover {
      background: rgba(30, 41, 59, 0.8) !important;
      border-color: rgba(255, 255, 255, 0.4) !important;
    }

    @keyframes pulse-glow {
      0% {
        box-shadow: 0 0 0 0 rgba(244, 114, 208, 0.8);
        transform: scale(1);
      }
      50% {
        box-shadow: 0 0 0 25px rgba(244, 114, 208, 0);
        transform: scale(1.05);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(244, 114, 208, 0);
        transform: scale(1);
      }
    }

    .btn-pulse {
      animation: pulse-glow 1.5s infinite;
      width: 100%;
      max-width: 400px;
      font-size: 18px;
      padding: 16px 32px;
    }

    @keyframes bounce-gentle {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    .card-bounce {
      animation: bounce-gentle 3s ease-in-out infinite;
    }

    .card-bounce:hover {
      animation-play-state: paused;
      transform: translateY(-6px);
    }

    /* PROOF GRID STYLES (New Block Style) */
    .proof-grid .card {
      position: relative;
      overflow: hidden;
      border-radius: 22px;
      border: 1px solid var(--card-border);
      background: var(--card-bg);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    }

    .proof-grid .card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 1px inset rgba(255, 255, 255, 0.14);
      opacity: 0.4;
      pointer-events: none;
    }

    .proof-grid .card::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      border-radius: 999px;
      opacity: 0.95;
    }

    /* Card 1 Colors */
    .proof-grid .card:nth-child(1) {
      background: radial-gradient(circle at 10% 0%, rgba(34, 197, 94, 0.15), transparent 60%), var(--card-bg);
    }
    .proof-grid .card:nth-child(1)::after {
      background: linear-gradient(180deg, #22c55e, #0ea5e9);
    }

    /* Card 2 Colors */
    .proof-grid .card:nth-child(2) {
      background: radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.15), transparent 60%), var(--card-bg);
    }
    .proof-grid .card:nth-child(2)::after {
      background: linear-gradient(180deg, #38bdf8, #6366f1);
    }

    /* Card 3 Colors */
    .proof-grid .card:nth-child(3) {
      background: radial-gradient(circle at 10% 0%, rgba(249, 115, 22, 0.15), transparent 60%), var(--card-bg);
    }
    .proof-grid .card:nth-child(3)::after {
      background: linear-gradient(180deg, #f97316, #f472d0);
    }

    .proof-grid .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 32px rgba(15, 23, 42, 0.6);
      border-color: rgba(248, 250, 252, 0.18);
      background-color: rgba(15, 23, 42, 0.8);
    }

    /* Floating Animation */
    @keyframes floatY {
      0% { transform: translateY(0); }
      100% { transform: translateY(-8px); }
    }

    .proof-grid .card {
      animation: floatY 6s ease-in-out infinite alternate;
    }

    .proof-grid .card:nth-child(1) { animation-delay: 0s; }
    .proof-grid .card:nth-child(2) { animation-delay: 1.5s; }
    .proof-grid .card:nth-child(3) { animation-delay: 3s; }

    .proof-grid .card:hover {
      animation-play-state: paused;
    }

    /* RUNNER PILL ANIMATION */
    .runner-pill {
      margin-top: 32px;
      background: rgba(30, 41, 59, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 16px 20px;
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      width: 100%;
      max-width: 480px;
    }

    .runner-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
      font-size: 12px;
      letter-spacing: 0.05em;
    }

    .runner-label {
      text-transform: uppercase;
      color: var(--text-muted);
      font-weight: 600;
    }

    .runner-value {
      color: var(--text-strong);
      font-weight: 700;
    }

    .runner-track {
      position: relative;
      height: 6px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 999px;
      overflow: visible;
    }

    .runner-fill {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 68%;
      background: linear-gradient(90deg, #f472d0, #41d6e8);
      border-radius: 999px;
      box-shadow: 0 0 12px rgba(244, 114, 208, 0.4);
    }

    .runner-figure {
      position: absolute;
      top: -26px;
      left: 0;
      width: 20px;
      height: 30px;
      animation: run-across 6s ease-in-out infinite;
      transform-origin: bottom center;
    }

    .runner-figure .head {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 6px;
      height: 6px;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
      z-index: 2;
    }

    .runner-figure .body {
      position: absolute;
      top: 6px;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 12px;
      background: linear-gradient(180deg, #f472d0, #41d6e8);
      border-radius: 2px;
      z-index: 1;
    }

    .runner-figure .arm,
    .runner-figure .leg {
      position: absolute;
      width: 2px;
      height: 10px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 1px;
      transform-origin: top center;
    }

    .runner-figure .arm {
      top: 7px;
      left: 50%;
    }

    .runner-figure .leg {
      top: 16px;
      left: 50%;
    }

    .runner-figure .arm.left { animation: swing-arm-l 0.5s infinite ease-in-out alternate; }
    .runner-figure .arm.right { animation: swing-arm-r 0.5s infinite ease-in-out alternate; }
    .runner-figure .leg.left { animation: swing-leg-l 0.5s infinite ease-in-out alternate; }
    .runner-figure .leg.right { animation: swing-leg-r 0.5s infinite ease-in-out alternate; }

    @keyframes run-across {
      0% { left: 0%; }
      50% { left: 68%; }
      100% { left: 0%; }
    }

    @keyframes swing-arm-l {
      from { transform: rotate(35deg); }
      to { transform: rotate(-35deg); }
    }

    @keyframes swing-arm-r {
      from { transform: rotate(-35deg); }
      to { transform: rotate(35deg); }
    }

    @keyframes swing-leg-l {
      from { transform: rotate(-45deg); }
      to { transform: rotate(45deg); }
    }

    @keyframes swing-leg-r {
      from { transform: rotate(45deg); }
      to { transform: rotate(-45deg); }
    }

    /* MOON ANIMATION */
    .moon-wrapper {
      position: relative;
      width: clamp(160px, 40vw, 260px);
      height: clamp(160px, 40vw, 260px);
      margin: 0 auto;
    }

    .moon {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: radial-gradient(circle at 32% 32%, #d9d9d9 0%, #c7cbd0 55%, #a9afb6 100%);
      box-shadow: 0 0 32px rgba(255, 255, 255, 0.14);
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .moon-crater {
      position: absolute;
      background: rgba(0, 0, 0, 0.16);
      border-radius: 50%;
      mix-blend-mode: soft-light;
      box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.08);
    }
    .crater-1 { width: 20%; height: 20%; top: 15%; left: 25%; }
    .crater-2 { width: 10%; height: 10%; top: 55%; left: 75%; }
    .crater-3 { width: 7%; height: 7%; top: 35%; left: 60%; }

    .moon-fill {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: calc(var(--moon-progress, 68) * 1%);
      background: radial-gradient(circle at 32% 32%, #fff3c1 0%, #ffd97a 55%, #f6c200 100%);
      transition: height 0.9s cubic-bezier(0.25, 0.9, 0.3, 1);
      box-shadow: inset 0 12px 18px rgba(0, 0, 0, 0.08);
      pointer-events: none;
    }

    .moon-fill::after {
      content: "";
      position: absolute;
      left: -12%;
      width: 124%;
      height: clamp(14px, 8%, 28px);
      top: 0;
      transform: translateY(-45%);
      background: radial-gradient(80% 100% at 50% 100%, rgba(255, 255, 255, 0.85) 55%, rgba(255, 255, 255, 0) 80%);
      filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.08));
      opacity: 0.92;
    }

    .moon-label {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 24px;
      font-weight: 800;
      color: #fff;
      text-shadow: 0 2px 10px rgba(0,0,0,0.5);
      z-index: 10;
    }

    .moon-shadow {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: radial-gradient(120% 110% at 70% 40%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.12) 75%, rgba(0, 0, 0, 0.22) 100%);
      mix-blend-mode: soft-light;
      pointer-events: none;
      z-index: 3;
    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
      }

      .card-grid-3,
      .reviews-grid,
      .contacts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .league-bar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .desktop-nav {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .hero-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-visual {
        justify-content: flex-start;
      }

      .card-grid-3,
      .reviews-grid,
      .stats-grid,
      .contacts-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .league-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }
