:root {
  --page: #f5f7fb;
  --surface: #ffffff;
  --soft: #edf4fb;
  --ink: #162033;
  --muted: #5f6f86;
  --line: #d9e3ee;
  --blue: #1267cf;
  --blue-deep: #0b4c9b;
  --orange: #f18b22;
  --red: #db3150;
  --green: #168a67;
  --dark: #111a2c;
  --shadow: 0 18px 42px rgba(17, 26, 44, 0.12);
  --radius: 8px;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
}

main,
section,
.wrap,
.hero,
.hero-copy,
.hero-visual,
.hero-card,
.panel,
.card,
.media-card,
.contact-card {
  min-width: 0;
  max-width: 100%;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

a,
button {
  font: inherit;
}

a {
  color: inherit;
}

p,
li {
  color: var(--muted);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
p,
li {
  margin-top: 0;
  overflow-wrap: anywhere;
}

figure {
  margin: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 6vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0;
}

h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--blue);
  color: #ffffff;
  font-weight: 900;
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 1.08rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--soft);
  color: var(--blue-deep);
}

.nav .nav-cta {
  margin-left: 5px;
  background: var(--blue);
  color: #ffffff;
}

.nav .nav-cta:hover,
.nav .nav-cta[aria-current="page"] {
  background: var(--blue-deep);
  color: #ffffff;
}

.hero-band {
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 42px;
  align-items: center;
  padding: 56px 0 44px;
}

.hero.compact {
  min-height: 380px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow,
.tag {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 11px;
  background: #ffffff;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.eyebrow {
  margin-bottom: 18px;
  border: 1px solid var(--line);
}

.eyebrow::before {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--green);
  content: "";
}

.lead {
  max-width: 720px;
  margin-bottom: 24px;
  color: #3c4d66;
  font-size: 1.1rem;
}

.hero-actions,
.action-row,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 6px;
  padding: 0 16px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.button:hover {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
}

.button.secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--blue-deep);
}

.button.secondary:hover {
  background: var(--soft);
}

.button.dark {
  border-color: var(--dark);
  background: var(--dark);
}

.button.dark:hover {
  background: #0a1220;
}

.hero-card,
.panel,
.card,
.media-card,
.stat,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.hero-card {
  width: 100%;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  max-height: 390px;
  border-radius: 6px;
  object-fit: cover;
}

.hero-card .caption {
  margin: 12px 0 0;
  font-weight: 750;
}

.section {
  padding: 66px 0;
  scroll-margin-top: 86px;
}

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

.section-head {
  max-width: 800px;
  margin-bottom: 24px;
}

.section-head p {
  margin-bottom: 0;
}

.kicker {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: 16px;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.card p,
.media-card p,
.contact-card p {
  margin-bottom: 0;
}

.card img {
  width: 100%;
  height: 210px;
  border-radius: 6px;
  object-fit: cover;
}

.card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 900;
}

.icon.orange {
  background: var(--orange);
}

.icon.red {
  background: var(--red);
}

.icon.green {
  background: var(--green);
}

.icon.dark {
  background: var(--dark);
}

.media-card {
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.media-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.video {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0e1727;
}

.video.portrait {
  aspect-ratio: 9 / 16;
}

.video iframe,
.embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0e1727;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

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

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
}

th {
  background: var(--soft);
  color: var(--ink);
  font-weight: 900;
}

tr:last-child td {
  border-bottom: 0;
}

.tag {
  min-height: 26px;
  background: var(--soft);
  color: var(--muted);
}

.tag.blue {
  background: rgba(18, 103, 207, 0.1);
  color: var(--blue-deep);
}

.tag.orange {
  background: rgba(241, 139, 34, 0.14);
  color: #8c4a08;
}

.tag.red {
  background: rgba(219, 49, 80, 0.12);
  color: #8c2032;
}

.tag.green {
  background: rgba(22, 138, 103, 0.12);
  color: #0e6048;
}

.card-specs {
  display: grid;
  gap: 6px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.card-specs div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.card-specs dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-specs dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px;
}

.stat strong {
  font-size: 1.7rem;
}

