:root {
  --sky-1: #8fc9eb;
  --sky-2: #5ca4d7;
  --sky-3: #245a7a;
  --glass: rgba(180, 221, 244, 0.38);
  --glass-strong: rgba(154, 207, 237, 0.58);
  --line: rgba(255, 255, 255, 0.28);
  --white: #fffaf4;
  --muted: rgba(255, 255, 255, 0.78);
  --ink: #21465e;
  --orange: #ff8c32;
  --orange-dark: #9d3f12;
  --gold: #ffe082;
  --shadow: rgba(25, 68, 96, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(180deg, rgba(143, 201, 235, 0.95), rgba(69, 147, 200, 0.94) 48%, rgba(31, 83, 115, 0.98)),
    var(--sky-2);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  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: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

button,
input,
textarea {
  font: inherit;
}

.sky-blocks {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.block {
  position: absolute;
  display: block;
  height: 22px;
  border-radius: 4px;
  background: rgba(185, 225, 249, 0.28);
  box-shadow: 52px 12px 0 rgba(185, 225, 249, 0.22), -34px 28px 0 rgba(185, 225, 249, 0.18);
}

.block-a { top: 14%; left: 75%; width: 88px; }
.block-b { top: 34%; left: 14%; width: 112px; }
.block-c { top: 58%; right: 5%; width: 94px; }
.block-d { top: 78%; left: 12%; width: 130px; }
.block-e { top: 8%; left: -2%; width: 54px; }

.topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  margin: 12px auto 0;
  padding: 10px 14px 10px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(174, 218, 244, 0.38);
  box-shadow: 0 14px 36px var(--shadow);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 4px;
}

.brand small {
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 22px;
  margin-right: auto;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 800;
}

.token-pill,
.ghost-button,
.orange-button {
  cursor: pointer;
}

.token-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  color: #3b210f;
  background: linear-gradient(#ffad5b, #f57624);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.45), 0 3px 0 var(--orange-dark);
}

.token-pill span {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.token-pill strong {
  overflow: hidden;
  max-width: 220px;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 72px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 16px;
  align-items: stretch;
  min-height: 360px;
  padding: 46px 22px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(150, 210, 242, 0.54), rgba(52, 127, 178, 0.46));
  box-shadow: 0 18px 46px var(--shadow);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 9%;
  top: 150px;
  width: 160px;
  height: 44px;
  border-radius: 6px;
  content: "";
  background: rgba(255,255,255,0.12);
  box-shadow: 80px 22px 0 rgba(255,255,255,0.1), -500px 170px 0 rgba(255,255,255,0.1);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
}

h1 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 1px;
  text-shadow: 0 4px 0 rgba(31, 82, 112, 0.18);
}

h2 {
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: 0.2px;
}

.hero-copy p:last-child {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.55;
}

.hero-panel,
.glass {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: 0 16px 36px var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  align-content: end;
  padding: 16px;
}

.hero-panel > div,
.metric-row > div,
.mini-list div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(52, 120, 164, 0.2);
}

.panel-label,
.metric-row span,
.mini-list dt {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong,
.metric-row strong,
.mini-list dd {
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
}

.grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

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

.summary-card,
.status-card,
.table-section,
.journal-section,
.form-card {
  padding: 22px;
}

.metric-row,
.mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
}

.mini-list {
  padding: 0;
}

.mini-list dd {
  margin: 0;
  font-size: 20px;
}

.status-card p {
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
}

.progress-wrap {
  margin-top: 20px;
}

.progress-meta,
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.progress-meta {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 800;
}

.progress-track {
  height: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(28, 78, 111, 0.36);
}

.progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffe082, #ff9c3a);
  box-shadow: 0 0 18px rgba(255, 212, 107, 0.5);
  transition: width 420ms ease;
}

.table-section,
.journal-section {
  margin-top: 16px;
}

.ghost-button {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  background: rgba(255,255,255,0.12);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}

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

th,
td {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  text-align: left;
}

