:root {
  --bg: #f7f8fa;
  --text: #0f1e2d;
  --muted: #5d6a78;
  --brand: #0f4c81;
  --brand-dark: #0a365b;
  --card: #ffffff;
  --line: #d8e0ea;
  --ok: #1d7a4f;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #e9f1fa 0%, #f7f8fa 40%);
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1120px, 92vw); margin: 0 auto; }
.narrow { width: min(760px, 92vw); }
.site-header {
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  backdrop-filter: blur(6px);
  z-index: 10;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 10px; }
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-full {
  width: 230px;
  height: auto;
  display: block;
}
nav { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--brand);
  cursor: pointer;
}
.nav-dropdown-toggle::after {
  content: " \25BE";
  font-size: 0.7rem;
  color: #587089;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid #d9e3ee;
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(12, 35, 56, 0.14);
  padding: 8px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 20;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 18px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid #d9e3ee;
  border-top: 1px solid #d9e3ee;
  transform: rotate(45deg);
}
.nav-dropdown-menu a {
  display: block;
  border-radius: 9px;
  padding: 9px 11px;
  color: #1b3146;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-dropdown-menu a:hover {
  background: #f1f6fb;
  text-decoration: none;
  color: #0f4c81;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
.hero { padding: 70px 0 40px; }
.hero-bg-main {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(9, 25, 41, 0.84) 0%, rgba(9, 25, 41, 0.66) 45%, rgba(9, 25, 41, 0.42) 100%),
    url('/images/navigar-s1.PNG');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-bg-main h1,
.hero-bg-main .lead,
.hero-bg-main .eyebrow,
.hero-bg-main .stats h3,
.hero-bg-main .stats li {
  color: #f5f9fd;
}
.hero-bg-main .stats {
  background: rgba(8, 25, 42, 0.55);
  border: 1px solid rgba(199, 220, 239, 0.3);
  backdrop-filter: blur(6px);
}
.hero-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 24px; align-items: center; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 8px 0 12px; line-height: 1.1; }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; color: var(--brand); font-size: .78rem; font-weight: 700; margin: 0; }
.lead { color: var(--muted); max-width: 60ch; }
.actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.dashboard-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.dashboard-main h1 {
  margin: 0;
}
.dashboard-sidebar {
  position: sticky;
  top: 84px;
}
.dashboard-sidebar h3 {
  margin: 8px 0 10px;
}
.sidebar-links {
  display: grid;
  gap: 6px;
}
.sidebar-group + .sidebar-group {
  margin-top: 8px;
}
.sidebar-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #1b334a;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 0.92rem;
}
.sidebar-link-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  flex: 0 0 18px;
}
.sidebar-link-icon svg {
  width: 100%;
  height: 100%;
}
.sidebar-link-label {
  line-height: 1.2;
}
.sidebar-links a:hover {
  background: #f1f6fb;
  border-color: #dbe7f3;
}
.sidebar-links a.active {
  background: #eaf3fc;
  border-color: #cddff1;
  color: #0f4c81;
  font-weight: 700;
}
.sidebar-logout {
  margin-top: 12px;
}
.sidebar-logout button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid #e06a74;
  color: #e06a74;
  background: transparent;
  font: inherit;
  font-weight: 700;
  padding: 8px 10px;
  cursor: pointer;
}
.sidebar-logout button:hover {
  background: rgba(224, 106, 116, 0.1);
}
.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 16px;
}
.quick-action-card {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 96px;
  border-radius: 14px;
  border: 1px solid #d8e4ef;
  background: #fff;
  text-decoration: none;
  font-weight: 700;
}
.quick-action-card span {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #eaf3fc;
  color: #0f4c81;
}
.quick-action-card span svg {
  width: 27px;
  height: 27px;
}
.network-widget img {
  width: 100%;
  max-width: 300px;
  margin: 12px auto 0;
  display: block;
}
.portal-theme .card.network-widget {
  background: #ffffff;
  border: 1px solid #d5e0ec;
  border-radius: 18px;
  padding: 18px 20px 20px;
}
.network-widget-link {
  text-decoration: none;
  cursor: pointer;
}
.network-widget-link:hover {
  text-decoration: none;
  border-color: #9db3cb;
  box-shadow: 0 12px 24px rgba(13, 31, 49, 0.12);
}
.portal-theme .network-widget h3 {
  margin: 0;
  text-align: center;
  color: #112a43;
  font-size: clamp(1.35rem, 1.7vw, 1.95rem);
  font-weight: 700;
  line-height: 1.05;
}
.portal-theme .network-widget .muted {
  margin-top: 6px;
  margin-bottom: 0;
  text-align: center;
  color: #f2c83f;
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  font-weight: 600;
}
.network-globe-canvas {
  width: min(280px, 72%);
  aspect-ratio: 1 / 1;
  margin: 10px auto 6px;
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
}
.network-globe-canvas canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.rotating-earth {
  width: min(300px, 76%);
  aspect-ratio: 1 / 1;
  margin: 10px auto 4px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 35% 28%, #1f5f96 0%, #0d3154 48%, #081b30 100%);
  box-shadow:
    inset -34px 0 62px rgba(0, 0, 0, 0.62),
    inset 22px 0 40px rgba(130, 195, 245, 0.16),
    0 0 0 1px #d7e2ed,
    0 12px 28px rgba(10, 26, 46, 0.28);
}
.portal-theme .network-widget {
  background: #ffffff;
}
.rotating-earth::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: radial-gradient(circle at 28% 28%, rgba(165, 223, 255, 0.42) 0%, rgba(148, 213, 250, 0.12) 28%, transparent 60%);
  pointer-events: none;
}
.rotating-earth::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle at 84% 52%, rgba(5, 14, 24, 0) 0%, rgba(5, 14, 24, 0.74) 68%);
  pointer-events: none;
}
.earth-surface {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background-color: #0f4c81;
  background-image:
    radial-gradient(circle at 36% 30%, rgba(170, 224, 255, 0.28), transparent 45%),
    url('/images/navigar-dot-map-bright.svg');
  background-repeat: repeat-x, repeat-x;
  background-size: 100% 100%, 240% 100%;
  background-position: center, 0 0;
  background-blend-mode: normal, screen;
  filter: contrast(1.55) brightness(1.03) saturate(1.2);
  animation: earth-rotate 20s linear infinite;
}
.earth-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background-image:
    radial-gradient(circle at 30% 34%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 26%, transparent 52%),
    repeating-linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.08) 0 10px,
      rgba(255, 255, 255, 0.02) 10px 18px,
      rgba(255, 255, 255, 0.07) 18px 28px
    );
  background-size: cover, 280px 140px;
  background-position: center, 0 0;
  mix-blend-mode: screen;
  opacity: 0.38;
  animation: earth-clouds 36s linear infinite reverse;
}
.earth-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 68% 44%, rgba(5, 15, 27, 0) 0%, rgba(5, 15, 27, 0.28) 58%, rgba(5, 15, 27, 0.5) 100%),
    radial-gradient(circle at 24% 20%, rgba(186, 231, 255, 0.26), transparent 52%);
  pointer-events: none;
}
@keyframes earth-rotate {
  from { background-position: center, 0 0; }
  to { background-position: center, -560px 0; }
}
@keyframes earth-clouds {
  from { background-position: center, 0 0; }
  to { background-position: center, 560px 0; }
}
.portal-theme {
  background: #ffffff;
  color: #17344f;
}
.admin-theme {
  background: #ffffff;
  color: #17344f;
}
.admin-theme .site-header {
  display: none;
}
.admin-theme .section {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff;
}
.admin-theme .container {
  width: 100%;
  margin: 0;
}
.admin-theme .dashboard-shell {
  min-height: 100vh;
  gap: 0;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: stretch;
}
.admin-theme .dashboard-sidebar.card {
  background: #103a2f;
  border: 1px solid #1f5b4b;
  box-shadow: none;
  border-radius: 0;
  min-height: 100%;
  height: 100%;
  width: 320px;
  max-width: 320px;
  padding: 18px 20px;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 7;
}
.admin-theme .dashboard-main {
  padding: 0;
  background: #ffffff;
  min-height: 100vh;
  min-width: 0;
  grid-column: 2 / -1;
}
.admin-theme .sidebar-links a {
  color: #d5ede5;
  border: 0;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 8px;
}
.admin-theme .sidebar-link-icon {
  color: #b0d8cb;
}
.admin-theme .sidebar-links a:hover {
  background: #17493c;
  color: #ffffff;
}
.admin-theme .sidebar-links a.active {
  background: #1b5647;
  color: #f3d15a;
}
.admin-theme .sidebar-links a.active .sidebar-link-icon {
  color: #f3d15a;
}
.admin-theme .sidebar-logout button {
  border: 0;
  color: #ff7a86;
  text-align: left;
  padding-left: 8px;
}
.admin-theme .portal-topbar {
  height: 74px;
  background: #103a2f;
  border-bottom: 1px solid #1f5b4b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 6;
}
.admin-theme .portal-menu-btn {
  color: #f2c83f;
}
.admin-theme .portal-user-toggle {
  border: 1px solid #2c6b59;
  background: #103a2f;
}
.admin-theme .portal-user-toggle:hover {
  border-color: #3a816d;
}
.admin-theme .portal-status {
  color: #4bdb90;
}
.admin-theme .portal-content {
  padding: 30px 34px 24px;
  background: #ffffff;
}
.admin-theme .dashboard-main h1 {
  color: #17344f;
}
.admin-theme .dashboard-sidebar h3 {
  color: #f5fbf9;
}
.admin-theme .card.metric {
  background: #f7fbfa;
  border-color: #cfe0db;
}
.admin-theme .admin-portal-content .card {
  border-color: #ccddd7;
}
.admin-theme .admin-portal-content .muted {
  color: #597087;
}
.admin-theme .tab-links .btn {
  min-width: 128px;
  text-align: center;
}
.admin-theme .admin-head {
  align-items: flex-start;
}
.admin-theme .admin-head h1 {
  margin: 0 0 4px;
}
.admin-theme .admin-head .muted {
  max-width: 760px;
}
.admin-theme .admin-card-head-row {
  margin: -6px 0 8px;
  padding-top: 0;
}
.admin-theme .admin-card-head-row h3 {
  margin: 0;
  color: #17344f;
}
.admin-theme .admin-directory-head {
  margin-bottom: 14px;
  align-items: end;
}
.admin-theme .admin-directory-head h3 {
  margin: 0 0 4px;
  color: #17344f;
}
.admin-directory-search {
  min-width: 280px;
  max-width: 360px;
}
.admin-investor-list {
  display: grid;
  gap: 10px;
}
.admin-investor-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) 2fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid #d4e0ec;
  border-radius: 12px;
  background: #f9fcff;
  padding: 10px 12px;
}
.admin-investor-main strong {
  color: #17344f;
}
.admin-investor-main .muted {
  margin-top: 2px;
  font-size: 0.82rem;
}
.admin-investor-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: #496682;
  font-size: 0.86rem;
}
.admin-investor-metrics strong {
  color: #17344f;
}
.portal-theme .section {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff;
}
.portal-theme .container {
  width: 100%;
  margin: 0;
}
.portal-theme .site-header {
  display: none;
}
.portal-theme .nav-wrap {
  padding: 12px 0;
}
.portal-theme nav a,
.portal-theme .nav-dropdown-toggle {
  color: #d5deea;
}
.portal-theme .btn-outline {
  background: transparent;
  color: #f0c93c;
  border-color: #7f6a24;
}
.portal-theme .dashboard-sidebar.card {
  background: #0d1f31;
  border: 1px solid #1c344c;
  box-shadow: none;
  border-radius: 0;
  min-height: 100%;
  height: 100%;
  width: 320px;
  max-width: 320px;
  padding: 18px 20px;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 7;
}
.portal-theme .dashboard-sidebar {
  top: 0;
}
.portal-theme .dashboard-shell {
  min-height: 100vh;
  gap: 0;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: stretch;
}
.portal-theme .dashboard-main {
  padding: 0;
  background: #ffffff;
  min-height: 100vh;
  min-width: 0;
  grid-column: 2 / -1;
}
.sidebar-brand {
  margin-bottom: 18px;
}
.sidebar-brand img {
  max-width: 190px;
  height: auto;
}
.sidebar-section {
  margin: 16px 0 8px;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9fb6ca;
  font-weight: 700;
}
.portal-theme .dashboard-sidebar h3,
.portal-theme .dashboard-main h1 {
  color: #f4f7fc;
}
.portal-theme .sidebar-links a {
  color: #d3deeb;
  border: 0;
  font-size: 0.94rem;
  font-weight: 500;
  padding: 10px 8px;
  line-height: 1.35;
}
.portal-theme .sidebar-link-icon {
  color: #b7c9db;
}
.portal-theme .sidebar-links a:hover {
  background: #14304a;
  color: #fff;
}
.portal-theme .sidebar-links a.active {
  background: #173955;
  color: #f2c83f;
  font-weight: 600;
}
.portal-theme .sidebar-links a.active .sidebar-link-icon {
  color: #f2c83f;
}
.portal-theme .sidebar-logout button {
  border: 0;
  color: #ff6d7a;
  text-align: left;
  padding-left: 8px;
}
.portal-topbar {
  height: 74px;
  background: #0d1f31;
  border-bottom: 1px solid #1c344c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 6;
}
.portal-menu-btn {
  border: 0;
  background: transparent;
  color: #f2c83f;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.portal-status {
  display: inline-block;
  color: #58c87a;
  margin-right: 6px;
  font-weight: 600;
  font-size: 0.82rem;
}
.portal-user-menu {
  position: relative;
}
.portal-user-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #214362;
  background: #0d1f31;
  border-radius: 10px;
  padding: 8px 12px;
  color: #eaf2fb;
  cursor: pointer;
}
.portal-user-toggle:hover {
  border-color: #2a5379;
}
.portal-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.25rem;
  background: #6f46d2;
  color: #ffffff;
}
.portal-user-meta {
  display: grid;
  text-align: left;
  line-height: 1.2;
}
.portal-user-meta strong {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
}
.portal-user-caret {
  color: #eaf2fb;
  font-size: 0.9rem;
}
.portal-user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 190px;
  border-radius: 12px;
  border: 1px solid #36495c;
  background: #1a1b1f;
  overflow: hidden;
  z-index: 15;
}
.portal-user-dropdown a,
.portal-user-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  border: 0;
  color: #e9eef5;
  cursor: pointer;
}
.portal-user-dropdown form {
  margin: 0;
  border-top: 1px solid #3b4b5e;
}
.portal-user-dropdown a:hover {
  background: #20242b;
}
.portal-user-dropdown button {
  color: #ff5f72;
}
.portal-user-dropdown button:hover {
  background: #20242b;
}
.portal-content {
  padding: 30px 34px 24px;
  background: #ffffff;
}
.portal-content h1 {
  margin: 0 0 4px;
  font-size: 2rem;
}
.portal-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}
.portal-action-btn {
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid #5da8e2;
  background: #67b2ec;
  color: #0c2940;
  text-decoration: none;
  font-weight: 700;
}
.portal-action-btn-light {
  background: #fff;
  border-color: #c7d0dd;
  color: #2f445e;
}
.portal-stats-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.portal-asset-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.portal-stat-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
  color: #243f5a;
}
.portal-value {
  margin: 6px 0 0;
  font-size: clamp(1.2rem, 1.9vw, 1.9rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0f2a44;
  overflow-wrap: anywhere;
}
.portal-badge {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 8px;
  background: #184d35;
  color: #4ce18e;
  font-size: 0.82rem;
  font-weight: 700;
}
.daily-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #24a261;
  color: #f2fff7;
  font-size: 0.95rem;
  font-weight: 700;
}
.profit-chart-wrap {
  margin-top: 10px;
  border-top: 1px solid #dbe5ef;
  padding-top: 10px;
}
.portal-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  gap: 10px;
  flex-wrap: wrap;
}
.portal-chart-head h3 {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 700;
}
.chart-updated {
  margin: 0;
  font-size: 0.72rem;
  color: #6b7e92;
  font-weight: 500;
}
.profit-chart-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  color: #5f6d78;
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1.1;
}
.profit-note-swatch {
  width: 22px;
  height: 7px;
  background: #85d094;
  border: 1px solid #2e8350;
  display: inline-block;
}
.profit-chart {
  width: 100%;
  height: 340px;
  display: block;
}
.portal-theme .card {
  background: #ffffff;
  border: 1px solid #d5e0ec;
  color: #11314e;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.wallet-page .wallet-section-card,
.wallet-page .wallet-stat-card,
.wallet-page .wallet-balance-card {
  background: #f3f7fc;
  border-color: #c5d3e2;
}
.wallet-page .wallet-balance-card {
  text-align: center;
  display: grid;
  place-items: center;
  min-height: 150px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.wallet-page .wallet-balance-card h3 {
  width: 100%;
}
.wallet-page .wallet-balance-card .portal-value {
  margin-top: 8px;
}
.wallet-page .wallet-balance-card .muted {
  margin-top: 4px;
}
.wallet-page .wallet-balance-main .portal-value {
  color: #1d7a4f;
}
.wallet-page .wallet-total-invested .portal-value {
  color: #0f1e2d;
}
.wallet-page .wallet-pending-invest .portal-value {
  color: #e18b1f;
}
.wallet-page .wallet-profit-total .portal-value {
  color: #005dff;
  font-weight: 800;
}
.wallet-page .wallet-monthly-income .portal-value {
  color: #6f46d2;
}
.wallet-page .wallet-total-withdrawn .portal-value {
  color: #cf2f3f;
}
.wallet-page .wallet-remaining-withdrawable .portal-value {
  color: #1d7a4f;
}
.wallet-page .wallet-section-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f2c83f;
}
.wallet-page .wallet-section-card h3.wallet-section-title {
  color: #f2c83f;
}
.wallet-page .wallet-title-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  color: #f2c83f;
}
.wallet-page .wallet-title-icon svg {
  width: 100%;
  height: 100%;
}
.dashboard-page .card,
.dashboard-page .quick-action-card {
  background: #f3f7fc;
  border-color: #c5d3e2;
}
.dashboard-page .stat-invested .portal-value {
  color: #1d7a4f;
}
.dashboard-page .stat-earnings .portal-value {
  color: #005dff;
  font-weight: 800;
}
.dashboard-page .stat-withdrawals .portal-value {
  color: #cf2f3f;
}
.dashboard-page .stat-portfolio .portal-value {
  color: #0f1e2d;
}
.tech-stats-card {
  background: #f3f7fc !important;
  border-color: #c5d3e2 !important;
}
.tech-stats-list {
  margin-top: 8px;
}
.tech-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 2px;
  border-bottom: 1px solid #d6e1ee;
}
.tech-stats-row:last-child {
  border-bottom: 0;
}
.tech-stats-row span {
  color: #4f657a;
  font-size: 0.9rem;
  font-weight: 600;
}
.tech-stats-row strong {
  color: #203e5b;
  font-size: 0.95rem;
}
.tech-status-active {
  color: #1d7a4f !important;
}
.routes-page {
  padding-top: 24px;
}
.routes-live-card {
  background: #ffffff !important;
  border: 1px solid #d5e0ec !important;
  border-radius: 22px !important;
  min-height: calc(100vh - 420px);
  padding: 20px 18px 16px !important;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 8px;
  overflow: visible;
}
.routes-head {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  margin-bottom: 2px;
}
.routes-head h2 {
  margin: 0;
  color: #16344f !important;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
}
.routes-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f2c83f;
  color: #111923;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.routes-subtitle {
  margin: 10px 0 0;
  color: #6a7e92;
  font-size: 0.95rem;
  font-weight: 600;
}
.shipping-routes-globe {
  width: min(500px, 70%);
  aspect-ratio: 1 / 1;
  margin: 10px auto 8px;
  overflow: visible;
}
.shipping-routes-globe canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.routes-legend {
  display: grid;
  gap: 10px;
  width: fit-content;
  margin: 6px 0 0 6px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d4deea;
  background: #f8fbff;
}
.routes-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #17344f;
  font-weight: 600;
  font-size: 0.86rem;
}
.routes-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
}
.routes-dot-oil {
  background: #ffd21f;
}
.routes-dot-container {
  background: #18e7ff;
}
.routes-dot-container-eu {
  background: #1fbf63;
}
.portal-theme .metric p,
.portal-theme .muted {
  color: #5c748c;
}
.portal-theme .metric h3,
.portal-theme .card h3,
.portal-theme strong {
  color: #16344f;
}
.portal-theme .portal-user-meta strong {
  color: #ffffff;
}
.portal-theme .quick-action-card {
  background: #ffffff;
  border-color: #d5e0ec;
  color: #143957;
  font-size: 0.95rem;
  font-weight: 700;
}
.portal-theme .quick-action-card span {
  background: #f2c83f;
  color: #10141b;
  font-weight: 700;
}
.portal-content,
.quick-actions,
.portal-asset-grid,
.grid-2,
.portal-stat-card {
  min-width: 0;
}
.portal-theme .row,
.portal-theme .block-row {
  border-color: #2d3441;
}
.portal-theme input,
.portal-theme select,
.portal-theme textarea {
  background: #ffffff;
  border-color: #cfd7e3;
  color: #2f445e;
}
.portal-theme .btn {
  background: #67b2ec;
  border-color: #67b2ec;
  color: #0c2940;
}
.portal-theme .btn:hover {
  background: #56a6e5;
}
.deposits-grid {
  align-items: start;
}
.deposits-history .row {
  align-items: flex-start;
}
.deposits-history .row span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.deposits-history .row strong {
  white-space: nowrap;
}
.deposit-request-card {
  width: 100%;
  padding-left: 150px !important;
  padding-right: 150px !important;
  background: #edf3fa !important;
  border-color: #c0d0e1 !important;
}
.deposits-page {
  padding-left: 150px;
  padding-right: 150px;
}
.withdrawals-page {
  padding-left: 150px;
  padding-right: 150px;
}
.deposit-method-group {
  display: grid;
  gap: 10px;
}
.deposit-method-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #223f5b;
}
.deposit-method-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.deposit-method-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  min-height: 112px;
  padding: 12px 10px;
  border: 1px solid #cfdceb;
  border-radius: 12px;
  background: #f8fbff;
  cursor: pointer;
  text-align: center;
}
.deposit-method-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.deposit-method-icon {
  width: 32px;
  height: 32px;
  color: #245580;
}
.deposit-method-icon svg {
  width: 100%;
  height: 100%;
}
.deposit-method-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e3f5f;
  line-height: 1.2;
}
.deposit-method-card:has(input[type="radio"]:checked) {
  border-color: #6fa6d8;
  background: #eaf4ff;
  box-shadow: inset 0 0 0 1px #b9d8f3;
}
.deposit-method-card:has(input[type="radio"]:checked) .deposit-method-icon {
  color: #0f4c81;
}
.deposit-method-card:has(input[type="radio"]:checked) .deposit-method-label {
  color: #0f3659;
}
.deposit-request-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.deposit-request-card .deposit-btn-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.deposit-request-card .deposit-btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.withdrawal-request-card {
  width: 100%;
  background: #edf3fa !important;
  border-color: #c0d0e1 !important;
}
.withdraw-balance-input {
  color: #1d7a4f;
  font-weight: 800;
}
.withdraw-balance-panel {
  margin: 2px 0 6px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9d8e8;
  background: #f8fcff;
  text-align: center;
}
.withdraw-balance-label {
  margin: 0;
  font-size: 0.88rem;
  color: #4f657a;
  font-weight: 700;
}
.withdraw-balance-value {
  margin: 6px 0 0;
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
  color: #1d7a4f;
  font-weight: 800;
  line-height: 1.1;
}
.withdraw-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.withdraw-option-fields {
  display: grid;
  gap: 10px;
}
.withdraw-option-fields.is-hidden {
  display: none;
}
.withdrawal-history-card {
  background: #f3f7fc !important;
  border-color: #c5d3e2 !important;
}
.withdrawal-row {
  align-items: center;
}
.withdrawal-row-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.withdrawal-row-meta strong {
  font-size: 0.92rem;
  color: #1e3d59;
}
.withdrawal-status {
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: capitalize;
}
.withdrawal-status.status-pending {
  background: #fff4d6;
  color: #946700;
}
.withdrawal-status.status-approved {
  background: #dff8eb;
  color: #1b7b4f;
}
.withdrawal-status.status-declined {
  background: #ffe1e5;
  color: #b62536;
}
.portfolio-page {
  padding-left: 70px;
  padding-right: 70px;
}
.portfolio-summary-card {
  background: #edf3fa !important;
  border-color: #c0d0e1 !important;
}
.portfolio-mini-card {
  background: #f8fbff !important;
  border-color: #cddced !important;
}
.portfolio-figure {
  margin: 6px 0 0;
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  font-weight: 800;
  color: #16344f;
}
.portfolio-figure.profit {
  color: #1d7a4f;
}
.portfolio-table-card {
  background: #f3f7fc !important;
  border-color: #c5d3e2 !important;
}
.portfolio-table-wrap {
  overflow-x: auto;
}
.portfolio-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}
.portfolio-table th,
.portfolio-table td {
  text-align: left;
  padding: 10px 10px;
  border-bottom: 1px solid #d7e2ef;
  vertical-align: middle;
  font-size: 0.88rem;
  color: #243f5a;
}
.portfolio-table th {
  background: #ecf3fb;
  color: #1b3b59;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}
.portfolio-table .profit-cell {
  color: #1d7a4f;
  font-weight: 700;
}
.portfolio-status {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: capitalize;
}
.portfolio-status.status-active {
  background: #dff8eb;
  color: #1b7b4f;
}
.portfolio-status.status-pending {
  background: #fff4d6;
  color: #946700;
}
.portfolio-status.status-approved {
  background: #dff8eb;
  color: #1b7b4f;
}
.portfolio-status.status-declined {
  background: #ffe1e5;
  color: #b62536;
}
.portfolio-status.status-matured {
  background: #e6efff;
  color: #2851a8;
}
.portfolio-status.status-closed {
  background: #eef2f7;
  color: #516477;
}
.transactions-page {
  padding-left: 90px;
  padding-right: 90px;
}
.tax-page {
  padding-left: 70px;
  padding-right: 70px;
}
.tax-hero {
  text-align: center;
  padding: 10px 0 6px;
}
.tax-hero-icon {
  width: 48px;
  height: 48px;
  color: #50678c;
  margin: 0 auto 8px;
}
.tax-hero-icon svg {
  width: 100%;
  height: 100%;
}
.tax-hero h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  color: #1d3a57;
}
.tax-hero p {
  margin: 8px 0 0;
  color: #6a7e92;
  font-size: 1.05rem;
}
.tax-table-card {
  background: #f3f7fc !important;
  border-color: #c5d3e2 !important;
}
.tax-table-wrap {
  overflow-x: auto;
}
.tax-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.tax-table th,
.tax-table td {
  text-align: left;
  padding: 11px 10px;
  border-bottom: 1px solid #d8e3ef;
  color: #2d4864;
  font-size: 0.9rem;
}
.tax-table th {
  background: #ecf3fb;
  color: #1b3b59;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tax-empty-row {
  text-align: center !important;
  color: #66809a !important;
  font-size: 0.96rem !important;
  padding: 22px 14px !important;
}
.tax-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: #dff8eb;
  color: #1b7b4f;
  font-size: 0.75rem;
  font-weight: 700;
}
.tax-download-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #84add1;
  background: #eaf4ff;
  color: #0f4c81;
  font-weight: 700;
  text-decoration: none;
}
.tax-download-btn:hover {
  text-decoration: none;
  background: #dfefff;
}
.tax-empty-card {
  text-align: center;
  background: #f8fbff !important;
  border-color: #cddbec !important;
  padding: 28px 20px !important;
}
.tax-empty-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 2px solid #6c7f96;
  color: #6c7f96;
  margin: 0 auto 10px;
  font-weight: 800;
  font-size: 1.55rem;
  display: grid;
  place-items: center;
  line-height: 1;
}
.ticket-page {
  padding-left: 70px;
  padding-right: 70px;
}
.ticket-top-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 14px;
}
.ticket-form-card {
  background: #edf3fa !important;
  border-color: #c0d0e1 !important;
}
.ticket-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.ticket-info-card {
  background: #f3f7fc !important;
  border-color: #c5d3e2 !important;
}
.ticket-kv-list {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.ticket-kv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #d9e3ef;
}
.ticket-kv-row:last-child {
  border-bottom: 0;
}
.ticket-kv-row span {
  color: #597087;
  font-size: 0.88rem;
}
.ticket-kv-row strong {
  color: #1f3e5d;
  font-size: 0.9rem;
  text-align: right;
}
.ticket-history-card {
  background: #f3f7fc !important;
  border-color: #c5d3e2 !important;
}
.ticket-item {
  border: 1px solid #d4dfec;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  margin-top: 10px;
}
.ticket-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: capitalize;
}
.ticket-status.status-open {
  background: #e6efff;
  color: #2851a8;
}
.ticket-status.status-in_progress {
  background: #fff4d6;
  color: #946700;
}
.ticket-status.status-resolved {
  background: #dff8eb;
  color: #1b7b4f;
}
.ticket-status.status-closed {
  background: #eef2f7;
  color: #516477;
}
.ticket-message {
  margin: 10px 0 8px;
  color: #2d4864;
}
.ticket-reply {
  border: 1px solid #d8e4f1;
  background: #f7fbff;
  border-radius: 10px;
  padding: 10px;
}
.ticket-reply p {
  margin: 0;
}
.ticket-reply-label {
  margin: 0 0 6px;
  color: #0f4c81;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.admin-ticket-filter-card {
  background: #f8fbff !important;
}
.admin-ticket-filter-row {
  align-items: end;
}
.admin-ticket-filter-row label {
  display: grid;
  gap: 6px;
  min-width: 220px;
}
.admin-ticket-item p {
  margin: 6px 0;
}
.admin-ticket-update-form {
  margin-top: 10px;
}
.transactions-card {
  background: #f3f7fc !important;
  border-color: #c5d3e2 !important;
}
.profile-page {
  padding-left: 90px;
  padding-right: 90px;
}
.profile-top-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.profile-summary-card {
  background: #f3f7fc !important;
  border-color: #c5d3e2 !important;
}
.profile-kv-list {
  display: grid;
  gap: 8px;
}
.profile-kv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #d7e2ef;
}
.profile-kv-row:last-child {
  border-bottom: 0;
}
.profile-kv-row span {
  color: #5c748c;
  font-size: 0.88rem;
}
.profile-kv-row strong {
  color: #1b3b59;
  font-size: 0.9rem;
  text-align: right;
}
.profile-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 2px 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #dff8eb;
  color: #1b7b4f;
  font-size: 0.76rem;
  font-weight: 700;
}
.profile-form-card {
  background: #edf3fa !important;
  border-color: #c0d0e1 !important;
}
.profile-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}
.profile-fields-grid label {
  margin: 0;
}
.transaction-row {
  align-items: center;
}
.transaction-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.transaction-meta strong {
  color: #1e3d59;
}
.transaction-meta em {
  font-style: normal;
  color: #5a7086;
  font-size: 0.84rem;
}
.transaction-status {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: capitalize;
}
.transaction-status.status-pending {
  background: #fff4d6;
  color: #946700;
}
.transaction-status.status-approved {
  background: #dff8eb;
  color: #1b7b4f;
}
.transaction-status.status-declined {
  background: #ffe1e5;
  color: #b62536;
}
.txn-amount-deposit {
  color: #1d7a4f;
}
.txn-amount-withdrawal {
  color: #0f4c81;
}

