:root {
  --ink: #082f49;
  --muted: #5b677a;
  --line: #d5e2ea;
  --bg: #f3f8fb;
  --brand: #00a896;
  --brand-dark: #007f73;
  --blue: #003f5c;
  --gold: #f7c948;
  --coral: #ff6b6b;
  --white: #ffffff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
.topbar {
  min-height: 76px;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 218px; max-width: 46vw; height: auto; display: block; }
nav { display: flex; gap: 22px; align-items: center; color: var(--muted); font-weight: 650; }
nav a:hover { color: var(--brand-dark); }
.navDrop {
  position: relative;
  padding: 10px 0;
}
.dropMenu {
  min-width: 210px;
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8,47,73,.16);
  z-index: 20;
}
.navDrop:hover .dropMenu,
.navDrop:focus-within .dropMenu {
  display: grid;
}
.dropMenu a {
  padding: 10px 12px;
  border-radius: 6px;
  white-space: nowrap;
}
.dropMenu a:hover {
  background: #e7f6f3;
}
.langSwitch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: #e7f6f3;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.langSwitch a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.langSwitch img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
}
.langSwitch a.active {
  background: var(--blue);
  color: white;
}
.hero, .detailHero {
  min-height: calc(100vh - 72px);
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.detailHero { min-height: 560px; }
.detailHero {
  background-size: cover;
  background-position: center;
}
.heroSlides {
  position: absolute;
  inset: 0;
}
.heroSlides span {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  animation: heroFade 30s infinite;
}
.heroSlides span:nth-child(1) { opacity: 1; animation-delay: 0s; }
.heroSlides span:nth-child(2) { animation-delay: 6s; }
.heroSlides span:nth-child(3) { animation-delay: 12s; }
.heroSlides span:nth-child(4) { animation-delay: 18s; }
.heroSlides span:nth-child(5) { animation-delay: 24s; }
.heroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,63,92,.88), rgba(0,168,150,.46), rgba(255,107,107,.16));
}
@keyframes heroFade {
  0% { opacity: 0; transform: scale(1.06); }
  6% { opacity: 1; }
  22% { opacity: 1; }
  30% { opacity: 0; transform: scale(1.12); }
  100% { opacity: 0; transform: scale(1.12); }
}
.heroContent {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 72px;
  color: white;
}
.heroContent.narrow { max-width: 860px; }
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 850;
  color: var(--gold);
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 78px); line-height: 1.02; letter-spacing: 0; margin-bottom: 20px; }
h2 { font-size: 34px; }
h3 { font-size: 21px; }
.homeHeroTitle {
  max-width: 760px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
}
.lead { font-size: 20px; line-height: 1.55; max-width: 700px; }
.heroCategoryChips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin-top: 22px;
}
.heroCategoryChips a {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: white;
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}
.heroCategoryChips a:hover {
  background: rgba(255,255,255,.24);
}
.actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.button.primary { background: linear-gradient(135deg, var(--brand), #00c2ff); border-color: transparent; color: white; }
.button.primary:hover { filter: brightness(.96); transform: translateY(-1px); }
.button.ghost { background: rgba(255,255,255,.12); color: white; border-color: rgba(255,255,255,.45); }
.button.whatsapp { background: #25d366; color: white; border-color: #25d366; }
.button.danger { background: #9f1239; border-color: #9f1239; color: white; }
.button.danger:hover { background: #881337; }
.button.small { padding: 10px 14px; margin-top: 16px; }
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: white;
}
.metrics article { padding: 30px 42px; border-right: 1px solid var(--line); }
.metrics strong { display: block; font-size: 32px; }
.metrics span { color: var(--muted); font-weight: 650; }
.compact { margin-bottom: 30px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.section, .page { padding: 54px 42px; }
.sectionHead { margin-bottom: 24px; }
.sectionHead h1, .sectionHead h2 { margin-bottom: 8px; color: var(--ink); }
.muted { color: var(--muted); }
.authPage {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 32px 18px;
  background:
    linear-gradient(135deg, rgba(2,18,37,.92), rgba(8,47,73,.66), rgba(0,168,150,.26)),
    url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1600&q=85") center/cover;
}
.legalHero {
  padding: 74px 42px 32px;
  background:
    linear-gradient(135deg, rgba(0,63,92,.96), rgba(0,168,150,.82)),
    url("https://images.unsplash.com/photo-1560520031-3a4dc4e9de0c?auto=format&fit=crop&w=1600&q=85") center/cover;
  color: white;
}
.legalHero .sectionHead { max-width: 980px; margin-bottom: 0; }
.legalHero h1 { color: white; }
.legalGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 36px 42px;
}
.lawCard strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--gold);
  margin-bottom: 18px;
}
.legalNote { margin: 0 42px 48px; }
.loginPanel {
  width: min(100%, 460px);
  display: grid;
  gap: 18px;
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 26px 80px rgba(2,18,37,.34);
}
.loginPanel h1 {
  font-size: 34px;
  margin-bottom: 0;
}
.authLinks {
  display: grid;
  gap: 4px;
}
.authLinks p {
  margin: 0;
}
.investorGate .actions {
  margin-top: 4px;
}
.investorGate .button {
  flex: 1;
}
.loginMark {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--brand));
  color: white;
  font-weight: 900;
  letter-spacing: 0;
}
.alert {
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff2f0;
  color: #a83224;
  border: 1px solid #ffd0c9;
  font-weight: 750;
}
.grid.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.card img { width: 100%; height: 150px; object-fit: cover; display: block; }
.cardBody { padding: 20px; }
.pill {
  display: inline-flex;
  background: #e9f5f2;
  color: var(--brand-dark);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 14px;
}
.cardStats { display: flex; gap: 10px; flex-wrap: wrap; color: var(--muted); font-weight: 750; }
.projectSummaryHero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
  align-items: center;
  gap: 34px;
  padding: 46px 42px 34px;
  background: linear-gradient(135deg, #eef8f7, #f8fbff);
}
.projectSummaryCopy {
  max-width: 820px;
}
.projectSummaryCopy h1 {
  margin: 0 0 14px;
  max-width: 760px;
}
.projectSummaryCopy .lead {
  color: var(--muted);
  max-width: 720px;
}
.projectSummaryImage {
  justify-self: end;
  width: 100%;
  max-width: 260px;
}
.projectSummaryImage img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(8, 47, 73, .16);
}
.detailGrid, .split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr);
  gap: 26px;
  padding: 42px;
}
.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.adminPage {
  background:
    linear-gradient(180deg, #eef4f8, #f7fafc 360px),
    var(--bg);
}
.adminHero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  margin-bottom: 26px;
  color: white;
  background: linear-gradient(135deg, #082f49, #0f4c5c 58%, #0e7490);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(8,47,73,.18);
}
.adminHero h1 {
  color: white;
  font-size: 42px;
  margin-bottom: 8px;
}
.adminHero .muted { color: rgba(255,255,255,.78); }
.adminActions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.adminActions .button {
  margin-top: 0;
  border-color: rgba(255,255,255,.24);
}
.adminPanel {
  border-color: #c7d7e2;
  box-shadow: 0 14px 34px rgba(8,47,73,.08);
}
.adminPanel h3 {
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.adminSettings {
  max-width: 620px;
  box-shadow: 0 14px 34px rgba(8,47,73,.08);
}
.mintGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.mintItem {
  display: grid;
  gap: 18px;
  align-content: space-between;
  min-height: 230px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}
.mintItem h4 {
  margin: 12px 0 8px;
  font-size: 18px;
}
.mintItem p {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 750;
}
.monoBreak {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 8px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}
.mintActions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.mintActions .button {
  width: 100%;
  min-height: 48px;
  margin-top: 0;
  pointer-events: auto;
}
.fact, .row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.fact span, .row span { color: var(--muted); }
.projectReadinessList {
  display: grid;
  gap: 10px;
}
.projectReadinessRow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 16px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.projectReadinessRow span,
.projectReadinessRow small {
  display: block;
}
.projectReadinessRow small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}
.readinessMini {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 10px;
  align-items: center;
}
.readinessMini b {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.readinessMini b.done { color: var(--brand-dark); }
.readinessMini b.review { color: #996400; }
.readinessMini b.blocked { color: #cc2244; }
.readinessMini em {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}
.miniProgress {
  grid-column: 1 / -1;
  height: 8px;
  margin: 0;
}
.progress { height: 12px; border-radius: 999px; background: #dfe8e4; overflow: hidden; margin: 24px 0 10px; }
.progress span { display: block; height: 100%; background: var(--brand); }
.investForm {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
}
label { color: var(--muted); font-weight: 750; }
input, select {
  width: 100%;
  margin-top: 8px;
  padding: 13px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
}
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}
.featureBand {
  background: linear-gradient(180deg, #ffffff, #e9fbf7);
}
.featureGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.featureCard {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.featureCard strong {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--gold);
  border-radius: 50%;
  margin-bottom: 16px;
}
.featureCard p { color: var(--muted); line-height: 1.55; }
.valueSection {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  background: var(--blue);
  color: white;
}
.valueSection h2 { color: white; }
.valueList {
  display: grid;
  gap: 14px;
}
.valueList p {
  padding: 18px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.ctaBand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(135deg, #00a896, #00c2ff);
  color: white;
}
.ctaBand h2 { color: white; }
.contactPage { padding-top: 0; }
.contactIntro {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
  gap: 34px;
  align-items: center;
  padding: 54px 0;
}
.contactForm {
  display: grid;
  gap: 16px;
}
.formGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.imagePreview {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcfd;
}
.imagePreview img {
  width: 140px;
  height: 86px;
  object-fit: cover;
  border-radius: 6px;
}
.imagePreview span {
  color: var(--muted);
  font-weight: 750;
}
.checkLine {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.checkLine input {
  width: auto;
  margin-top: 3px;
}
.success {
  padding: 12px 14px;
  border-radius: 8px;
  background: #e8fff6;
  color: #067a5a;
  border: 1px solid #a8f0d0;
  font-weight: 750;
}
.tablePanel {
  overflow-x: auto;
}
.dataTable {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}
.dataTable th,
.dataTable td {
  text-align: left;
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.dataTable th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.dataTable a {
  color: var(--brand-dark);
  font-weight: 850;
}
.statusBadge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e7f6f3;
  color: var(--brand-dark);
  font-weight: 850;
  font-size: 12px;
}
.investPage {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: 26px;
  align-items: start;
}
.investPanel {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 96px;
}
.miniProject {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.miniProject:first-of-type { padding-top: 0; }
.miniProject:last-child { border-bottom: 0; padding-bottom: 0; }
.miniProject img {
  width: 140px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
}
.miniProject h3 { margin-bottom: 6px; }
.miniProject a {
  color: var(--brand-dark);
  font-weight: 850;
}
.event { padding: 13px 0; border-bottom: 1px solid var(--line); }
.event.highlightBox {
  padding: 13px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: #f0fffb;
}
.event b, .event span { display: block; }
.event span { color: var(--muted); font-size: 13px; overflow-wrap: anywhere; }
.event p { margin: 7px 0 0; color: var(--muted); }
.readinessPanel { margin-top: 22px; }
.checklistHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.checklistHeader h3 { margin-bottom: 6px; }
.checklistHeader strong {
  color: var(--brand-dark);
  font-size: 34px;
}
.compactProgress { margin: 12px 0 18px; }
.checklistList,
.ownerChecklist {
  display: grid;
  gap: 10px;
}
.checklistRow {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) 150px minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.checklistRow b,
.ownerCheckItem b { display: block; color: var(--ink); }
.checklistRow span,
.ownerCheckItem span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}
.checklistRow input,
.checklistRow select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
}
.miniCheck {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}
.miniCheck input { width: auto; }
.ownerCheckItem {
  padding: 12px;
  border: 1px solid var(--line);
  border-left: 4px solid #b9c6c9;
  border-radius: 8px;
  background: #fff;
}
.ownerCheckItem.done { border-left-color: var(--brand); background: #f0fffb; }
.ownerCheckItem.review { border-left-color: #f5a623; }
.ownerCheckItem.blocked { border-left-color: #cc2244; background: #fff5f7; }
.ownerCheckItem p { margin: 8px 0 0; color: var(--muted); }
.microSite {
  background: #f5f8fa;
}
.microHero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 680px);
  min-height: 760px;
  overflow: hidden;
  color: white;
  background: #082f49;
}
.microHeroMedia {
  position: absolute;
  inset: 0;
}
.microHeroMedia::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,22,36,.86), rgba(8,47,73,.68) 48%, rgba(8,47,73,.16));
}
.microHeroMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.microHeroContent {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  max-width: 900px;
  align-self: center;
  padding: 52px;
}
.microBrand img {
  width: 230px;
  max-width: 70vw;
  margin-bottom: 70px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.24));
}
.microHero h1 {
  max-width: 820px;
  color: white;
  font-size: 68px;
}
.microHero .lead {
  max-width: 760px;
  color: rgba(255,255,255,.88);
}
.microStats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: -70px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 24px;
  gap: 14px;
}
.microStats article {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 44px rgba(8,47,73,.16);
}
.microStats span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}
.microStats strong {
  display: block;
  margin-top: 8px;
  color: var(--brand-dark);
  font-size: 28px;
}
.microSection {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 24px 0;
}
.microSection:last-child {
  padding-bottom: 70px;
}
.microSection h2 {
  font-size: 40px;
}
.cacaoHero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: white;
  background: #102417;
}
.cacaoHero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,27,17,.9), rgba(19,59,37,.72) 48%, rgba(216,163,26,.12)),
    linear-gradient(0deg, rgba(9,27,17,.5), rgba(9,27,17,.08));
  z-index: 1;
}
.cacaoSlider {
  position: absolute;
  inset: 0;
}
.cacaoSlider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: cacaoSlide 18s infinite;
}
.cacaoSlider img:nth-child(1) { animation-delay: 0s; }
.cacaoSlider img:nth-child(2) { animation-delay: 6s; }
.cacaoSlider img:nth-child(3) { animation-delay: 12s; }
@keyframes cacaoSlide {
  0% { opacity: 0; transform: scale(1.04); }
  8% { opacity: 1; }
  33% { opacity: 1; transform: scale(1); }
  42% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.04); }
}
.cacaoNav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 24px;
}
.cacaoLogo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.cacaoMark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255,255,255,.38);
  border-radius: 50%;
  color: #ffe082;
  background: rgba(23,59,36,.74);
  font-weight: 950;
}
.cacaoLogo strong,
.cacaoLogo em {
  display: block;
  line-height: 1;
}
.cacaoLogo strong {
  color: white;
  font-size: 22px;
  letter-spacing: .08em;
}
.cacaoLogo em {
  margin-top: 5px;
  color: rgba(255,255,255,.72);
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
}
.cacaoNav nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.cacaoNav nav a {
  color: rgba(255,255,255,.86);
  font-weight: 850;
  font-size: 14px;
}
.cacaoNav nav a:last-child {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  color: #ffe082;
  background: rgba(255,255,255,.08);
}
.cacaoLang {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}
.cacaoLang a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 950;
}
.cacaoLang a.active {
  color: #173b24;
  background: #ffe082;
}
.cacaoLang img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0,0,0,.14);
}
.cacaoHeroContent {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 128px 24px 96px;
  text-align: center;
}
.cacaoHeroContent h1 {
  color: white;
  font-size: 78px;
}
.cacaoHeroContent .lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,.86);
}
.cacaoHeroContent .actions {
  justify-content: center;
}
.farmTokenBand {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: center;
  max-width: 1180px;
  margin: 58px auto 0;
  padding: 42px 24px;
  color: white;
  background: linear-gradient(135deg, #173b24, #0f766e 58%, #d8a31a);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(15,118,110,.18);
}
.farmTokenBand h2 {
  max-width: 780px;
  color: white;
  font-size: 42px;
}
.farmTokenBand p {
  max-width: 760px;
  color: rgba(255,255,255,.84);
}
.tokenGlass {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 8px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}
.tokenGlass span,
.tokenGlass strong,
.tokenGlass small {
  display: block;
}
.tokenGlass span {
  color: #ffe082;
  font-weight: 950;
  font-size: 18px;
}
.tokenGlass strong {
  margin-top: 8px;
  color: white;
  font-size: 48px;
}
.tokenGlass small {
  overflow-wrap: anywhere;
  color: rgba(255,255,255,.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}
.farmGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 24px auto 0;
  padding: 0 24px;
}
.farmGrid article,
.farmRoadmap article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(8,47,73,.07);
}
.farmGrid span,
.farmRoadmap span {
  color: var(--brand);
  font-weight: 950;
}
.farmUseFunds {
  align-items: start;
}
.fundRows {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.fundRows div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.fundRows span {
  color: var(--muted);
  font-weight: 800;
}
.farmRoadmap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 24px 0;
}
.farmRoadmap h2 {
  font-size: 40px;
}
.farmRoadmap > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.musicHero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: white;
  background: #120816;
}
.musicHero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(18,8,22,.94), rgba(76,21,92,.78) 52%, rgba(247,201,72,.16));
}
.musicHeroSlider {
  position: absolute;
  inset: 0;
}
.musicHeroSlider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  animation: musicSlide 24s infinite;
}
.musicHeroSlider img:nth-child(1) {
  animation-delay: 0s;
}
.musicHeroSlider img:nth-child(2) {
  animation-delay: 6s;
}
.musicHeroSlider img:nth-child(3) {
  animation-delay: 12s;
}
.musicHeroSlider img:nth-child(4) {
  animation-delay: 18s;
}
@keyframes musicSlide {
  0%, 20% {
    opacity: 1;
    transform: scale(1);
  }
  25%, 95% {
    opacity: 0;
    transform: scale(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.musicNav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 24px;
}
.musicLogo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 950;
}
.musicLogo span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #120816;
  background: var(--gold);
}
.musicNav nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.musicNav nav a {
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 850;
}
.musicHeroContent {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 52px 90px;
}
.musicHeroContent h1 {
  max-width: 760px;
  color: white;
  font-size: 70px;
}
.musicHeroContent .lead {
  max-width: 700px;
  color: rgba(255,255,255,.86);
}
.musicStats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: -70px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}
.musicStats article {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, #381046, #6f1d7a);
  box-shadow: 0 18px 44px rgba(18,8,22,.18);
}
.musicStats span,
.musicStats strong {
  display: block;
}
.musicStats span {
  color: rgba(255,255,255,.72);
  font-weight: 800;
}
.musicStats strong {
  margin-top: 8px;
  color: #ffe082;
  font-size: 28px;
}
.musicMedia {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 24px 0;
}
.musicMediaIntro {
  max-width: 760px;
}
.musicMediaIntro h2 {
  font-size: 40px;
}
.musicMediaGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 18px;
  margin-top: 22px;
  align-items: stretch;
}
.musicVideoCard,
.musicSongsCard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(8,47,73,.07);
}
.musicVideoCard video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #120816;
}
.musicVideoCard h3,
.musicSongsCard h3 {
  margin: 0;
  padding: 18px 20px;
}
.musicSongsCard {
  padding: 4px 0 12px;
}
.musicSongsCard div {
  display: grid;
  gap: 10px;
  padding: 0 20px;
}
.musicSongsCard span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 850;
}
.musicSongsCard b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #120816;
  background: #ffe082;
}
.musicRevenue,
.musicRoadmap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 24px 0;
}
.musicRevenue {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 24px;
}
.musicRevenue h2,
.musicRoadmap h2 {
  font-size: 40px;
}
.musicRevenueGrid,
.musicRoadmap > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.musicRevenueGrid article,
.musicRoadmap article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(8,47,73,.07);
}
.musicRoadmap span {
  color: #6f1d7a;
  font-weight: 950;
}
.musicUseFunds {
  align-items: start;
}
.inlineForm {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr)) auto;
  gap: 10px;
  align-items: end;
  margin-top: 12px;
}
.inlineForm label {
  margin: 0;
  font-size: 12px;
}
.paymentBox {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
}
.paymentBox form {
  display: grid;
  gap: 8px;
}
.paymentBox input {
  width: 100%;
}
.receiptList {
  display: grid;
  gap: 14px;
}
.receiptItem {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.receiptItem h4 {
  margin: 8px 0 4px;
}
.receiptSteps {
  display: grid;
  gap: 10px;
}
.receiptStep {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
}
.receiptStep.done {
  border-color: rgba(0, 180, 150, .35);
  background: #f0fffb;
}
.receiptStep b,
.receiptStep span {
  display: block;
}
.receiptStep span {
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}
.verificationGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: -10px 0 28px;
}
.verifyItem,
.checkItem {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 14px 16px;
}
.verifyItem span,
.checkItem span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}
.verifyItem strong,
.checkItem b {
  display: block;
  color: var(--ink);
  margin-top: 4px;
}
.kycChecklist {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.checkItem.done {
  border-color: rgba(0, 180, 150, .35);
  background: #f0fffb;
}
.portfolio { display: grid; gap: 14px; }
.holding {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.holding.highlight {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,168,150,.16);
}
.holding img { width: 64px; height: 50px; object-fit: cover; border-radius: 6px; }
.holding p { color: var(--muted); margin: 0; }
.holding em { font-style: normal; color: var(--brand-dark); font-weight: 800; }

@media (max-width: 900px) {
  .topbar { height: auto; padding: 18px; align-items: flex-start; gap: 14px; flex-direction: column; }
  nav { width: 100%; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
  .brand img { width: 210px; max-width: 82vw; }
  .dropMenu { left: 0; }
  .langSwitch { align-self: stretch; justify-content: space-between; }
  .hero, .detailHero { min-height: 620px; }
  .heroContent { padding: 36px 22px; }
  .homeHeroTitle { font-size: 34px; max-width: 100%; }
  .lead { font-size: 17px; line-height: 1.5; }
  .heroCategoryChips { gap: 8px; margin-top: 18px; }
  .heroCategoryChips a { font-size: 12px; padding: 7px 10px; }
  .actions { margin-top: 22px; }
  .actions .button { width: 100%; }
  h1 { font-size: 42px; }
  .metrics, .grid.cards, .detailGrid, .split, .investForm, .investPage, .miniProject, .legalGrid, .featureGrid, .valueSection, .contactIntro, .formGrid, .imagePreview, .verificationGrid, .inlineForm, .projectSummaryHero { grid-template-columns: 1fr; }
  .section, .page, .detailGrid, .split, .projectSummaryHero { padding: 28px 18px; }
  .projectSummaryImage { justify-self: stretch; max-width: 100%; }
  .contactPage { padding-top: 0; }
  .contactIntro { padding: 36px 0; }
  .ctaBand { align-items: flex-start; flex-direction: column; }
  .legalHero { padding: 42px 18px 24px; }
  .legalGrid { padding: 24px 18px; }
  .legalNote { margin: 0 18px 32px; }
  .metrics article { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px; }
  .investPanel { position: static; }
  .miniProject img { width: 100%; height: 120px; }
  .imagePreview img { width: 100%; height: 120px; }
  .holding { grid-template-columns: 64px 1fr; }
  .checklistHeader { flex-direction: column; }
  .checklistRow { grid-template-columns: 1fr; }
  .projectReadinessRow { grid-template-columns: 1fr; }
  .microHero { min-height: 680px; }
  .microHeroContent { padding: 34px 22px; }
  .microBrand img { margin-bottom: 42px; }
  .microHero h1 { font-size: 42px; }
  .cacaoHero { min-height: 700px; }
  .cacaoNav { align-items: flex-start; flex-direction: column; }
  .cacaoNav nav { width: 100%; justify-content: flex-start; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
  .cacaoNav nav a { white-space: nowrap; }
  .cacaoLang { max-width: 100%; overflow-x: auto; }
  .cacaoHeroContent { padding: 86px 22px 70px; text-align: left; }
  .cacaoHeroContent h1 { font-size: 46px; }
  .cacaoHeroContent .actions { justify-content: flex-start; }
  .microStats, .microSection { grid-template-columns: 1fr; }
  .microStats { margin-top: -34px; }
  .farmTokenBand, .farmGrid, .farmRoadmap > div { grid-template-columns: 1fr; }
  .farmTokenBand { margin: 34px 18px 0; padding: 28px 18px; }
  .farmTokenBand h2, .farmRoadmap h2, .microSection h2 { font-size: 32px; }
  .musicHero { min-height: 720px; }
  .musicNav { align-items: flex-start; flex-direction: column; }
  .musicNav nav { width: 100%; justify-content: flex-start; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
  .musicNav nav a { white-space: nowrap; }
  .musicHeroContent { padding: 86px 22px 70px; }
  .musicHeroContent h1 { font-size: 44px; }
  .musicStats, .musicMediaGrid, .musicRevenue, .musicRevenueGrid, .musicRoadmap > div { grid-template-columns: 1fr; }
  .musicStats { margin-top: -34px; }
  .musicMediaIntro h2, .musicRevenue h2, .musicRoadmap h2 { font-size: 32px; }
  .receiptItem { grid-template-columns: 1fr; }
  .holding b, .holding span, .holding em { grid-column: 2; }
  .adminHero { flex-direction: column; padding: 22px; }
  .adminHero h1 { font-size: 34px; }
  .adminActions { justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .musicHeroSlider img {
    animation: none;
  }
  .musicHeroSlider img:first-child {
    opacity: 1;
    transform: none;
  }
}
