/* =========================================
   LAS VEGAS SOCCER LEAGUE — Core Styles
   Palette sampled from the league crest:
     orange  #FC8C00   (mountains)
     maroon  #610200   ("SOCCER LEAGUE" wordmark)
     sky     #70A7CE / #B8D3E6
     green   #1F7616   (star)
     pink    #E50152   (star)
   Orange is a FILL color, not a text color — it only reaches
   2.4:1 on white. Text accents use maroon; orange carries
   buttons, bars, and blocks with black text on top.
   ========================================= */

:root {
  --orange:      #FC8C00;
  --orange-soft: #FFF1DC;
  --orange-line: #F6C88A;
  --maroon:      #610200;
  --maroon-soft: #FBEDEC;
  --sky:         #70A7CE;
  --sky-soft:    #DCEAF4;
  --green:       #1F7616;
  --green-soft:  #E6F2E4;
  --pink:        #E50152;

  --ink:       #0B0B0C;
  --bg:        #FFFFFF;
  --bg-alt:    #F6F7F9;
  --surface:   #FFFFFF;
  --surface-2: #F1F3F5;
  --line:      #E3E6EA;

  --text:      #14161A;
  --text-dim:  #4C555F;
  --text-mute: #79828C;

  --radius:    14px;
  --radius-sm: 8px;
  --maxw:      1180px;

  --font-head: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow:    0 14px 40px rgba(11,11,12,.09);
  --shadow-sm: 0 4px 14px rgba(11,11,12,.06);
  --ease:      cubic-bezier(.22,.61,.36,1);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Short pages (Register) used to leave white below the footer on tall
     screens. Push the footer down instead. */
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
body > header,
body > section { flex-shrink: 0; }
body > .footer { margin-top: auto; }

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  letter-spacing: .015em;
  line-height: 1.02;
  margin: 0 0 .4em;
  text-transform: uppercase;
  color: var(--ink);
}

h1 { font-size: clamp(2.7rem, 7.6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 5vw, 3.3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }

p { margin: 0 0 1rem; color: var(--text-dim); }

/* Text accent — maroon, echoing the crest wordmark */
.accent       { color: var(--maroon); }
.accent-green { color: var(--green); }

/* Orange highlight block — black text on orange, like the crest's
   black silhouettes over the orange mountains */
.hl {
  display: inline-block;
  background: var(--orange);
  color: var(--ink);
  /* top padding keeps accented capitals (REGÍSTRALO) inside the block */
  padding: .05em .22em .06em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

::selection { background: var(--orange); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--maroon);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===================== LAYOUT ===================== */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.section { padding: clamp(60px, 8.5vw, 112px) 0; }

.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head { max-width: 720px; margin-bottom: 50px; }

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 3px;
  background: var(--orange);
  vertical-align: middle;
  margin-right: 10px;
}

.section-head--center .eyebrow::before { display: none; }

.lede { font-size: 1.06rem; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease),
              color .18s var(--ease), border-color .18s var(--ease),
              box-shadow .18s var(--ease);
}

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

