:root {
  --bg: #0f172a;
  --bg-alt: #070b1d;
  --card-bg: rgba(8, 15, 40, 0.85);
  --header-gold: #d4af37;
  --header-gold-soft: rgba(212, 175, 55, 0.35);
  --header-gold-glow: rgba(212, 175, 55, 0.7);
  --text-main: #c7ccd1;
  --text-muted: #9ca3af;
  --border-subtle: rgba(199, 204, 209, 0.25);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.9);
  --blur: 22px;
  --font-main:
    system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter",
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: #0f172a;
  color: var(--text-main);
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
}

/* Background decorative gradient - gold theme */
.bg-gradient {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(212, 175, 55, 0.15),
      transparent 55%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(212, 175, 55, 0.12),
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(199, 204, 209, 0.08),
      transparent 55%
    );
  opacity: 0.8;
  filter: blur(40px);
  z-index: -2;
}

/* Shared components */
.nav,
main,
.footer {
  /* max-width: 1180px; */
  margin: 0 auto;
  padding-inline: 20px;
}

main {
  padding: 40px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.8),
    rgba(15, 23, 42, 0.4)
  );
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--header-gold), #e6bf4a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-weight: 700;
  box-shadow: 0 0 20px var(--header-gold-glow);
  border: 1px solid rgba(212, 175, 55, 0.6);
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--header-gold);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.brand-tagline {
  font-size: 12px;
  color: var(--text-main);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  opacity: 0.9;
}

.nav-links a:hover {
  color: var(--header-gold);
  border-bottom-color: var(--header-gold-soft);
  opacity: 1;
  text-shadow: 0 0 4px var(--header-gold-glow);
}

.nav-cta {
  display: flex;
  align-items: center;
}

.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--header-gold), #e6bf4a);
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
  text-shadow: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.55);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.92);
  color: var(--text-main);
  border-color: rgba(199, 204, 209, 0.5);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 1);
  border-color: var(--header-gold-soft);
  color: var(--header-gold);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(199, 204, 209, 0.7);
}

.btn-outline:hover {
  border-color: var(--header-gold);
  color: var(--header-gold);
  background: rgba(212, 175, 55, 0.1);
}

.btn-outline.full-width {
  width: 100%;
  margin-top: 14px;
}

main {
  padding-bottom: 60px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.1);
  color: var(--text-main);
  font-size: 12px;
}

.pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--header-gold);
  box-shadow: 0 0 10px var(--header-gold-glow);
}

.hero-left h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 14px 0 10px;
  line-height: 1.1;
  color: var(--text-main);
}

.hero-left h1 span {
  background: linear-gradient(135deg, var(--header-gold), #e6bf4a);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero-sub {
  color: var(--text-main);
  font-size: 15px;
  /* max-width: 480px; */
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  font-size: 12px;
  color: var(--text-main);
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(199, 204, 209, 0.4);
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 360px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 0, rgba(212, 175, 55, 0.08), transparent),
    rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(var(--blur));
  border: 1px solid rgba(199, 204, 209, 0.3);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 16px;
}

.hero-card h3 {
  font-size: 16px;
  color: var(--header-gold);
  margin-bottom: 12px;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 6px;
  border-bottom: 1px dashed rgba(51, 65, 85, 0.8);
  font-size: 13px;
}

.metric-row:last-of-type {
  border-bottom: none;
}

.metric-row span:first-child {
  color: var(--text-muted);
  font-size: 14px;
}

.metric-value {
  font-weight: 600;
  color: #cfac37;
  font-size: 14px;
}

.overview-stats:hover,
.card:hover {
  border-color: #d4af3747 !important;
  box-shadow: none !important;
  background-color: #0f172a;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.link-chip {
  font-size: 12px;
  color: var(--header-gold);
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-pill);
  border: 1px solid var(--header-gold-soft);
  padding: 5px 10px;
  text-decoration: none;
}

/* Sections */
.section {
  margin-top: 30px;
  padding: 20px 0 10px;
}

.section-header {
  margin-bottom: 18px;
}

.section-header h2 {
  font-size: 32px;
  color: var(--header-gold);
  margin-bottom: 4px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 14px;
}

.section-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: flex-start;
}

.section-col {
  min-width: 0;
}

/* Cards and grids */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(var(--blur));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(199, 204, 209, 0.4);
  box-shadow: var(--shadow-soft);
  padding: 16px 16px 14px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.metric-card {
  background: rgba(15, 23, 42, 0.92);
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.8);
  position: relative;
  overflow: hidden;
}