.stat span {
  color: var(--muted);
  font-weight: 750;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.timeline-item strong {
  color: var(--blue-deep);
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--dark);
  color: #ffffff;
}

.footer-inner {
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
}

.footer p {
  margin-bottom: 0;
  color: #c7d2e2;
}

.footer a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.vip-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.vip-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
}

.vip-panel-head {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.season-select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 800;
}

.vip-list {
  max-height: 640px;
  display: grid;
  gap: 10px;
  padding: 12px;
  overflow: auto;
}

.vip-button {
  width: 100%;
  min-height: 112px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #ffffff;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.vip-button:hover,
.vip-button.is-active {
  border-color: var(--blue);
  box-shadow: 0 12px 26px rgba(18, 103, 207, 0.14);
}

.vip-stage {
  display: grid;
  gap: 14px;
}

.vip-hero {
  min-height: 176px;
  display: grid;
  align-content: end;
  gap: 8px;
  border-radius: var(--radius);
  padding: 22px;
  background: var(--dark);
  color: #ffffff;
}

.vip-hero h2 {
  margin-bottom: 0;
  color: #ffffff;
}

.vip-hero p {
  margin-bottom: 0;
  color: #d9e5f4;
}

.vip-profile-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
}

.vip-card-figure img {
  max-height: 420px;
  object-fit: contain;
  background: var(--soft);
}

.vip-card-figure .embed {
  border: 0;
}

.section.compact-intro {
  padding-bottom: 12px;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(220px, 0.6fr));
  gap: 16px;
}

.profile-summary {
  min-height: 220px;
}

.profile-stack {
  display: grid;
  gap: 16px;
}

.profile-card-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: var(--soft);
}

.profile-actions {
  margin-top: 22px;
}

.vip-link-grid .vip-link-card {
  min-height: 245px;
}

.vip-link-card {
  align-content: start;
}

.vip-link-card .button {
  margin-top: auto;
}

.association-link-card {
  min-height: 255px;
}

.association-link-card .button {
  margin-top: auto;
}

.season-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
}

.season-block + .season-block {
  margin-top: 16px;
}

.season-summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

.season-summary::-webkit-details-marker {
  display: none;
}

.season-summary h2,
.season-summary p {
  margin: 0;
}

.season-summary::after {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue-deep);
  content: "+";
  font-weight: 950;
}

.season-block[open] .season-summary::after {
  content: "−";
}

.season-content {
  padding: 0 18px 18px;
}

.vip-directory-card {
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

.vip-directory-card img {
  width: 100%;
  height: 165px;
  border-radius: 0;
  object-fit: cover;
  object-position: center 24%;
  background: var(--soft);
}

.vip-directory-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.vip-directory-body .button {
  margin-top: 8px;
}

.reto-stats {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.reto-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reto-step {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #ffffff;
}

.reto-step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.1rem;
}

.attribute-infographic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.score-card,
.attribute-card,
.dream-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #ffffff;
}

.score-card {
  grid-row: span 2;
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 190px;
  background: var(--dark);
  color: #ffffff;
}

.score-card span {
  color: #b8c7d8;
  font-weight: 900;
  text-transform: uppercase;
}

.score-card strong {
  color: #ffffff;
  font-size: 4rem;
  line-height: 1;
}

.score-card p {
  margin-bottom: 0;
  color: #d9e5f4;
}

.attribute-card h3 {
  margin-bottom: 12px;
}

.attribute-pills {
  display: grid;
  gap: 8px;
}

.pill {
  min-height: 34px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 11px;
  color: #ffffff;
  font-weight: 900;
}

.pill.blue {
  background: var(--blue);
}

.pill.orange {
  background: var(--orange);
}

.pill.red {
  background: var(--red);
}

.dream-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dream-grid article {
  display: grid;
  gap: 8px;
}

.dream-grid p {
  margin-bottom: 0;
}

.dream-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.dream-list p {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 0;
}

.dream-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.dream-mark.blue {
  background: var(--blue);
}

.dream-mark.orange {
  background: var(--orange);
}

.dream-mark.red {
  background: var(--red);
}

.dream-mark.green {
  background: var(--green);
}