.btn--primary {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(252,140,0,.28);
}
.btn--primary:hover { background: #FF9C1F; box-shadow: 0 12px 30px rgba(252,140,0,.36); }

.btn--green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 22px rgba(31,118,22,.22);
}
.btn--green:hover { background: #248C1B; }

.btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { background: var(--ink); color: #fff; }

.btn--lg { padding: 18px 40px; font-size: .88rem; }
.btn--block { display: flex; width: 100%; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 24px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease),
              padding .25s var(--ease), box-shadow .25s var(--ease);
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  padding: 8px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: width .25s var(--ease), height .25s var(--ease);
}

.navbar.scrolled .logo-mark { width: 40px; height: 40px; }

.logo-word { display: flex; flex-direction: column; line-height: 1; }

.logo-word .l1 {
  font-family: var(--font-head);
  font-size: 1.32rem;
  letter-spacing: .02em;
  color: var(--ink);
}

.logo-word .l2 {
  font-family: var(--font-head);
  font-size: .82rem;
  letter-spacing: .13em;
  color: var(--maroon);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-links a {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color .18s var(--ease);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: var(--ink) !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  transition: background .18s var(--ease);
}
.nav-cta:hover { background: #FF9C1F; }
.nav-cta::after { display: none !important; }

.lang-toggle {
  display: flex;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  flex-shrink: 0;
  background: #fff;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 5px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.lang-btn.active { background: var(--ink); color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s var(--ease);
}
.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav a {
  font-family: var(--font-head);
  font-size: 2rem;
  letter-spacing: .03em;
  color: var(--text-dim);
  padding: 9px 20px;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--maroon); }

.mobile-nav .nav-cta {
  font-family: var(--font-body);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 18px;
  padding: 14px 32px !important;
  color: var(--ink) !important;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 250px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sky-soft) 0%, #F2F7FB 42%, #FFFFFF 78%);
}

.hero .wrap { position: relative; z-index: 3; }
.hero-inner { max-width: 900px; }
.hero h1 { margin-bottom: 22px; }

.hero-sub {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  max-width: 600px;
  margin-bottom: 32px;
  color: var(--text-dim);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-note {
  margin-top: 26px;
  font-size: .86rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 9px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(31,118,22,.55);
  animation: pulse 2.1s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  70%  { box-shadow: 0 0 0 12px rgba(31,118,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,118,22,0); }
}

/* Orange mountain range + black skyline, lifted from the crest */
.hero-scape {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}
.hero-scape svg { width: 100%; height: auto; display: block; }
.hero-scape .mtn-back  { fill: #FFC176; }
.hero-scape .mtn-front { fill: var(--orange); }
.hero-scape .city      { fill: var(--ink); }
.hero-scape .beam      { fill: #FFFFFF; opacity: .42; }

/* High Roller — stroked, so it reads as a wheel rather than a disc */
.hero-scape .wheel-legs,
.hero-scape .wheel-rim,
.hero-scape .wheel-spokes { fill: none; stroke: var(--ink); }
.hero-scape .wheel-legs   { stroke-width: 8; stroke-linecap: round; }
.hero-scape .wheel-rim    { stroke-width: 9; }
.hero-scape .wheel-spokes { stroke-width: 2.5; }

/* ===================== PAGE HEADER (inner pages) ===================== */
.page-head {
  position: relative;
  padding: 150px 0 60px;
  background: linear-gradient(180deg, var(--sky-soft) 0%, #FFFFFF 92%);
  border-bottom: 3px solid var(--orange);
}

.page-head h1 { font-size: clamp(2.3rem, 6.2vw, 4.2rem); margin-bottom: 16px; }
.page-head p  { max-width: 640px; font-size: 1.04rem; margin: 0; }

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: var(--ink);
  color: #fff;
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.stat {
  padding: 36px 22px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.14);
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.6vw, 3.2rem);
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-top: 10px;
}

/* ===================== CARDS / GRIDS ===================== */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .22s var(--ease), border-color .22s var(--ease),
              box-shadow .22s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--orange-line);
  box-shadow: var(--shadow);
}

.section--alt .card { background: #fff; }

.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }

.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--orange-soft);
  border: 1px solid var(--orange-line);
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.card-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}

/* Division cards — the three star colors from the crest */
.division { position: relative; overflow: hidden; }

.division::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--orange);
}
.division--green::before { background: var(--green); }
.division--pink::before  { background: var(--pink); }

.division-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text-dim);
}

