:root {
  --black: #050505;
  --gold: #d4af37;
  --gold-soft: #f2d56b;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --glass: rgba(255, 255, 255, 0.055);
  --line: rgba(212, 175, 55, 0.28);
  --deep-shadow: 0 26px 80px rgba(0, 0, 0, 0.55);
  --gold-shadow: 0 0 32px rgba(212, 175, 55, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(118deg, rgba(212, 175, 55, 0.07), transparent 24%, transparent 72%, rgba(212, 175, 55, 0.045)),
    linear-gradient(180deg, #050505 0%, #070707 42%, #020202 100%);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, black, transparent 70%);
}

img,
video,
canvas {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  min-height: 66px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.68);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 218px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 26px rgba(212, 175, 55, 0.24), 0 12px 28px rgba(0, 0, 0, 0.38);
}

.brand small,
.brand strong {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.brand strong {
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--gold-soft);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(212, 175, 55, 0.56);
  border-radius: 8px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.12);
}

.icon-paper {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(25deg) skew(-10deg);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold-soft);
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 124px 0 70px;
}

.hero-media,
.hero-media::after,
.hero-canvas,
.hero-depth {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  transform: scale(1.04);
  animation: heroBreath 16s ease-in-out infinite alternate;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.93) 0%, rgba(5, 5, 5, 0.72) 34%, rgba(5, 5, 5, 0.48) 68%, rgba(5, 5, 5, 0.84) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.9));
}

.hero-canvas {
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  pointer-events: none;
}

.hero-depth {
  z-index: -3;
  background:
    linear-gradient(115deg, rgba(212, 175, 55, 0.12), transparent 18%, transparent 66%, rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.65) 86%, #050505 100%);
}

.gold-line {
  position: absolute;
  top: 27%;
  left: -42vw;
  z-index: 2;
  width: 42vw;
  height: 1px;
  transform: rotate(-11deg);
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), rgba(242, 213, 107, 0.92), transparent);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.45);
  animation: goldSweep 7.8s ease-in-out infinite;
}

.hero-content,
.section,
.section-inner,
.opportunity-head {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 4;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.45);
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  width: min(980px, 100%);
  margin-top: 18px;
  font-size: 86px;
  line-height: 0.93;
  text-wrap: balance;
}

.hero h1 span,
.metric strong,
.vip-counter strong,
.image-badge strong,
.invest-card strong {
  color: var(--gold-soft);
  text-shadow: 0 0 28px rgba(212, 175, 55, 0.28);
}

.hero-subtitle {
  width: min(700px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.6;
}

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

.hero-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(820px, 100%);
  margin-top: 30px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  overflow: hidden;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  border: 1px solid rgba(242, 213, 107, 0.84);
  background: linear-gradient(135deg, #d4af37, #f2d56b 52%, #8a6a13);
  color: #050505;
  box-shadow: var(--gold-shadow);
}

.vip-glow {
  animation: softPulse 2.8s ease-in-out infinite;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transition: transform 640ms ease;
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.hero-meta div {
  padding: 18px;
  background: rgba(5, 5, 5, 0.45);
}

.hero-meta strong {
  display: block;
  color: var(--gold-soft);
  font-size: 21px;
}

.hero-meta span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-rail {
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trustSlide 28s linear infinite;
}

.trust-track span {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.section,
.section-wide,
.opportunities {
  padding: 112px 0;
}

.section-head {
  max-width: 760px;
}

.section-head h2,
.copy h2,
.students h2,
.investors h2,
.vip h2 {
  margin-top: 10px;
  font-size: 56px;
  line-height: 1;
  text-wrap: balance;
}

.section-head p,
.copy p,
.students p,
.investors p,
.vip p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 72px;
  align-items: center;
}

.proof-list,
.proof-grid,
.support-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

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

.proof-grid span,
.support-list span {
  min-height: 46px;
  padding: 13px 14px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.support-list {
  margin-top: 0;
}

.support-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
}

.tilt-wrap {
  perspective: 1200px;
}

.tilt-image {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  background: #080808;
  box-shadow: var(--deep-shadow), 0 0 42px rgba(212, 175, 55, 0.12);
  transform-style: preserve-3d;
  transition: transform 160ms ease;
}

.tilt-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  transform: scale(1.03);
}

.tilt-image::after,
.team-card::after,
.property-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tilt-image::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(180deg, transparent 48%, rgba(5, 5, 5, 0.7));
}

.image-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  max-width: 260px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.54);
  backdrop-filter: blur(18px);
}