th {
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

td {
  color: rgba(255,255,255,0.92);
  font-size: 14px;
}

.journal-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.journal-item {
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(43, 105, 147, 0.24);
}

.journal-item time,
.journal-item span {
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.journal-item h3 {
  margin: 8px 0;
  font-size: 20px;
}

.journal-item p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
}

.admin-grid {
  align-items: start;
}

.form-card {
  display: grid;
  gap: 13px;
}

label {
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--white);
  outline: none;
  background: rgba(30, 84, 120, 0.34);
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.46);
}

.orange-button {
  padding: 13px 15px;
  border: 1px solid rgba(75, 31, 9, 0.42);
  border-radius: 8px;
  color: #3b210f;
  font-weight: 950;
  background: linear-gradient(#ffb55f, var(--orange));
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.42), 0 3px 0 var(--orange-dark);
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.empty {
  color: rgba(255,255,255,0.74);
  font-weight: 800;
}

@media (max-width: 860px) {
  .topbar {
    position: static;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
  }

  .token-pill {
    margin-left: auto;
  }

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

  .hero {
    min-height: auto;
    padding-top: 30px;
  }
}

@media (max-width: 560px) {
  .shell,
  .topbar {
    width: min(100% - 20px, 1180px);
  }

  .brand span {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .nav {
    gap: 14px;
  }

  .token-pill {
    max-width: 100%;
    width: 100%;
    justify-content: space-between;
  }

  .metric-row,
  .mini-list {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

.hero-panel strong small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 800;
}

.proof-link {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  background: rgba(255,255,255,0.12);
}

.proof-link:hover {
  background: rgba(255,255,255,0.2);
}

.muted-proof {
  color: rgba(255,255,255,0.54);
  font-size: 12px;
  font-weight: 800;
}

.token-pill {
  max-width: 560px;
  color: var(--white);
  background: rgba(43, 105, 147, 0.28);
  box-shadow: none;
}

.token-pill strong {
  overflow: visible;
  max-width: none;
  color: rgba(255,255,255,0.92);
  font-family: Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
  text-align: left;
  text-overflow: initial;
  user-select: text;
  white-space: normal;
}

.token-pill {
  cursor: auto;
}

.token-pill code {
  overflow: visible;
  max-width: none;
  color: rgba(255,255,255,0.92);
  font-family: Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
  text-align: left;
  user-select: text;
  white-space: normal;
}

.token-copy {
  flex: 0 0 auto;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 7px;
  padding: 6px 9px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  background: rgba(255,255,255,0.12);
}

.token-copy:hover {
  background: rgba(255,255,255,0.2);
}

.gold-money {
  color: var(--gold);
  text-shadow: 0 0 16px rgba(255, 224, 130, 0.32);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links-header {
  margin-left: auto;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 8px;
  padding: 5px 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  background: rgba(43, 105, 147, 0.24);
  transition: background 160ms ease, transform 160ms ease;
}

.social-links-header .social-link {
  width: 38px;
  padding: 5px;
}

.social-link:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}

.social-link.is-disabled {
  pointer-events: none;
  opacity: 0.42;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 6px;
  color: #1b4663;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0;
  background: rgba(255,255,255,0.86);
}

.social-x {
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

.social-dex {
  color: #143a56;
  font-size: 9px;
  background: linear-gradient(135deg, #b8f7ff, #fffaf4);
}

.social-pump {
  color: #3c210b;
  font-size: 13px;
  background: linear-gradient(135deg, #ffe082, #ff9c3a);
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: rgba(255,255,255,0.86);
  background: rgba(43, 105, 147, 0.28);
  box-shadow: 0 14px 36px var(--shadow);
  backdrop-filter: blur(10px);
}

.site-footer > div:first-child {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--white);
  font-size: 14px;
}

.site-footer span {
  font-size: 12px;
}

.social-links-footer {
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 860px) {
  .social-links-header {
    order: 4;
    margin-left: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 0;
  }

  .social-links-footer {
    justify-content: flex-start;
  }
}