@media (max-width: 1200px) {
  .portfolio-page {
    padding-left: 24px;
    padding-right: 24px;
  }
  .transactions-page {
    padding-left: 24px;
    padding-right: 24px;
  }
  .tax-page {
    padding-left: 24px;
    padding-right: 24px;
  }
  .ticket-page {
    padding-left: 24px;
    padding-right: 24px;
  }
  .ticket-top-grid {
    grid-template-columns: 1fr;
  }
  .profile-page {
    padding-left: 24px;
    padding-right: 24px;
  }
  .profile-top-grid,
  .profile-fields-grid {
    grid-template-columns: 1fr;
  }
}
.crypto-address-row {
  border-bottom: 0;
  padding: 0;
  gap: 8px;
}
.crypto-address-row input {
  flex: 1;
  min-width: 0;
}
.crypto-qr-wrap {
  display: grid;
  justify-items: start;
  gap: 8px;
}
.crypto-qr-image {
  width: 170px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #c9d8e8;
  background: #ffffff;
  padding: 6px;
}
.crypto-confirm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.crypto-confirm-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.crypto-confirm-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.calc-hero {
  background: linear-gradient(120deg, #f4f9ff 0%, #ffffff 65%);
  border: 1px solid #d7e5f3;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.calc-results h3 {
  margin-top: 0;
}
.calc-metrics {
  display: grid;
  gap: 10px;
}
.calc-label {
  margin: 0;
  color: #637587;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.calc-results h2 {
  margin: 4px 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  color: #113a5d;
}
.calc-results hr {
  border: 0;
  border-top: 1px solid #e1e9f2;
  margin: 12px 0;
}
.calc-meta p {
  margin: 0 0 8px;
  color: #41586e;
}
.auth-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}
.auth-info {
  background: linear-gradient(145deg, #ffffff 0%, #f2f8ff 100%);
  border: 1px solid #d8e5f2;
}
.auth-info h1 {
  margin: 8px 0 10px;
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  line-height: 1.15;
}
.auth-form {
  background: #ffffff;
  border: 1px solid #d8e5f2;
  box-shadow: 0 14px 30px rgba(12, 35, 56, 0.08);
}
.auth-form h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}
.auth-clean {
  background:
    linear-gradient(rgba(243, 244, 246, 0.62), rgba(243, 244, 246, 0.62)),
    url('/images/signin-login.PNG') center center / cover no-repeat fixed;
  color: #2e3440;
}
.auth-clean-wrap {
  min-height: 100vh;
  padding: 52px 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.auth-clean-logo {
  margin: 26px 0 28px;
}
.auth-clean-logo img {
  width: min(280px, 66vw);
  height: auto;
  display: block;
}
.auth-clean-card {
  width: min(410px, 100%);
  background: #ffffff;
  border: 1px solid #dde2e8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(26, 39, 57, 0.08);
  padding: 16px 16px 14px;
}
.auth-clean-card-wide {
  width: min(640px, 100%);
}
.auth-clean-card h1 {
  margin: 0 0 16px;
  font-size: 1.55rem;
  color: #2c3440;
}
.auth-clean-notice {
  margin-top: 0;
  margin-bottom: 12px;
}
.auth-clean-form {
  gap: 10px;
  margin-bottom: 12px;
}
.auth-clean-inline-link {
  margin: -2px 0 2px;
  font-size: 0.84rem;
}
.auth-clean-inline-link a {
  color: #1676bf;
  text-decoration: none;
}
.auth-clean-inline-link a:hover {
  text-decoration: underline;
}
.auth-clean-form label {
  color: #485466;
  font-weight: 700;
  font-size: 0.96rem;
}
.auth-clean-form input,
.auth-clean-form select {
  height: 40px;
  border: 1px solid #cfd6df;
  border-radius: 6px;
  padding: 10px 12px;
  background: #ffffff;
}
.auth-clean-form textarea {
  border: 1px solid #cfd6df;
  border-radius: 6px;
}
.auth-clean-btn {
  border-color: #157ecb;
  background: #157ecb;
  color: #ffffff;
  border-radius: 6px;
  height: 40px;
  font-size: 0.96rem;
  font-weight: 700;
}
.auth-clean-btn:hover {
  background: #136fb3;
  border-color: #136fb3;
}
.auth-clean-helper {
  margin: 24px 0 0;
  font-size: 0.86rem;
}
.auth-clean .consent-row {
  color: #485466;
}
.auth-clean-footer {
  margin-top: auto;
  padding-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #425366;
  font-size: 0.95rem;
}
.auth-clean-footer a {
  color: #1676bf;
  text-decoration: none;
}
.auth-clean-footer a:hover {
  text-decoration: underline;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.contact-form-wrap {
  max-width: 980px;
  margin: 0 auto;
}
textarea {
  font: inherit;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  resize: vertical;
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: #27435b;
}
.consent-row input[type="checkbox"] {
  margin-top: 3px;
}
.about-hero-image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d7e3ef;
  box-shadow: 0 14px 30px rgba(12, 35, 56, 0.12);
}
.about-hero-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.about-hero-image.full-image img {
  height: auto;
  object-fit: contain;
}
.section-title {
  margin: 8px 0 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.2;
}
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.snapshot-item {
  background: #fdfefe;
  border: 1px solid #dce6f1;
  border-radius: 14px;
  padding: 14px;
}
.snapshot-item h3 {
  margin: 6px 0;
  font-size: 1.08rem;
}
.snapshot-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.snapshot-label {
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 0.72rem;
  color: var(--brand);
  font-weight: 700;
}
.map-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  align-items: stretch;
}
.map-copy h2 {
  margin: 8px 0 10px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.2;
}
.map-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}
.map-points {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.map-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1c2f42;
  font-weight: 600;
}
.map-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.12);
}
.map-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: linear-gradient(180deg, #fafdff 0%, #eef5fc 100%);
}
.map-visual img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
}
.visual-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.visual-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d9e3ee;
  box-shadow: 0 12px 28px rgba(12, 36, 58, 0.1);
}
.visual-link {
  display: block;
  text-decoration: none;
}
.visual-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}
.visual-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(7, 22, 38, 0.1) 0%, rgba(7, 22, 38, 0.82) 72%);
  color: #f3f8fc;
}
.visual-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #b9d9f3;
}
.visual-overlay h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}
.visual-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 2px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #d8ebfb;
}
.visual-overlay span::after {
  content: "->";
  font-size: 0.9rem;
}
.visual-link:hover {
  text-decoration: none;
}
.visual-link:hover.visual-card {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(10, 31, 51, 0.2);
}
.visual-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.institutional-block {
  background: linear-gradient(150deg, #ffffff 0%, #f3f8fd 100%);
  border: 1px solid #d7e3ef;
  border-radius: 16px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
}
.institutional-block h2 {
  margin: 8px 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}
.institutional-points {
  display: grid;
  gap: 10px;
}
.point-row {
  background: #fff;
  border: 1px solid #e1e9f2;
  border-radius: 10px;
  padding: 10px 12px;
  color: #1c2f42;
}
.timeline-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.timeline-step {
  border: 1px solid #d8e2ed;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
}
.timeline-step span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #eaf3fc;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
}
.timeline-step h3 {
  margin: 10px 0 6px;
  font-size: 1.02rem;
}
.timeline-step p {
  margin: 0;
  color: var(--muted);
}
.governance-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.faq-block {
  border: 1px solid #d7e3ef;
  border-radius: 16px;
  background: #fff;
  padding: 20px;
}
.faq-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.faq-item {
  border: 1px solid #dbe5ef;
  border-radius: 10px;
  background: #fafcff;
  padding: 10px 12px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #17344f;
}
.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}
.final-cta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border: 1px solid #cdddec;
  background: linear-gradient(100deg, #f5fbff 0%, #ffffff 70%);
}
.final-cta h2 {
  margin: 8px 0;
}
.final-cta p {
  margin: 0;
  color: var(--muted);
}
.section { padding: 36px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(14, 34, 54, 0.05);
}
.card ul { margin: 10px 0 0 18px; padding: 0; color: var(--muted); }
.metric h3 { margin: 6px 0 0; font-size: 1.35rem; }
.metric p { margin: 0; color: var(--muted); }
.row { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid #edf1f5; }
.row:last-child { border-bottom: 0; }
.between { justify-content: space-between; }
.block-row { border-bottom: 1px solid #edf1f5; padding: 10px 0; }
.block-row:last-child { border-bottom: 0; }
.form-grid { display: grid; gap: 10px; }
label { font-weight: 600; font-size: .9rem; display: grid; gap: 5px; }
input, select, button {
  font: inherit;
  border-radius: 10px;
}
input, select {
  padding: 9px 10px;
  border: 1px solid var(--line);
  background: #fff;
}
.btn {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  padding: 9px 14px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}
.btn:hover { background: var(--brand-dark); text-decoration: none; }
.btn-outline { background: #fff; color: var(--brand); }
.btn-sm { padding: 6px 10px; font-size: .84rem; }
.inline-form { display: inline-flex; gap: 8px; align-items: center; margin: 0; }
.notice {
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid #b5d2ec;
  background: #e8f3fe;
  border-radius: 10px;
}
.muted { color: var(--muted); margin: 0; }
.mt { margin-top: 16px; }
.page-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.tab-links { display: flex; gap: 10px; flex-wrap: wrap; }
.steps { display: grid; gap: 8px; color: var(--muted); }
.partners-head h2 {
  margin: 8px 0 0;
  max-width: 850px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 1.25;
}
.partners-grid {
  margin-top: 20px;
  padding: 4px 0;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 34px;
  align-items: center;
}
.partner-logo {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex: 0 0 auto;
}
.partner-logo img {
  width: auto;
  height: 108px;
  max-width: 320px;
  max-height: 108px;
  object-fit: contain;
  transition: transform 220ms ease, filter 220ms ease;
}
.partner-logo:hover img {
  transform: translateY(-3px) scale(1.06);
  filter: drop-shadow(0 10px 20px rgba(10, 54, 91, 0.28));
}
.site-footer { margin-top: 42px; background: #0d1f31; color: #d6e1ec; padding: 28px 0; }
.footer-partners-wrap { display: block; }
.partners-block {
  background: #0d1f31;
  border-radius: 14px;
  padding: 20px;
  border: 0;
}
.site-footer .partners-head .eyebrow { color: var(--brand); }
.site-footer .partners-head h2 { color: #e6eef6; }
.footer-main { margin-top: 18px; display: grid; gap: 16px; }
.footer-main h4 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  font-family: 'Playfair Display', serif;
  color: #f2f7fd;
}
.footer-main h5 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #e7f1fb;
}
.footer-main p {
  margin: 0 0 10px;
  color: #bfd0e0;
  line-height: 1.52;
}
.footer-main strong { color: #ecf4fc; }
.footer-main a { color: #d4e8f9; }
.footer-main a:hover { color: #ffffff; }
.footer-grid-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(189, 210, 230, 0.24);
}
.footer-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(189, 210, 230, 0.24);
}
.footer-socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-links a {
  border: 1px solid rgba(185, 208, 230, 0.35);
  background: rgba(12, 36, 58, 0.42);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.88rem;
  text-decoration: none;
}
.footer-legal-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.footer-legal-line p {
  margin: 0;
  font-size: 0.85rem;
  color: #9fb6ca;
}
.actions-inline { display: grid; gap: 8px; }

@media (max-width: 950px) {
  .hero-grid, .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .dashboard-shell { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; }
  .portal-theme .dashboard-shell { min-height: auto; }
  .portal-theme .dashboard-sidebar.card {
    min-height: auto;
    border-radius: 12px;
    max-width: none;
    width: auto;
    position: static;
    overflow: visible;
  }
  .portal-theme .dashboard-main { padding-left: 0; min-height: auto; }
  .admin-theme .dashboard-shell { min-height: auto; }
  .admin-theme .dashboard-sidebar.card {
    min-height: auto;
    border-radius: 12px;
    max-width: none;
    width: auto;
    position: static;
    overflow: visible;
  }
  .admin-theme .dashboard-main { padding-left: 0; min-height: auto; }
  .portal-topbar { border-radius: 0; padding: 0 14px; }
  .portal-content { padding: 20px 14px; }
  .portal-stats-grid { grid-template-columns: 1fr; }
  .portal-asset-grid { grid-template-columns: 1fr; }
  .admin-directory-search {
    min-width: 100%;
    max-width: none;
  }
  .admin-investor-row {
    grid-template-columns: 1fr;
  }
  .quick-actions { grid-template-columns: 1fr 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .auth-layout { grid-template-columns: 1fr; }
  .auth-clean-wrap { padding-top: 28px; }
  .auth-clean-logo { margin-bottom: 18px; }
  .auth-clean-card { padding: 20px 16px; }
  .auth-clean-card h1 { font-size: 1.7rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .snapshot-grid, .timeline-grid, .governance-grid { grid-template-columns: 1fr 1fr; }
  .map-feature { grid-template-columns: 1fr; }
  .institutional-block { grid-template-columns: 1fr; }
  .final-cta { flex-direction: column; align-items: flex-start; }
  .map-visual { min-height: 240px; }
  .visual-strip { grid-template-columns: 1fr; }
  .visual-card img { height: 210px; }
  .footer-grid-top,
  .footer-grid-bottom {
    grid-template-columns: 1fr;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
    min-width: 100%;
    margin-top: 4px;
  }
  .nav-dropdown-menu::before { display: none; }
}

@media (max-width: 560px) {
  .about-hero-image img { height: 230px; }
  .quick-actions { grid-template-columns: 1fr; }
  .snapshot-grid, .timeline-grid, .governance-grid { grid-template-columns: 1fr; }
  .partners-grid { gap: 10px; }
  .partner-logo img {
    height: 82px;
    max-width: 250px;
    max-height: 82px;
  }
}