.nexcamp-quick {
  margin-top: -34px;
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.course-card,
.price-card,
.module-card,
.proof-strip article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.course-card {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.price-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.price-card h2 {
  color: var(--blue-deep);
  font-size: 2.5rem;
}

.module-card {
  overflow: hidden;
}

.module-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.module-card div {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-strip article {
  padding: 16px;
}

.proof-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.proof-strip p {
  margin: 0;
}

.founder-section {
  align-items: center;
}

.founder-photo img {
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.letter-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.letter-box p:last-child {
  margin-bottom: 0;
}

.letter-box summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  background: var(--soft);
  color: var(--blue-deep);
  cursor: pointer;
  font-weight: 900;
}

.letter-box details[open] summary {
  margin-bottom: 14px;
}

.team-card img {
  height: 300px;
  object-position: center;
}

.map-frame {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}

.detail-viewer {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.detail-viewer iframe {
  width: 100%;
  height: min(72vh, 720px);
  min-height: 520px;
  display: block;
  border: 0;
}

.button.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.detail-document {
  background: #ffffff;
}

.detail-sheet {
  width: min(960px, calc(100% - 24px));
  margin: 0 auto;
  padding: 24px 0;
}

.detail-sheet h1 {
  width: auto;
  max-width: none;
  font-size: clamp(1.65rem, 4vw, 2.6rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-categories {
  display: grid;
  gap: 22px;
}

.gallery-category {
  display: grid;
  gap: 12px;
}

.gallery-category h3 {
  margin: 0;
  color: var(--ink);
}

.gallery-board {
  grid-auto-rows: minmax(220px, auto);
}

.gallery-slot {
  min-height: 210px;
  display: grid;
  place-items: center;
  border: 1px dashed #b8c7d8;
  border-radius: var(--radius);
  background: #ffffff;
}

.gallery-slot span {
  color: var(--muted);
  font-weight: 850;
}

.gallery-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.gallery-photo img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.news-card {
  min-height: 255px;
}

.news-intro p,
.news-body p {
  margin-bottom: 0;
}

.news-intro strong,
.news-body strong {
  color: var(--ink);
}

.news-card .button {
  margin-top: auto;
}

.news-date {
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 850;
}

.admin-body {
  background: #eef3f9;
}

.admin-shell {
  min-height: 100vh;
  padding: 28px 16px;
}

.admin-login {
  min-height: calc(100vh - 56px);
  display: grid;
  place-items: center;
}

.admin-card {
  width: min(560px, 100%);
  padding: 24px;
}

.admin-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-status {
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #ffffff;
  color: var(--muted);
  font-weight: 750;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.admin-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

.admin-tabs button.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.admin-section {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #ffffff;
}

.admin-section.is-active {
  display: block;
}

.admin-list {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.admin-edit-card {
  padding: 16px;
}

.admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 11px;
  background: #ffffff;
  color: var(--ink);
}

.field textarea {
  resize: vertical;
}

.admin-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.admin-upload-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 10px;
}

.admin-media-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.contact-card {
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.contact-card a {
  color: var(--blue-deep);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .hero,
  .split,
  .vip-layout,
  .vip-profile-hero,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .grid.five,
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-media-preview {
    grid-template-columns: 1fr;
  }

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

  .reto-flow,
  .attribute-infographic,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .vip-list {
    max-height: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-group {
    flex: 0 0 auto;
  }

  .submenu {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 134px;
  }

  .wrap {
    width: 370px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .topbar-inner {
    min-height: 88px;
    flex-wrap: wrap;
    padding: 10px 0 8px;
  }

  .nav {
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    border-top: 1px solid var(--line);
    padding-top: 8px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    min-height: 36px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    background: #ffffff;
    font-size: 0.84rem;
  }

  .nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 0;
    padding: 38px 0;
  }

  .hero-copy {
    width: 320px;
    max-width: 320px;
  }

  h1 {
    width: 320px;
    max-width: 320px;
    font-size: 1.55rem;
    line-height: 1.16;
  }

  .lead {
    width: 320px;
    max-width: 320px;
  }

  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .wrap {
    width: calc(100vw - 20px);
    max-width: 1180px;
  }

  h1 {
    font-size: 1.95rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  h2 {
    overflow-wrap: anywhere;
  }

  .topbar,
  .hero-band,
  .section,
  .footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hero,
  .split {
    display: block;
    width: 100%;
  }

  .hero-card {
    width: 320px;
    max-width: 320px;
    margin-top: 28px;
  }

  .hero-card img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .brand-copy span {
    display: none;
  }

  .hero-actions,
  .action-row {
    display: grid;
  }

  .button {
    width: 100%;
    white-space: normal;
  }

  .grid.five,
  .grid.four,
  .gallery-grid,
  .dream-grid,
  .vip-list,
  .stats {
    grid-template-columns: 1fr;
  }

  .season-summary {
    align-items: flex-start;
  }

  .vip-directory-card img {
    height: 190px;
  }

  .section {
    padding: 44px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}


.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-parent {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 10px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav-parent::after {
  content: "▾";
  margin-left: 6px;
  color: var(--muted);
}

.nav-group:hover .nav-parent,
.nav-group:focus-within .nav-parent {
  background: var(--soft);
  color: var(--blue-deep);
}

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  display: none;
  z-index: 50;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu {
  display: grid;
  gap: 4px;
}

.submenu a {
  justify-content: flex-start;
  width: 100%;
}

.page-editor-meta {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.page-editor-meta strong {
  color: var(--ink);
}

.page-editor-meta span {
  color: var(--muted);
  font-size: 0.9rem;
}


.nav-parent[aria-current="page"] {
  background: var(--soft);
  color: var(--blue-deep);
}


/* Stable dropdown override */
.topbar-inner {
  position: relative;
}

.nav-group {
  position: static;
}

.nav-parent {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav-parent::after {
  content: "▾";
  margin-left: 6px;
  color: var(--muted);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 0;
  display: none;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 8px;
  z-index: 80;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu {
  display: grid;
}

.submenu a {
  justify-content: flex-start;
  min-height: 46px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.submenu a:hover,
.submenu a[aria-current="page"] {
  background: var(--soft);
}

.crop-editor {
  display: grid;
  gap: 12px;
  margin: 14px 0;
}

.crop-frame {
  position: relative;
  width: min(340px, 100%);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  background: var(--soft);
  cursor: crosshair;
}

.crop-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crop-target {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.25);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@media (max-width: 820px) {
  .nav-group {
    position: relative;
  }

  .submenu {
    position: fixed;
    top: 132px;
    left: 10px;
    right: 10px;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 150px);
    overflow: auto;
  }
}


/* JS controlled dropdown */
.nav-group.is-open .submenu {
  display: grid;
}

.nav-group:not(.is-open) .submenu {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .nav-group:hover .submenu,
  .nav-group:focus-within .submenu {
    display: none;
  }

  .nav-group.is-open:hover .submenu,
  .nav-group.is-open:focus-within .submenu {
    display: grid;
  }
}


/* Icon color fix */
.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 900;
}

.icon.blue {
  background: var(--blue);
}


.page-image-crop {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.page-image-crop .crop-frame {
  width: min(420px, 100%);
}

.linked-news-list {
  display: grid;
  gap: 10px;
}


/* NexCamp resources */
.nexcamp-resources {
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.resource-grid {
  align-items: stretch;
}

.resource-card {
  min-height: 210px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 22px;
  box-shadow: var(--shadow);
}

.resource-card div {
  display: grid;
  gap: 10px;
}

.resource-card p {
  margin: 0;
}

.session-timeline {
  display: grid;
  gap: 12px;
}

.session-timeline article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 6px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 16px;
}

.session-timeline span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  min-height: 54px;
  border-radius: 6px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 900;
}

.session-timeline strong {
  color: var(--ink);
}

.session-timeline p {
  margin: 0;
}

@media (max-width: 580px) {
  .resource-card,
  .session-timeline article {
    grid-template-columns: 1fr;
  }

  .session-timeline span {
    width: 72px;
  }
}


/* Mobile hamburger */
.menu-toggle {
  display: none;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 10px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--ink);
}

.menu-toggle b {
  margin-left: 4px;
  font-size: 0.86rem;
}

.news-card {
  overflow: hidden;
}

.news-card-image {
  width: calc(100% + 36px);
  height: 170px;
  margin: -18px -18px 12px;
  object-fit: cover;
  background: var(--soft);
}

.rich-text {
  display: grid;
  gap: 10px;
}

.rich-text p {
  margin: 0;
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    flex-wrap: wrap;
    width: 86px;
  }

  .menu-toggle span {
    flex: 0 0 18px;
  }

  .menu-toggle b {
    flex: 1 0 100%;
    margin-left: 0;
    text-align: center;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 10px;
    right: 10px;
    display: none;
    max-height: calc(100vh - 110px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 10px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  body.menu-open .nav {
    display: grid;
    gap: 8px;
  }

  .nav a,
  .nav-parent,
  .submenu a {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-group {
    display: grid;
    width: 100%;
  }

  .submenu,
  .nav-group.is-open .submenu,
  .nav-group:not(.is-open) .submenu {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: none;
    border-radius: 6px;
    margin-top: 4px;
  }
}


.social-live {
  border-top: 1px solid var(--line);
  background: var(--soft);
}


/* Profile layout refinements */
.profile-grid-vip {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.profile-grid-ong {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.profile-grid-vip .profile-summary,
.profile-grid-vip .profile-challenge,
.profile-grid-ong .profile-summary,
.profile-grid-ong .profile-challenge {
  min-height: 260px;
}

.profile-challenge .rich-text {
  min-height: 130px;
}

.vip-profile-details {
  padding-bottom: 34px;
}

@media (max-width: 1080px) {
  .profile-grid-vip,
  .profile-grid-ong {
    grid-template-columns: 1fr;
  }
}


/* Share controls */
.vip-card-figure,
.association-hero figure,
.gallery-photo,
.video {
  position: relative;
}

.share-button {
  position: absolute;
  right: 10px;
  top: 10px;
  bottom: auto;
  z-index: 4;
  min-height: 34px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 6px;
  padding: 0 11px;
  background: rgba(0, 45, 110, 0.9);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.share-button:hover {
  background: var(--blue-deep);
}


/* Profile hero sizing */
.vip-profile-hero {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
}

.vip-profile-hero h1,
.association-hero h1 {
  font-size: clamp(1.95rem, 3vw, 3rem);
  line-height: 1.06;
}

.vip-card-figure img {
  max-height: 520px;
}

@media (max-width: 1080px) {
  .vip-profile-hero {
    grid-template-columns: 1fr;
  }
}


/* Grupo Nexcom top strip */
.corpbar {
  background: #082f6b;
  color: #ffffff;
  font-size: 0.84rem;
}

.corpbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.corpbar a {
  color: #ffffff;
  text-decoration: none;
}

.corpbar-brand {
  font-weight: 900;
}

.corpbar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.corpbar nav a {
  position: relative;
  opacity: 0.92;
  padding-left: 14px;
}

.corpbar-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--corp-color, #ffffff);
}

.corpbar-section.white { --corp-color: #ffffff; }
.corpbar-section.blue { --corp-color: var(--blue); }
.corpbar-section.orange { --corp-color: var(--orange); }
.corpbar-section.red { --corp-color: var(--red); }
.corpbar-section.green { --corp-color: var(--green); }

.corpbar nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.company-card {
  min-height: 100%;
}

.hero-actions.small {
  margin-top: 14px;
  gap: 8px;
}

@media (max-width: 820px) {
  .corpbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .corpbar nav {
    justify-content: flex-start;
    gap: 8px 12px;
  }

  .topbar .nav {
    display: none !important;
  }

  body.menu-open .topbar .nav,
  .topbar .nav.is-mobile-open {
    display: grid !important;
    gap: 8px;
  }

  .share-button {
    top: 8px;
    right: 8px;
    bottom: auto;
    min-height: 30px;
    padding: 0 9px;
    font-size: 0.76rem;
  }
}


/* Challenge indexes */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.challenge-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(17, 26, 44, 0.08);
}

.challenge-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--soft);
}

.challenge-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.challenge-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
}

.challenge-body p {
  margin-bottom: 0;
}

.challenge-body .button {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .challenge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .challenge-grid {
    grid-template-columns: 1fr;
  }
}
