 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dim: #7A5E1E;
    --black: #080706;
    --dark: #0E0D0B;
    --mid: #1A1814;
    --text: #E8E0D0;
    --muted: #8A7F6A;
    --red: #C0392B;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.18s ease;
  }

  /* Grain overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9000;
    opacity: 0.35;
  }

  /* NAV */
   /* BOTON HAMBURGUESA (OCULTO EN DESKTOP) */
.menu-toggle{
    display:none;
    font-size:28px;
    color:var(--gold);
    cursor:pointer;
}

   
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 6px;
    color: var(--gold);
    text-decoration: none;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: none;
    transition: all 0.3s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--gold); color: var(--black); }

  /* HERO */
  .hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 30% 80%, rgba(192,57,43,0.06) 0%, transparent 50%),
      var(--black);
  }

  .hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .hero-lines::before, .hero-lines::after {
    content: '';
    position: absolute;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.15), transparent);
    width: 1px;
    top: 0; bottom: 0;
    animation: linePulse 4s ease-in-out infinite;
  }
  .hero-lines::before { left: 33%; animation-delay: 0s; }
  .hero-lines::after  { left: 66%; animation-delay: 2s; }

  @keyframes linePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }

  .hero-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(120px, 20vw, 280px);
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201,168,76,0.2);
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    letter-spacing: -4px;
    animation: yearReveal 2s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  @keyframes yearReveal {
    from { opacity: 0; transform: translateY(-50%) translateX(60px); }
    to   { opacity: 1; transform: translateY(-50%) translateX(0); }
  }

  .hero-tag {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s ease both;
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 9vw, 120px);
    line-height: 0.9;
    letter-spacing: 2px;
    color: var(--text);
    opacity: 0;
    animation: fadeUp 0.8s 0.7s ease both;
  }
  .hero-title span { color: var(--gold); }
  .hero-sub {
    margin-top: 24px;
    font-size: 18px;
    font-style: italic;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s ease both;
  }
  .hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s 1.1s ease both;
  }
  .btn-primary {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--black);
    border: none;
    cursor: none;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: inline-block;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }

  .btn-ghost {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 40px;
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    background: transparent;
    cursor: none;
    text-decoration: none;
    transition: all 0.3s;
  }
  .btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.8s 1.4s ease both;
  }
  .hero-scroll span {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--muted);
    writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* COUNTER BAR */
  .counter-bar {
    background: var(--mid);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 24px 48px;
    display: flex;
    justify-content: center;
    gap: 80px;
    overflow: hidden;
  }
  .counter-item {
    text-align: center; 
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  .counter-item.visible { opacity: 1; transform: translateY(0); }
  .counter-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: var(--gold);
    line-height: 1;
  }
  .counter-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* MOMENT SECTION */
  .section { padding: 120px 48px; }
  .section-tag {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: 1px;
  }

  .moment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .moment-text {}
  .moment-copy {
    font-size: 20px;
    line-height: 1.7;
    color: var(--muted);
    margin-top: 32px;
    font-style: italic;
  }
  .moment-copy strong {
    color: var(--text);
    font-style: normal;
    font-weight: 600;
  }
  .moment-visual {
    position: relative;
  }
  .moment-card {
    background: var(--mid);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 48px;
    position: relative;
    overflow: hidden;
  }
  .moment-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 340deg, rgba(201,168,76,0.15) 350deg, transparent 360deg);
    animation: rotateBorder 8s linear infinite;
  }
  @keyframes rotateBorder {
    to { transform: rotate(360deg); }
  }
  .moment-card-inner {
    position: relative;
    z-index: 1;
  }
  .moment-card-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201,168,76,0.3);
    line-height: 1;
  }
  .moment-card-text {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
  }
  .moment-card-desc {
    font-size: 18px;
    font-style: italic;
    color: var(--muted);
    margin-top: 16px;
    line-height: 1.5;
  }

  /* FEATURES */
  .features {
    padding: 80px 48px;
    background: var(--mid);
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.1);
    max-width: 1200px;
    margin: 48px auto 0;
  }
  .feature-item {
    background: var(--mid);
    padding: 40px 32px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .feature-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
  }
  .feature-item:hover { background: rgba(201,168,76,0.05); }
  .feature-item:hover::after { width: 100%; }
  .feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
  }
  .feature-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 8px;
  }
  .feature-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    font-style: italic;
  }

  /* LEGENDS */
  .legends { padding: 120px 48px; }
  .legends-title { text-align: center; margin-bottom: 80px; }
  .legends-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
  }
  .legend-card {
    background: var(--mid);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
  }
  .legend-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,168,76,0.5);
  }
  .legend-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .legend-card:hover::before { opacity: 1; }
  .legend-num {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold-dim);
    margin-bottom: 24px;
  }
  .legend-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    letter-spacing: 2px;
    color: var(--text);
    line-height: 1;
  }
  .legend-role {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 8px;
  }
  .legend-quote {
    font-size: 16px;
    font-style: italic;
    color: var(--muted);
    margin-top: 24px;
    line-height: 1.6;
    border-left: 2px solid rgba(201,168,76,0.3);
    padding-left: 16px;
  }
  .legend-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px; height: 48px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  /* COMING SOON CARDS */
  .soon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    max-width: 1000px;
    margin: 48px auto 0;
  }
  .soon-card {
    aspect-ratio: 2/3;
    background: var(--mid);
    border: 1px solid rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .soon-card::before {
    content: '?';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(201,168,76,0.1);
  }
  .soon-card:hover::before { color: rgba(201,168,76,0.3); }
  .soon-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(201,168,76,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .soon-card:hover .soon-overlay { opacity: 1; }

  /* CERTIFICATION */
  .cert {
    padding: 120px 48px;
    background: var(--mid);
    text-align: center;
  }
  .cert-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 64px auto 0;
    position: relative;
  }
  .cert-steps::before {
    content: '';
    position: absolute;
    top: 32px; left: 16%; right: 16%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  }
  .cert-step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
  }
  .cert-step-icon {
    width: 64px; height: 64px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    background: var(--mid);
    position: relative;
    z-index: 1;
    transition: border-color 0.3s, background 0.3s;
  }
  .cert-step:hover .cert-step-icon {
    border-color: var(--gold);
    background: rgba(201,168,76,0.1);
  }
  .cert-step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 8px;
  }
  .cert-step-desc {
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
    line-height: 1.5;
  }

  /* CTA */
  .cta-section {
    padding: 160px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-bg {
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  }
  .cta-section .section-title { font-size: clamp(56px, 8vw, 120px); }
  .cta-section .section-title span { color: var(--gold); }
  .cta-sub {
    font-size: 18px;
    font-style: italic;
    color: var(--muted);
    margin: 24px auto;
    max-width: 500px;
    line-height: 1.6;
  }
  .cta-warning {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    margin-top: 40px;
  }
  .cta-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  /* MARQUEE */
  .marquee-wrap {
    overflow: hidden;
    background: var(--gold);
    padding: 14px 0;
  }
  .marquee-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: marquee 18s linear infinite;
  }
  .marquee-track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--black);
    flex-shrink: 0;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* FOOTER */
  footer {
    padding: 60px 48px 40px;
    border-top: 1px solid rgba(201,168,76,0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    letter-spacing: 6px;
    color: var(--gold);
  }
  .footer-copy {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--muted);
    text-align: right;
  }

  /* Reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Floating particles */
  .particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
  }
  .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float var(--dur) var(--delay) ease-in-out infinite;
    left: var(--x);
    top: var(--y);
  }
  @keyframes float {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: 0.6; transform: translateY(-10px) scale(1); }
    90% { opacity: 0.2; transform: translateY(-80px) scale(0.5); }
  }

  @media (max-width: 768px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    .hero { padding: 0 24px 60px; }
    .hero-year { font-size: 120px; right: -10px; }
    .section { padding: 80px 24px; }
    .moment-grid { grid-template-columns: 1fr; gap: 48px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .legends-grid { grid-template-columns: 1fr; }
    .counter-bar { gap: 32px; flex-wrap: wrap; }
    .soon-grid { grid-template-columns: repeat(3, 1fr); }
    .cert-steps { flex-direction: column; gap: 32px; }
    .cert-steps::before { display: none; }
    footer { flex-direction: column; gap: 24px; }
    .footer-copy { text-align: left; }
  }