.image-badge strong {
  display: block;
  font-size: 22px;
}

.image-badge span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.location-card .image-badge {
  max-width: 340px;
}

.feature-grid,
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.feature-card {
  position: relative;
  min-height: 244px;
  padding: 24px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 8px;
  background: conic-gradient(from var(--spin, 0deg), rgba(212, 175, 55, 0.04), rgba(212, 175, 55, 0.72), rgba(255, 255, 255, 0.12), rgba(212, 175, 55, 0.04));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderSpin 6s linear infinite;
  pointer-events: none;
}

.feature-card:hover,
.invest-card:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48), 0 0 34px rgba(212, 175, 55, 0.18);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.08);
  font-weight: 900;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.14);
}

.feature-card h3,
.invest-card h3,
.property-card h3 {
  margin: 24px 0 0;
  font-size: 21px;
  line-height: 1.25;
}

.feature-card p,
.invest-card p,
.property-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.realtime {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)), rgba(5, 5, 5, 0.86);
}

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

.metric {
  position: relative;
  min-height: 220px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: blur(18px);
}

.metric::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(212, 175, 55, 0.12), transparent 38%);
}

.metric strong,
.metric span {
  position: relative;
  display: block;
}

.metric strong {
  font-size: 38px;
  line-height: 1;
}

.metric span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.bars {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 74px;
}

.bars i {
  flex: 1;
  height: 0;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--gold-soft), rgba(212, 175, 55, 0.18));
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.22);
  transition: height 900ms ease;
}

.is-visible .bars i {
  height: var(--h);
}

.students,
.investors {
  position: relative;
  overflow: hidden;
  background-image: var(--bg);
  background-position: center;
  background-size: cover;
}

.students::before,
.investors::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.7) 50%, rgba(5, 5, 5, 0.58)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.92));
}

.students .section-inner,
.investors .section-inner {
  position: relative;
  z-index: 2;
}

.student-layout,
.invest-layout,
.map-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 70px;
  align-items: center;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.8), transparent);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.48);
  backdrop-filter: blur(18px);
}

.timeline-item > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.08);
  font-weight: 900;
}

.timeline-item h3 {
  margin: 2px 0 0;
  font-size: 18px;
}

.timeline-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.invest-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: end;
}

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

.invest-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.invest-card h3 {
  margin-top: 0;
}

.invest-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.58);
}

.invest-card strong {
  display: block;
  margin-top: 18px;
  font-size: 32px;
}

.map-shell {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  margin-top: 42px;
}

.map-stage,
.map-panel {
  min-height: 560px;
  border-radius: 8px;
}

.map-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)), #050505;
  box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.06), var(--deep-shadow);
}

.map-stage svg {
  position: absolute;
  inset: 9%;
  width: 82%;
  height: 82%;
  filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.08));
}

.map-stage path {
  fill: rgba(255, 255, 255, 0.035);
  stroke: rgba(212, 175, 55, 0.36);
  stroke-width: 1.4;
}

.map-stage .map-river {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 2;
  stroke-dasharray: 6 10;
}

.map-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 213, 107, 0.7);
  border-radius: 999px;
  color: #050505;
  background: var(--gold-soft);
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.08), 0 0 22px rgba(212, 175, 55, 0.52);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.map-marker.active {
  box-shadow: 0 0 0 12px rgba(212, 175, 55, 0.12), 0 0 34px rgba(212, 175, 55, 0.72);
}

.map-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--glass);
  backdrop-filter: blur(20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.map-panel strong {
  display: block;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-panel h3 {
  margin: 10px 0 0;
  font-size: 34px;
}

.map-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.map-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.map-tags span,
.property-card span {
  padding: 8px 10px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(212, 175, 55, 0.07);
  font-size: 12px;
  font-weight: 800;
}

.opportunities {
  overflow: hidden;
}

.opportunity-cta {
  display: grid;
  gap: 34px;
}

.opportunity-card,
.instagram-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.045) 44%, rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--deep-shadow), 0 0 34px rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(18px);
}

.opportunity-card::after,
.instagram-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 160px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.18), transparent);
  filter: blur(28px);
  pointer-events: none;
}

.opportunity-card h2,
.instagram-card h2 {
  margin: 10px 0 0;
  font-size: 54px;
  line-height: 1;
}

.opportunity-card p,
.instagram-card p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.opportunity-card .btn {
  margin-top: 10px;
}

.opportunity-cta .opportunity-rail {
  padding: 6px 0 24px;
}