.tag--orange { background: var(--orange-soft); border-color: var(--orange-line); color: #8A4E00; }
.tag--green  { background: var(--green-soft);  border-color: #B9DDB4;             color: var(--green); }
.tag--pink   { background: #FDE7EE;            border-color: #F6B9CC;             color: #B00140; }

/* ===================== STEPS ===================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p  { font-size: .93rem; margin: 0; }

/* ===================== TABLE ===================== */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

thead th {
  background: var(--ink);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  padding: 15px 20px;
  white-space: nowrap;
}

tbody td {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  font-size: .95rem;
  color: var(--text-dim);
}

tbody tr:nth-child(even) td { background: #FAFBFC; }
tbody tr:hover td { background: var(--orange-soft); }

tbody td:first-child { color: var(--ink); font-weight: 700; }

/* ===================== FEE CARDS ===================== */
.fee { text-align: center; position: relative; }

.fee--featured {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.fee-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--ink);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.fee-price {
  font-family: var(--font-head);
  font-size: 3.1rem;
  color: var(--ink);
  line-height: 1;
  margin: 6px 0 4px;
}
.fee-price span { font-size: 1rem; color: var(--text-mute); }

.fee-list { margin-top: 20px; text-align: left; }

/* ---- Costos page: one card per format, fees itemised ---- */
.cost-card { text-align: left; }
.cost-card .cost-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.cost-card h3 { font-family: var(--font-head); font-size: 2rem; letter-spacing: .01em; margin: 0; }
.cost-when { font-size: .95rem; color: var(--text-dim); margin: 0 0 6px; }
.cost-rows { list-style: none; padding: 0; margin: 22px 0 0; }
.cost-rows li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.cost-rows li:first-child { border-top: 0; padding-top: 4px; }
.cost-label  { color: var(--text-dim); font-size: .97rem; }
.cost-amount { font-family: var(--font-head); font-size: 1.9rem; line-height: 1; color: var(--ink); white-space: nowrap; }
.cost-amount span { font-family: var(--font-body); font-size: .8rem; font-weight: 600; color: var(--text-dim); }

/* ---- Contact strip ---- */
.contact-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.contact-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  background: var(--surface); border: 2px solid var(--ink); border-radius: 999px;
  font-weight: 600; color: var(--ink); text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.contact-chip:hover { background: var(--ink); color: #fff; }
.contact-chip svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 700px) {
  .cost-amount { font-size: 1.6rem; }
  .contact-chip { width: 100%; justify-content: center; }
}
.fee-list li {
  font-size: .92rem;
  color: var(--text-dim);
  padding: 9px 0 9px 26px;
  position: relative;
  border-top: 1px solid var(--line);
}
.fee-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ===================== FORM EMBED ===================== */
.form-single { max-width: 800px; margin: 0 auto; }

.form-cta {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange);
  border-radius: var(--radius);
  padding: 48px 34px 40px;
  box-shadow: var(--shadow);
}

.form-cta-crest {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 18px;
  mix-blend-mode: multiply;
}

.form-cta h2 { margin-bottom: .35em; }
.form-cta p  { max-width: 460px; margin: 0 auto 26px; }

.form-cta-note {
  margin: 24px auto 0 !important;
  font-size: .88rem;
  color: var(--text-dim);
}
.form-cta-note a { color: var(--maroon); font-weight: 600; text-decoration: underline; }

.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow);
}

.form-embed {
  width: 100%;
  min-height: 1250px;
  border: 0;
  border-radius: var(--radius-sm);
  background: #fff;
  display: block;
}

.form-fallback {
  margin-top: 16px;
  padding: 16px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text-dim);
  text-align: center;
}
.form-fallback a { color: var(--maroon); font-weight: 700; text-decoration: underline; }

.register-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: start;
}

.checklist-panel {
  position: sticky;
  top: 100px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.checklist-panel h3 { font-size: 1.18rem; margin-bottom: 6px; }

.checklist { margin-top: 16px; }
.checklist li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: .92rem;
  color: var(--text-dim);
  border-top: 1px solid var(--line);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 15px;
  width: 15px; height: 15px;
  border: 2px solid var(--orange);
  border-radius: 4px;
  background: #fff;
}

/* ===================== FAQ ===================== */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  transition: color .18s var(--ease);
}
.faq-q:hover { color: var(--maroon); }

.faq-icon {
  flex-shrink: 0;
  width: 27px; height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid var(--orange-line);
  background: var(--orange-soft);
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  color: #8A4E00;
  transition: transform .25s var(--ease), background .2s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); color: var(--ink); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s var(--ease);
}
.faq-a p { padding-bottom: 22px; margin: 0; font-size: .96rem; }

/* ===================== CONTACT ===================== */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  transition: border-color .2s var(--ease), transform .2s var(--ease),
              box-shadow .2s var(--ease);
}
.contact-card:hover {
  border-color: var(--orange-line);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--orange-soft);
  border: 1px solid var(--orange-line);
  font-size: 1.2rem;
}

.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p  { margin: 0; font-size: .94rem; }
.contact-card a  { color: var(--maroon); font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }

/* ===================== CTA BAND ===================== */
.cta-band {
  background: var(--ink);
  text-align: center;
}