.metric-card:hover {
  background-color: #1f2f49;
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(
    circle at 0 0,
    var(--header-gold-soft),
    transparent
  ); */
  opacity: 0.9;
  pointer-events: none;
}

.metric-label {
  display: block;
  font-size: 15px;
  color: #c7ccd1;
  margin-bottom: 4px;
}

.metric-main {
  font-size: 20px;
  font-weight: 600;
  color: var(--header-gold);
}

.metric-caption {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  display: inline-block;
}

/* Details / checklist */
.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-block: 6px;
  border-bottom: 1px dashed rgba(51, 65, 85, 0.9);
  font-size: 13px;
}

.detail-row:last-of-type {
  border-bottom: none;
}

.detail-row span:first-child {
  color: var(--text-muted);
  font-size: 14px;
}

.detail-row span:last-child {
  color: var(--text-main);
  font-size: 14px;
}

.mono {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--text-main);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--text-main);
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
}

.checklist li::before {
  content: "✓";
  font-size: 11px;
  margin-top: 2px;
  color: var(--header-gold);
}

/* Allocation */
.allocation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.alloc-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 16px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.alloc-card h3 {
  font-size: 14px;
  color: var(--header-gold);
  margin-bottom: 4px;
}

.alloc-percent {
  font-size: 18px;
  font-weight: 600;
  color: var(--header-gold);
  margin: 0 0 6px;
}

.lp-phases h3 {
  font-size: 15px;
  color: var(--header-gold);
  margin-bottom: 8px;
}

.phase-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  padding-block: 4px;
  border-bottom: 1px dashed rgba(51, 65, 85, 0.9);
  color: var(--text-main);
}

.phase-row:last-of-type {
  border-bottom: none;
}

.lp-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Final strip */
.final-strip {
  text-align: center;
  margin-top: 40px;
}

.final-strip h2 {
  font-size: 22px;
  color: var(--header-gold);
  margin-bottom: 6px;
}

.final-strip p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  padding: 14px 20px 26px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--text-main);
}

@media (max-width: 1120px) {
  .section-split {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .hero-left h4 {
    font-size: 24px;
    line-height: 36px;
  }

  .hero-right {
    justify-content: flex-start;
  }
  .hero-card {
    max-width: 100%;
  }
  .videoblk {
    height: 40vh !important;
  }
  .section-split {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .liquidity-infra.lsc {
    width: 100%;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .section-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav {
    padding-inline: 14px;
  }

  main {
    padding-inline: 14px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
}

.token-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
}

.token-table th {
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  text-align: left;
  padding: 15px;
}

.token-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.token-table tr:hover {
  background: #011631;
  transition: 0.3s;
}

/* Wallet */
.token-table span {
  font-size: 12px;
  word-break: break-all;
}

/* Copy button */
.token-table button {
  margin-left: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #facc15;
}

/* Link */
.token-table a {
  color: #38bdf8;
  text-decoration: none;
}

.token-table a:hover {
  text-decoration: underline;
}

/* Phases + Philosophy Section */
.phases-philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 24px;
}

.phases-section,
.philosophy-section {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(22px);
  border-radius: 18px;
  border: 1px solid rgba(199, 204, 209, 0.3);
  padding: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.section-gold {
  font-size: 16px;
  color: var(--header-gold);
  margin-bottom: 16px;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* Phase List */
.phase-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phase-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgb(20 29 51);
  border-radius: 12px;
  border-left: 3px solid var(--header-gold);
  transition: all 0.2s ease;
}

.phase-item:hover {
  background: #1f2f4980;
  transform: translateX(4px);
}

.phase-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--header-gold), #e6bf4a);
  color: #0f172a;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px var(--header-gold-glow);
  flex-shrink: 0;
}

.phase-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.phase-amount {
  font-weight: 600;
  color: var(--header-gold);
  font-size: 14px;
}

.phase-desc {
  font-size: 14px;
  color: var(--text-main);
}

.phase-content:hover {
  border-color: #d4af37;
  box-shadow: none;
}
/* Philosophy Grid */
.philosophy-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.philo-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-main);
}

.philo-icon {
  font-size: 16px;
  margin-top: 2px;
  color: var(--header-gold);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.5));
}