.opportunity-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 440px);
  gap: 18px;
  overflow-x: auto;
  padding: 6px max(20px, calc((100vw - 1180px) / 2)) 24px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(212, 175, 55, 0.7) rgba(255, 255, 255, 0.08);
}

.property-card {
  position: relative;
  height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #0a0a0a;
  scroll-snap-align: start;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
}

.property-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 520ms ease, filter 520ms ease;
}

.property-card::after {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.12) 38%, rgba(5, 5, 5, 0.88)),
    linear-gradient(120deg, rgba(212, 175, 55, 0.2), transparent 34%);
}

.property-card > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
  transform: translateY(54px);
  transition: transform 320ms ease;
}

.property-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.05) brightness(1.04);
}

.property-card:hover > div {
  transform: translateY(0);
}

.property-card span {
  display: inline-block;
  margin: 12px 5px 0 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.property-card:hover span {
  opacity: 1;
  transform: translateY(0);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.team-card {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  background: #080808;
  box-shadow: var(--deep-shadow);
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center top;
  transition: transform 520ms ease, filter 520ms ease;
}

.team-card::after {
  background: linear-gradient(180deg, transparent 34%, rgba(5, 5, 5, 0.9));
}

.team-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.06) brightness(1.05);
}

.team-card > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.team-card span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 8px 0 16px;
  font-size: 32px;
}

.team-card p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.55;
}

.team-card .btn {
  width: auto;
  margin-top: 8px;
}

.instagram-section {
  padding-top: 40px;
}

.instagram-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.vip {
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  background: linear-gradient(115deg, rgba(212, 175, 55, 0.12), transparent 26%, rgba(255, 255, 255, 0.045)), #050505;
}

.vip-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  min-height: 420px;
}

.vip-counter {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 28px;
}

.final-actions {
  display: grid;
  gap: 12px;
}

.microcopy {
  color: rgba(242, 213, 107, 0.82) !important;
  font-size: 13px !important;
  font-weight: 900;
  text-transform: uppercase;
}

.vip-counter strong {
  font-size: 72px;
  line-height: 1;
}

.vip-counter span {
  max-width: 270px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.vip-cta {
  min-width: 320px;
  min-height: 78px;
  animation: softPulse 2.8s ease-in-out infinite;
}

.testimonials-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.testimonial {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  animation: floatCard 6s ease-in-out infinite;
}

.testimonial:nth-child(even) {
  animation-delay: 1.5s;
}

.testimonial span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.1);
  font-weight: 900;
}

.testimonial p {
  color: var(--muted);
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: blur(18px);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 72px;
  padding: 0 22px;
  border: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 999px;
  color: var(--gold-soft);
}

.faq-item > div {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open > div {
  max-height: 220px;
}

.footer {
  padding: 76px 0 34px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), transparent 38%), #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, minmax(160px, 0.4fr));
  gap: 28px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  font-weight: 900;
}