.cta-band h2 { max-width: 780px; margin: 0 auto .6em; color: #fff; }
.cta-band h2 .accent { color: var(--orange); }
.cta-band p  { max-width: 560px; margin: 0 auto 30px; color: rgba(255,255,255,.76); }

/* ===================== NOTICE ===================== */
.notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--orange-soft);
  border: 1px solid var(--orange-line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  font-size: .93rem;
  color: #5A4326;
}
.notice strong { color: var(--maroon); }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.8);
  padding: 60px 0 28px;
  border-top: 5px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 42px;
}

/* Trimmed footer while the site is Home + Rules + Costos + Register.
   Drop the --slim class from the markup as more pages come back. */
.footer-grid--slim { grid-template-columns: 1.6fr 1fr 1.3fr; }

.footer h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.footer .logo-mark {
  width: 62px; height: 62px;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
  mix-blend-mode: normal;
}
.footer .logo-word .l1 { color: #fff; }
.footer .logo-word .l2 { color: var(--orange); }

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .93rem;
  color: rgba(255,255,255,.72);
  transition: color .18s var(--ease);
}
.footer-links a:hover { color: var(--orange); }

.footer-brand p {
  font-size: .93rem;
  max-width: 300px;
  margin-top: 14px;
  color: rgba(255,255,255,.62);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* ===================== REVEAL ANIMATION ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .register-layout { grid-template-columns: 1fr; }
  .checklist-panel { position: static; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid--3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .hero { padding-bottom: 190px; }
}

@media (max-width: 620px) {
  .wrap { padding: 0 18px; }
  .grid--2 { grid-template-columns: 1fr; }
  .steps   { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-actions .btn { width: 100%; }
  .page-head { padding: 128px 0 50px; }
  .form-embed { min-height: 1500px; }
  .logo-word .l1 { font-size: 1.1rem; }
  .logo-word .l2 { font-size: .68rem; }
  .logo-mark { width: 40px; height: 40px; }
  .hero { padding-bottom: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================
   RULES PAGE — the ten rules, poster-style
   Mirrors the printed REGLAS sheet: line-art
   icon, orange rule bar, condensed number+title.
   ========================================= */
.wrap--narrow { max-width: 880px; }

.rules-section { padding-top: 56px; }

.rules-panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 38px;
  overflow: hidden;
}

/* the orange/green corner flashes from the printed sheet */
.rules-panel::before,
.rules-panel::after {
  content: "";
  position: absolute;
  width: 88px;
  height: 88px;
  pointer-events: none;
}
.rules-panel::before {
  top: -44px; left: -44px;
  background: var(--orange);
  transform: rotate(45deg);
}
.rules-panel::after {
  bottom: -44px; right: -44px;
  background: var(--green);
  transform: rotate(45deg);
}

.rule {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: background .22s var(--ease);
}
.rule:last-of-type { border-bottom: 0; }

.rule:hover { background: linear-gradient(90deg, var(--orange-soft), transparent 70%); }

.rule-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--surface);
  transition: background .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .22s var(--ease);
}
.rule-icon svg { width: 34px; height: 34px; }

.rule:hover .rule-icon {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--orange);
  transform: scale(1.06);
}

.rule-body {
  border-left: 3px solid var(--orange);
  padding-left: 22px;
}

.rule-title {
  font-family: var(--font-head);
  font-size: 1.75rem;
  letter-spacing: .5px;
  line-height: 1.1;
  margin: 0 0 6px;
  color: var(--ink);
  text-transform: uppercase;
}

.rule-num { color: var(--orange); }

.rule-body p {
  margin: 0;
  color: var(--text-dim);
  font-size: .99rem;
  line-height: 1.6;
}

.rules-respect {
  margin-top: 26px;
  padding: 20px 24px;
  text-align: center;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  border-bottom: 4px solid var(--orange);
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.rules-respect strong { font-weight: 400; color: #fff; }

@media (max-width: 720px) {
  .rules-panel { padding: 4px 20px; }
  .rule { grid-template-columns: 56px 1fr; gap: 16px; padding: 22px 0; }
  .rule-icon { width: 52px; height: 52px; border-width: 2px; }
  .rule-icon svg { width: 26px; height: 26px; }
  .rule-body { padding-left: 16px; }
  .rule-title { font-size: 1.45rem; }
  .rules-respect { font-size: 1.1rem; padding: 16px 18px; }
}