/* Responsive */
@media (max-width: 900px) {
  .phases-philosophy {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .phases-section,
  .philosophy-section {
    padding: 16px;
  }
}

/* Liquidity Infrastructure Section */
.liquidity-infra {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(22px);
  border-radius: 18px;
  border: 1px solid rgba(199, 204, 209, 0.3);
  padding: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.liquidity-infra::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
  border-radius: 50%;
  opacity: 0.6;
}

.infra-header {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 20px;
  padding-right: 20px;
}

.infra-stats {
  text-align: right;
  flex: 1;
}

.stat-main {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--header-gold);
  text-shadow: 0 0 12px var(--header-gold-glow);
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.infra-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.infra-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgb(20 29 51);
  border-radius: 12px;
  border-left: 3px solid var(--header-gold-soft);
  transition: all 0.2s ease;
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.4;
  width: 60%;
}

.infra-point:hover {
  background: #1f2f4980;
  border-left-color: var(--header-gold);
  transform: translateX(0px);
  box-shadow: none;
}

.point-icon {
  font-size: 18px;
  margin-top: 1px;
  color: var(--header-gold);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
  min-width: 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .liquidity-infra {
    padding: 20px;
  }

  .infra-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .infra-stats {
    text-align: left;
    align-self: stretch;
  }
}

@media (max-width: 640px) {
  .liquidity-infra {
    padding: 16px;
  }

  .liquidity-infra.lsc {
    width: 100% !important;
  }

  .stat-main {
    font-size: 20px;
  }
}

/* Verification + Summary Sections */
.verification-summary {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 30px;
  margin-top: 32px;
}

.verification-section,
.summary-section {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(22px);
  border-radius: 18px;
  border: 1px solid rgba(199, 204, 209, 0.3);
  padding: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
}

.verification-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent);
  border-radius: 50%;
}

/* Section Headers */
.section-header-verif,
.section-header-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-gold {
  font-size: 16px;
  color: var(--header-gold);
  margin: 0;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.verif-badge,
.summary-badge {
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(212, 175, 55, 0.15);
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid var(--header-gold-soft);
  font-weight: 500;
}

/* Verification Points */
.verif-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.verif-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgb(20 29 51);
  border-radius: 12px;
  border-left: 3px solid var(--header-gold-soft);
  transition: all 0.2s ease;
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.4;
}

.verif-point:hover {
  background: #1f2f4980;
  border-left-color: var(--header-gold);
  /* transform: translateX(4px); */
}

.point-icon {
  font-size: 18px;
  margin-top: 1px;
  color: var(--header-gold);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
  min-width: 24px;
}

/* Summary Stats Grid */
.summary-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.stat-item {
  text-align: center;
  padding: 12px 8px;
  background: rgb(20 29 51);
  border-radius: 12px;
  border: 1px solid #1f2f4980;
  transition: all 0.2s ease;
}

.stat-item:hover {
  background: #1f2f4980;
  /* transform: scale(1.02); */
  box-shadow: none;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--header-gold);
}

/* Summary Features */
.summary-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgb(20 29 51);
  border-radius: 10px;
  border: 1px solid var(--header-gold-soft);
  font-size: 14px;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.feature-tag:hover {
  background: #1f2f4980;
  /* border-color: var(--header-gold); */
  /* transform: translateX(4px); */
}

.feature-icon {
  font-size: 14px;
  color: var(--header-gold);
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.4));
}

/* Summary Tagline */
.summary-tagline {
  background: linear-gradient(135deg, var(--header-gold), #e6bf4a);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 14px;
  font-weight: 500;
  /* text-align: center; */
  padding: 12px;
  border-radius: 12px;
  background-color: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--header-gold-soft);
}

/* Responsive */
@media (max-width: 900px) {
  .verification-summary {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .verification-section,
  .summary-section {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .summary-stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 10px 12px;
  }
  main {
    padding-inline: 24px;
  }
  .sub-page-banner,
  .videoblk {
    height: 40vh !important;
  }
  main .container {
    padding: 0px 0px !important;
  }
  .hero-left h2 {
    font-size: 24px !important;
  }
  .hero-left h4 {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
  }
  main h2 {
    font-size: 24px !important;
  }
  .core-values ul {
    padding-left: 0rem;
  }
  .phase-list {
    gap: 16px;
    margin-top: 16px;
  }
  .liquidity-infra {
    margin-bottom: 0 !important;
  }
  #governance {
    margin-top: 40px !important;
  }
  #governance .section-col h2 {
    margin-bottom: 0 !important;
  }
  #governance .section-col .core-values {
    margin-top: 16px;
  }
}