.footer-logo img {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.footer p,
.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 54px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(242, 213, 107, 0.72);
  border-radius: 999px;
  color: #050505;
  background: linear-gradient(135deg, #d4af37, #f2d56b);
  box-shadow: 0 0 34px rgba(212, 175, 55, 0.32), 0 18px 50px rgba(0, 0, 0, 0.42);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@property --spin {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0deg;
}

@keyframes borderSpin {
  to {
    --spin: 360deg;
  }
}

@keyframes heroBreath {
  to {
    transform: scale(1.09) translate(-10px, -6px);
  }
}

@keyframes goldSweep {
  0%,
  18% {
    transform: translateX(0) rotate(-11deg);
    opacity: 0;
  }

  28%,
  74% {
    opacity: 1;
  }

  100% {
    transform: translateX(158vw) rotate(-11deg);
    opacity: 0;
  }
}

@keyframes trustSlide {
  to {
    transform: translateX(-50%);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 0 32px rgba(212, 175, 55, 0.28);
  }

  50% {
    box-shadow: 0 0 52px rgba(212, 175, 55, 0.44);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1180px) {
  .nav-links {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.92);
    box-shadow: var(--deep-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .nav.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero h1 {
    font-size: 78px;
  }

  .split,
  .student-layout,
  .invest-layout,
  .map-shell {
    grid-template-columns: 1fr;
  }

  .instagram-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .section,
  .section-wide,
  .opportunities {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .hero {
    min-height: 94svh;
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-meta,
  .feature-grid,
  .data-grid,
  .invest-grid,
  .team-grid,
  .vip-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .vip-cta {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .nav {
    top: 12px;
    width: calc(100% - 24px);
  }

  .brand {
    min-width: auto;
  }

  .brand span {
    display: none;
  }

  .nav-action {
    padding: 0 12px;
  }

  .hero-content,
  .section,
  .section-inner,
  .opportunity-head,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .hero h1 {
    font-size: 52px;
  }

  .section-head h2,
  .copy h2,
  .students h2,
  .investors h2,
  .vip h2,
  .opportunity-card h2,
  .instagram-card h2 {
    font-size: 42px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-meta div {
    padding: 14px;
  }

  .tilt-image,
  .tilt-image img,
  .map-stage,
  .map-panel {
    min-height: 420px;
  }

  .opportunity-rail {
    grid-auto-columns: minmax(292px, 86vw);
  }

  .property-card {
    height: 500px;
  }

  .team-card,
  .team-card img {
    min-height: 560px;
  }

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

  .vip-counter strong {
    font-size: 56px;
  }

  .testimonials-stage {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 44px;
  }

  .section-head h2,
  .copy h2,
  .students h2,
  .investors h2,
  .vip h2,
  .opportunity-card h2,
  .instagram-card h2 {
    font-size: 36px;
  }

  .feature-card,
  .metric,
  .map-panel {
    padding: 18px;
  }

  .map-stage {
    min-height: 360px;
  }

  .map-marker {
    width: 36px;
    height: 36px;
  }

  .opportunity-card,
  .instagram-card {
    padding: 24px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 14px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}


/* =========================================================
   CORREÇÕES FINAIS — Layout, listas, badges e mobile
   ========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  -webkit-font-smoothing: antialiased;
}

.hero-content,
.section,
.section-inner,
.opportunity-head,
.footer-bottom {
  width: 100% !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
}

.badge-row,
.hero-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 820px !important;
  margin-top: 28px !important;
}

.badge,
.hero-badge,
.hero-badges > span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  min-height: 38px !important;
  padding: 8px 14px !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.04) !important;
  color: rgba(255,255,255,.86) !important;
  white-space: nowrap !important;
  width: auto !important;
  max-width: 100% !important;
  line-height: 1.25 !important;
  text-transform: none !important;
}

.check-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  margin: 22px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.check-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  min-width: 0 !important;
  line-height: 1.5 !important;
  color: rgba(255,255,255,.88) !important;
  font-weight: 700 !important;
}

.check-list li::before {
  content: "✓" !important;
  color: #D4AF37 !important;
  font-weight: 900 !important;
  flex: 0 0 auto !important;
}

.proof-grid.check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.proof-grid.check-list li,
.support-list .check-list li {
  min-height: auto !important;
  padding: 13px 14px !important;
  border: 1px solid rgba(212, 175, 55, 0.16) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.045) !important;
  backdrop-filter: blur(14px) !important;
}

.split,
.split-section,
.student-layout,
.medicine-section,
.medicine-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 64px !important;
  align-items: center !important;
}

.students .section-inner,
.student-layout {
  max-width: 1180px !important;
}

.info-card,
.medicine-card,
.support-list.info-card {
  width: 100% !important;
  max-width: 100% !important;
  padding: 32px !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 24px !important;
  background: rgba(5,5,5,0.58) !important;
  backdrop-filter: blur(16px) !important;
  box-shadow: 0 24px 80px rgba(0,0,0,.38), 0 0 34px rgba(212,175,55,.08) !important;
}

.support-list.info-card h3 {
  margin: 0 0 6px !important;
  color: #f2d56b !important;
  font-size: 22px !important;
}

.section {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

.opportunity-cta {
  display: grid !important;
  gap: 32px !important;
  padding-top: 110px !important;
  padding-bottom: 110px !important;
}

.opportunity-cta .opportunity-card {
  max-width: 1180px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.opportunity-cta .opportunity-rail {
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 24px 18px !important;
  grid-auto-flow: unset !important;
  grid-auto-columns: unset !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  overflow: visible !important;
}

.final-cta,
.cta-final,
.vip.final-cta {
  min-height: auto !important;
  padding: 82px 0 !important;
  display: flex !important;
  align-items: center !important;
}

.vip-box {
  align-items: center !important;
  gap: 40px !important;
}

.final-actions,
.button-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  align-items: center !important;
}

.instagram-section {
  text-align: center !important;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.instagram-section .instagram-card {
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  display: grid !important;
  justify-items: center !important;
  text-align: center !important;
  padding: 38px !important;
  border-radius: 28px !important;
}

.instagram-section .instagram-card p {
  margin-left: auto !important;
  margin-right: auto !important;
}

img,
video {
  max-width: 100% !important;
}

@media (max-width: 900px) {
  .hero-content,
  .section,
  .section-inner,
  .opportunity-head,
  .footer-bottom {
    width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .split,
  .split-section,
  .student-layout,
  .medicine-section,
  .medicine-grid,
  .invest-layout,
  .vip-box {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .hero-badges,
  .badge-row {
    justify-content: flex-start !important;
    gap: 9px !important;
  }

  .badge,
  .hero-badge,
  .hero-badges > span {
    white-space: normal !important;
    justify-content: flex-start !important;
    font-size: 14px !important;
    text-align: left !important;
  }

  .section,
  .section-wide {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }

  .opportunity-cta {
    padding-top: 78px !important;
    padding-bottom: 78px !important;
  }

  .opportunity-cta .opportunity-rail {
    grid-template-columns: 1fr !important;
    padding: 0 18px !important;
  }

  .property-card {
    height: auto !important;
    min-height: 420px !important;
  }

  .final-cta,
  .cta-final,
  .vip.final-cta {
    padding: 70px 0 !important;
  }

  .button-row,
  .hero-actions,
  .final-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .button-row a,
  .hero-actions a,
  .final-actions a,
  .btn {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .proof-grid.check-list {
    grid-template-columns: 1fr !important;
  }

  .support-list.info-card {
    padding: 24px !important;
  }

  .instagram-section {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
}

/* Mobile premium header: logo esquerda, menu direita, sem WhatsApp no topo */
@media (max-width: 700px) {
  .nav {
    top: 14px !important;
    left: 18px !important;
    right: 18px !important;
    width: auto !important;
    min-height: 74px !important;
    padding: 10px 12px !important;
    transform: none !important;
    justify-content: space-between !important;
    gap: 12px !important;
    border-radius: 18px !important;
  }

  .brand {
    min-width: 0 !important;
    margin-right: auto !important;
    flex: 0 1 auto !important;
  }

  .brand img {
    width: 54px !important;
    height: 54px !important;
    border-radius: 14px !important;
  }

  .brand span {
    display: none !important;
  }

  .nav-action {
    display: none !important;
  }

  .menu-toggle {
    display: grid !important;
    place-items: center !important;
    width: 54px !important;
    height: 54px !important;
    margin-left: auto !important;
    flex: 0 0 54px !important;
    border-radius: 14px !important;
  }

  .menu-toggle span {
    width: 24px !important;
    margin: 3px auto !important;
  }

  .nav-links {
    top: 96px !important;
    left: 18px !important;
    right: 18px !important;
    border-radius: 18px !important;
  }

  .hero {
    min-height: auto !important;
    padding-top: 150px !important;
    padding-bottom: 54px !important;
    align-items: start !important;
  }

  .hero h1 {
    font-size: clamp(45px, 12vw, 60px) !important;
    line-height: 0.98 !important;
    margin-top: 18px !important;
  }

  .hero-subtitle {
    font-size: 20px !important;
    line-height: 1.55 !important;
  }

  .hero-note {
    font-size: 17px !important;
    line-height: 1.45 !important;
  }

  .hero-badges {
    margin-top: 22px !important;
  }

  .hero-badges > span {
    width: 100% !important;
    min-height: 42px !important;
    padding: 10px 13px !important;
  }

  .btn {
    min-height: 62px !important;
    border-radius: 12px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  .eyebrow,
  .kicker {
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  .section-head h2,
  .copy h2,
  .students h2,
  .investors h2,
  .vip h2,
  .opportunity-card h2,
  .instagram-card h2 {
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: 1.02 !important;
  }

  .copy p,
  .students p,
  .investors p,
  .opportunity-card p,
  .instagram-card p,
  .vip p {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .trust-rail {
    overflow: hidden !important;
  }

  .floating-whatsapp {
    right: 14px !important;
    bottom: 14px !important;
  }
}

@media (max-width: 430px) {
  .hero-content,
  .section,
  .section-inner,
  .opportunity-head,
  .footer-bottom {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hero h1 {
    font-size: 43px !important;
  }

  .hero-subtitle {
    font-size: 18px !important;
  }

  .opportunity-card,
  .instagram-card,
  .info-card,
  .medicine-card,
  .support-list.info-card {
    padding: 22px !important;
  }
}
