*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s;
}

.skip-nav:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --blue: #1c4ed8;
  --accent: #1c4ed8;
  --dark: #080f1c;
  --darker: #040a12;
  --bg-dark: #080f1c;
  --text-dark: #0a1628;
  --text-gray: #6b7280;
  --border: #e4e6ea;
  --bg-light: #f8f9fb;
  --font: 'IBM Plex Sans', Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
}

.page-wrapper {
  width: 100%;
  min-width: 320px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 100;
  display: flex;
  justify-content: center;
  background: var(--dark);
}

.nav-inner {
  width: 100%;
  max-width: 1440px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-brand-text {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.15px;
  line-height: 22.5px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.32px;
  line-height: 19.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: #fff;
}

.nav-chevron {
  width: 14px;
  height: 14px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 1000;
  padding-top: 16px;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-dropdown-item:hover {
  background: rgba(28, 78, 216, 0.15);
  color: #fff;
}

.nav-btn-investor {
  display: inline-flex;
  align-items: center;
  height: 35.5px;
  padding: 0 20px;
  background: #fff;
  color: var(--dark);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.32px;
  line-height: 19.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-btn-investor:hover {
  background: #f3f4f6;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 936px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(4,10,18,1) 0%, rgba(4,10,18,0.75) 50%, rgba(4,10,18,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  padding-top: 480px;
}

.hero-title {
  font-weight: 700;
  font-size: 96px;
  color: #fff;
  letter-spacing: -3.84px;
  line-height: 96px;
  white-space: nowrap;
}

.hero-subtitle {
  margin-top: 32px;
  width: 564px;
  font-weight: 400;
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 27.6px;
}

.hero-buttons {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 47.5px;
  padding: 0 28px;
  background: #fff;
  color: var(--dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.32px;
  line-height: 19.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}

.btn-primary:hover {
  background: #f3f4f6;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 49.5px;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.32px;
  line-height: 19.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.2s;
  background: transparent;
}

.btn-outline-light:hover {
  border-color: #fff;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 49.5px;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 19.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.2s;
  background: transparent;
}

.btn-outline-dark:hover {
  border-color: #fff;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 112px 0 1px 0;
}

.quote-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.quote-line {
  width: 48px;
  height: 1px;
  background: var(--blue);
}

.quote-text {
  margin-top: 41px;
  max-width: 753px;
  font-weight: 400;
  font-size: 48px;
  color: var(--text-dark);
  letter-spacing: -1.44px;
  line-height: 55.2px;
}

.quote-author {
  margin-top: 32px;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-gray);
  letter-spacing: 1.3px;
  line-height: 22.8px;
  padding-bottom: 112px;
}

/* ===== SECTION HELPERS ===== */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.label-line {
  width: 20px;
  height: 1px;
  background: var(--blue);
}

.label-line-light {
  background: rgba(255,255,255,0.5);
}

.label-text {
  font-weight: 500;
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 1.98px;
  line-height: 16.5px;
  white-space: nowrap;
}

.label-text-light {
  font-weight: 500;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.98px;
  line-height: 16.5px;
  white-space: nowrap;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.section-header-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-weight: 700;
  font-size: 60px;
  color: var(--text-dark);
  letter-spacing: -1.8px;
  line-height: 60px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 13px;
  color: var(--blue);
  line-height: 19.5px;
  cursor: pointer;
  white-space: nowrap;
}

.link-icon {
  width: 16px;
  height: 16px;
}

/* ===== COMPANIES SECTION ===== */
.companies-section {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.companies-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 112px 48px 1px 48px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.company-cards {
  display: flex;
  width: 100%;
  gap: 1px;
  background: var(--border);
  margin-bottom: 1px;
}

.company-cards-grid {
  flex-wrap: wrap;
  gap: 24px;
  background: transparent;
  margin-bottom: 0;
  padding-bottom: 48px;
}

.company-cards-grid .company-card {
  flex: 0 0 calc(50% - 12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.company-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  min-width: 0;
}

.card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-badge {
  margin: 20px 0 0 40px;
}

.card-badge span {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(28,78,216,0.08);
  font-weight: 500;
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 1.5px;
  line-height: 15px;
}

.card-title {
  margin: 32px 0 0 40px;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-dark);
  letter-spacing: -0.48px;
  line-height: 32px;
}

.card-desc {
  margin: 16px 40px 0 40px;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 22.8px;
  max-width: 325px;
}

.card-link {
  margin: 32px 0 0 40px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
  cursor: pointer;
  width: calc(100% - 80px);
}

.card-link span {
  font-weight: 500;
  font-size: 13px;
  color: var(--blue);
  line-height: 19.5px;
}

/* ===== STATS SECTION ===== */
.quote-section {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 96px 48px;
}

.quote-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.quote-text {
  font-family: var(--font);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.5px;
}

.quote-attribution {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 112px 0 80px 0;
}

.leadership-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 80px;
  min-height: 320px;
}

.leadership-left {
  flex: 0 0 auto;
  width: 450px;
  display: flex;
  flex-direction: column;
  padding-top: 15px;
}

.leadership-title {
  font-weight: 700;
  font-size: 48px;
  color: var(--text-dark);
  letter-spacing: -1.44px;
  line-height: 48px;
  margin-top: 20px;
}

.leadership-title:first-of-type {
  margin-top: 20px;
}

.leadership-title + .leadership-title {
  margin-top: 0;
}

.leadership-desc {
  margin-top: 24px;
  max-width: 448px;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-gray);
  line-height: 26px;
}

.leadership-link {
  margin-top: 35px;
  padding-bottom: 112px;
}

.leadership-right {
  flex: 1;
  display: flex;
  gap: 32px;
}

.leadership-roster {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.roster-member {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.roster-member:hover {
  border-color: rgba(28, 78, 216, 0.3);
}

.roster-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(100%);
}

.roster-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.roster-name {
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.roster-role {
  font-family: var(--font);
  font-weight: 400;
  font-size: 11px;
  color: var(--text-gray);
  line-height: 1.3;
}

.leader-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.leader-name {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.38px;
  line-height: 26.2px;
}

.leader-role {
  font-weight: 400;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 21px;
}


/* ===== NEWS SECTION ===== */
.news-section {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.news-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 112px 48px 1px 48px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  position: relative;
  padding: 32px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

a.news-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.news-item-border {
  border-bottom: 1px solid var(--border);
}

.news-content {
  display: flex;
  flex-direction: column;
}

.news-date {
  font-weight: 400;
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 1.32px;
  line-height: 16.5px;
}

.news-title {
  margin-top: 12px;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
  letter-spacing: -0.4px;
  line-height: 28px;
}

.news-source {
  margin-top: 8px;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-gray);
  letter-spacing: 0.3px;
  line-height: 21px;
}

.news-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ===== INVESTOR SECTION ===== */
.investor-section {
  background: var(--dark);
  padding: 112px 0;
}

.investor-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.investor-title {
  margin-top: 36px;
  max-width: 568px;
  font-weight: 700;
  font-size: 60px;
  color: #fff;
  letter-spacing: -2.4px;
  line-height: 60px;
}

.investor-desc {
  margin-top: 32px;
  max-width: 570px;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 26px;
}

.investor-buttons {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 112px 0;
}

.contact-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 80px;
}

.contact-left {
  flex: 0 0 360px;
}

.contact-title {
  font-weight: 700;
  font-size: 48px;
  color: var(--text-dark);
  letter-spacing: -1.44px;
  line-height: 48px;
  margin-top: 20px;
}

.contact-desc {
  margin-top: 24px;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-gray);
  line-height: 26px;
}

.contact-right {
  flex: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-full {
  width: 100%;
}

.contact-form label {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-dark);
  letter-spacing: 0;
  line-height: 19.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font);
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 47.5px;
  padding: 0 28px;
  background: var(--dark);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.32px;
  line-height: 19.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.btn-submit:hover {
  background: #111827;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-submit .btn-icon {
  filter: invert(1);
}

.form-status {
  font-size: 14px;
  line-height: 21px;
  min-height: 21px;
}

.form-status.success {
  color: #16a34a;
}

.form-status.error {
  color: #dc2626;
}

/* ===== SUBMISSIONS SECTION ===== */
.submissions-section {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.submissions-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.submissions-title {
  font-weight: 700;
  font-size: 36px;
  color: var(--text-dark);
  letter-spacing: -1px;
  line-height: 40px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.submissions-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.submission-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 32px;
  background: #fff;
}

.submission-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.submission-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 22px;
}

.submission-email {
  font-weight: 400;
  font-size: 13px;
  color: var(--blue);
  line-height: 19.5px;
}

.submission-interest {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  background: rgba(28,78,216,0.08);
  font-weight: 500;
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.5px;
  line-height: 18px;
  margin-top: 4px;
  width: fit-content;
}

.submission-message {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 20px;
  margin-top: 8px;
  max-width: 500px;
}

.submission-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.submission-company {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 19.5px;
}

.submission-date {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-gray);
  line-height: 18px;
}

.submissions-empty {
  padding: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--text-gray);
  background: #fff;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--darker);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 48px 0 48px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.footer-top {
  display: flex;
  gap: 48px;
}

.footer-brand-col {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-text {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.38px;
  line-height: 22.5px;
}

.footer-brand-desc {
  max-width: 286px;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 21.1px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 140px;
}

.footer-col-title {
  font-weight: 500;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1.5px;
  line-height: 10.5px;
}

.footer-link {
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 19.5px;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #fff;
}

.footer-link-soon {
  color: rgba(255,255,255,0.25);
  cursor: default;
}

.footer-link-soon:hover {
  color: rgba(255,255,255,0.25);
}

.soon-tag {
  font-size: 10px;
  letter-spacing: 0.03px;
  line-height: 15px;
}

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

.social-icon {
  width: 14px;
  height: 14px;
}

.footer-admin-link {
  color: rgba(255, 255, 255, 0.25);
  font-size: 11px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-admin-link:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-copyright {
  font-weight: 400;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.3px;
  line-height: 21px;
}

.footer-tagline {
  font-weight: 400;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1.1px;
  line-height: 19.2px;
}

/* ===== NAV ACTIVE ===== */
.nav-link-active {
  color: #fff !important;
}

/* ===== MISSION HERO ===== */
.mission-hero {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}

.mission-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  padding-top: 240px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-hero-title {
  font-weight: 700;
  font-size: 60px;
  color: #fff;
  letter-spacing: -2.4px;
  line-height: 68px;
}

.mission-hero-subtitle {
  max-width: 560px;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 26px;
}

/* ===== MISSION STATEMENT ===== */
.mission-statement-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}

.mission-statement-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: center;
}

.mission-statement-text {
  max-width: 620px;
  font-weight: 400;
  font-size: 18px;
  color: var(--text-gray);
  line-height: 30px;
  text-align: center;
}

/* ===== WHAT DRIVES US ===== */
.drives-section {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 112px 0;
}

.drives-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.drives-title {
  font-weight: 700;
  font-size: 48px;
  color: var(--text-dark);
  letter-spacing: -1.44px;
  line-height: 48px;
  margin-top: 20px;
  margin-bottom: 48px;
}

.drives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.drive-card {
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.drive-card-img-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 4px;
}

.drive-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.drive-card-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
  letter-spacing: -0.4px;
  line-height: 28px;
}

.drive-card-desc {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 22.8px;
  max-width: 420px;
}

/* ===== MISSION COMPANIES ===== */
.mission-companies-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 112px 0 1px 0;
}

.mission-companies-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ===== MISSION CTA ===== */
.mission-cta-section {
  background: var(--dark);
  padding: 64px 0;
}

.mission-cta-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mission-cta-text {
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  letter-spacing: -0.48px;
  line-height: 32px;
}

/* ===== MYUI PAGE ===== */
.myui-hero {
  background: var(--dark);
  padding: 160px 0 80px 0;
  overflow: hidden;
}

.myui-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.myui-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.myui-hero-image-wrap {
  flex: 0 0 420px;
  max-width: 420px;
  position: relative;
}

.myui-hero-image {
  width: 100%;
  height: auto;
  opacity: 0.45;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 75%);
  pointer-events: none;
  user-select: none;
}

.myui-hero-title {
  font-weight: 700;
  font-size: 56px;
  color: #fff;
  letter-spacing: -2.2px;
  line-height: 64px;
}

.myui-hero-subtitle {
  max-width: 520px;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 24px;
}

.myui-difference {
  background: #fff;
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.myui-difference-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.myui-difference-title {
  font-weight: 700;
  font-size: 40px;
  color: var(--text-dark);
  letter-spacing: -1.2px;
  line-height: 48px;
  margin-top: 20px;
  margin-bottom: 48px;
}

.myui-compare-container {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.myui-compare-side {
  flex: 1;
  padding: 40px;
}

.myui-compare-left {
  background: var(--bg-light);
}

.myui-compare-right {
  background: #fff;
}

.myui-compare-divider {
  width: 3px;
  background: var(--blue);
  flex-shrink: 0;
}

.myui-compare-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  line-height: 24px;
  margin-bottom: 28px;
}

.myui-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.myui-compare-list li {
  position: relative;
  padding-left: 18px;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 22px;
}

.myui-compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.myui-compare-list-orange li::before {
  background: #e8913a;
}

.myui-compare-list-blue li::before {
  background: var(--blue);
}

.myui-benefits {
  background: #fff;
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.myui-benefits-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.myui-benefits-title {
  font-weight: 700;
  font-size: 40px;
  color: var(--text-dark);
  letter-spacing: -1.2px;
  line-height: 48px;
  margin-top: 20px;
  margin-bottom: 48px;
}

.myui-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.myui-benefit-card {
  background: #fff;
  padding: 40px;
}

.myui-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.myui-benefit-name {
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  line-height: 24px;
  margin-bottom: 10px;
}

.myui-benefit-desc {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 21px;
}

.myui-cta {
  background: var(--dark);
  padding: 96px 0;
}

.myui-cta-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.myui-cta-title {
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  letter-spacing: -1.2px;
  line-height: 48px;
}

.myui-cta-subtitle {
  font-weight: 400;
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 24px;
  margin-bottom: 16px;
}

/* ===== RESEARCH PLATFORM PAGE ===== */
.rp-hero {
  background: var(--dark);
  padding: 160px 0 80px 0;
  overflow: hidden;
}

.rp-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.rp-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rp-hero-image-wrap {
  flex: 0 0 420px;
  max-width: 420px;
}

.rp-hero-image {
  width: 100%;
  height: auto;
  opacity: 0.45;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 75%);
  pointer-events: none;
  user-select: none;
}

.rp-hero-title {
  font-weight: 700;
  font-size: 56px;
  color: #fff;
  letter-spacing: -2.2px;
  line-height: 64px;
}

.rp-hero-subtitle {
  max-width: 520px;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 24px;
}

.rp-section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.rp-section-title {
  font-weight: 700;
  font-size: 40px;
  color: var(--text-dark);
  letter-spacing: -1.2px;
  line-height: 48px;
  margin-top: 20px;
  margin-bottom: 48px;
}

.rp-barriers {
  background: #fff;
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.rp-barriers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.rp-barrier-card {
  background: #fff;
  padding: 40px;
}

.rp-barrier-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.rp-barrier-name {
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  line-height: 24px;
  margin-bottom: 10px;
}

.rp-barrier-desc {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 21px;
}

.rp-how {
  background: #fff;
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.rp-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rp-how-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.rp-how-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37,99,235,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rp-how-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  letter-spacing: -0.2px;
  line-height: 22px;
  margin-bottom: 6px;
}

.rp-how-desc {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 20px;
}

.rp-features {
  background: #fff;
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.rp-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.rp-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.rp-feature-name {
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  line-height: 24px;
  margin-bottom: 10px;
}

.rp-feature-desc {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 21px;
  margin-bottom: 20px;
}

.rp-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rp-feature-list li {
  position: relative;
  padding-left: 18px;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 20px;
}

.rp-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.rp-cta {
  background: var(--dark);
  padding: 96px 0;
}

.rp-cta-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rp-cta-title {
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  letter-spacing: -1.2px;
  line-height: 48px;
}

.rp-cta-subtitle {
  max-width: 560px;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 24px;
  margin-bottom: 16px;
}

/* ===== INVESTORS PAGE ===== */
.inv-hero {
  background: var(--dark);
  padding: 160px 0 80px 0;
  overflow: hidden;
}

.inv-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.inv-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inv-hero-image-wrap {
  flex: 0 0 420px;
  max-width: 420px;
}

.inv-hero-image {
  width: 100%;
  height: auto;
  opacity: 0.45;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 75%);
  pointer-events: none;
  user-select: none;
}

.inv-hero-title {
  font-weight: 700;
  font-size: 56px;
  color: #fff;
  letter-spacing: -2.2px;
  line-height: 64px;
}

.inv-hero-subtitle {
  max-width: 520px;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 24px;
}

.inv-hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.inv-section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.inv-section-title {
  font-weight: 700;
  font-size: 32px;
  color: var(--text-dark);
  letter-spacing: -1px;
  line-height: 40px;
  margin-bottom: 40px;
}

.inv-video {
  background: #fff;
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.inv-video-placeholder {
  width: 100%;
  height: 400px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inv-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.inv-play-btn:hover {
  transform: scale(1.08);
}

.inv-play-btn svg {
  margin-left: 4px;
}

.inv-how {
  background: #fff;
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.inv-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.inv-step-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.inv-step-num {
  font-weight: 700;
  font-size: 48px;
  color: rgba(0,0,0,0.08);
  letter-spacing: -2px;
  line-height: 56px;
  margin-bottom: 16px;
}

.inv-step-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  line-height: 22px;
  margin-bottom: 8px;
}

.inv-step-desc {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 20px;
}

.inv-markets {
  background: #fff;
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.inv-markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.inv-market-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  gap: 4px;
}

.inv-market-icon {
  margin-bottom: 16px;
}

.inv-market-number {
  font-weight: 700;
  font-size: 40px;
  color: var(--text-dark);
  letter-spacing: -1.5px;
  line-height: 44px;
}

.inv-market-year {
  font-weight: 600;
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 16px;
  margin-bottom: 12px;
}

.inv-market-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 22px;
  margin-bottom: 4px;
}

.inv-market-desc {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 20px;
}

.inv-funding {
  background: var(--bg-light);
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.inv-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 40px;
  max-width: 600px;
}

.inv-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}

.inv-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  position: relative;
}

.inv-timeline-icon {
  flex-shrink: 0;
  position: absolute;
  left: -40px;
  top: 28px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  z-index: 1;
}

.inv-timeline-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.inv-timeline-year {
  font-weight: 600;
  font-size: 13px;
  color: var(--blue);
  line-height: 18px;
}

.inv-timeline-title {
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  line-height: 24px;
}

.inv-timeline-org {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 20px;
}

.inv-cta {
  background: var(--dark);
  padding: 96px 0;
}

.inv-cta-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inv-cta-title {
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  letter-spacing: -1.2px;
  line-height: 48px;
}

.inv-cta-subtitle {
  max-width: 560px;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 24px;
  margin-bottom: 16px;
}

/* ===== LOGIN MODAL ===== */
.login-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-overlay.active {
  display: flex;
}

.login-modal {
  width: 440px;
  max-height: 90vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

.auth-page {
  background: var(--dark);
  min-height: calc(100vh - 72px);
}

.auth-page-inner {
  display: flex;
  min-height: calc(100vh - 72px);
}

.auth-side {
  flex: 1;
  background: linear-gradient(135deg, #0a1628 0%, #142240 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 64px;
}

.auth-side-content {
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-side-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 42px;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
}

.auth-side-desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.auth-side-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.auth-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.auth-form-side {
  flex: 0 0 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px;
  background: #fff;
}

.auth-card {
  width: 100%;
  max-width: 400px;
}

.auth-card-header {
  margin-bottom: 32px;
}

.auth-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(28, 78, 216, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.auth-card-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 28px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.auth-card-subtitle {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-gray);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-field-label {
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dark);
}

.auth-input {
  font-family: var(--font);
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.auth-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(28, 78, 216, 0.08);
}

.auth-input::placeholder {
  color: #c0c7d1;
}

.auth-password-wrap {
  position: relative;
}

.auth-password-wrap .auth-input {
  width: 100%;
  padding-right: 44px;
  box-sizing: border-box;
}

.auth-toggle-pw {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.auth-error {
  font-family: var(--font);
  font-size: 13px;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 14px;
}

.auth-success {
  font-family: var(--font);
  font-size: 13px;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 10px 14px;
}

.auth-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.auth-submit:hover {
  background: #1a44c0;
}

.auth-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.auth-divider {
  text-align: center;
  margin: 24px 0 16px;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.auth-divider-text {
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-gray);
  background: #fff;
  padding: 0 16px;
  position: relative;
}

.auth-alt-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}

.auth-alt-btn:hover {
  border-color: var(--blue);
  background: rgba(28, 78, 216, 0.04);
}

.login-modal-header {
  background: var(--dark);
  padding: 32px 32px 28px 32px;
}

.login-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.login-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-label span {
  font-weight: 600;
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 1.5px;
}

.login-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.login-close:hover {
  opacity: 1;
}

.login-modal-title {
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  letter-spacing: -1px;
  line-height: 34px;
}

.login-modal-body {
  background: #fff;
  padding: 32px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.login-field-label {
  font-weight: 600;
  font-size: 11px;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.login-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.login-input:focus {
  outline: none;
  border-color: var(--blue);
}

.login-input::placeholder {
  color: #b0b8c4;
}

.login-demo-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(59,130,246,0.06);
  border-radius: 8px;
  padding: 14px 16px;
}

.login-demo-hint svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.login-demo-hint span {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 20px;
}

.login-demo-hint strong {
  color: var(--blue);
  font-family: 'IBM Plex Mono', monospace, 'IBM Plex Sans', sans-serif;
  font-size: 12px;
}

.login-submit {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}

.login-submit:hover {
  background: #2563eb;
}

.login-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 12px 16px;
  color: #dc2626;
  font-size: 13px;
  line-height: 20px;
}

.login-signup {
  text-align: center;
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 20px;
}

.login-signup-link {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* ===== INVESTOR PORTAL DASHBOARD ===== */
.dash-layout {
  display: flex;
  min-height: 100vh;
}

.dash-sidebar {
  width: 220px;
  background: #fff;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 16px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
}

.dash-sidebar-top {
  display: flex;
  flex-direction: column;
}

.dash-sidebar-logo {
  margin-bottom: 24px;
}

.dash-sidebar-logo .nav-logo {
  width: 32px;
  height: 32px;
}

.dash-sidebar-label {
  font-weight: 600;
  font-size: 10px;
  color: var(--text-gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.dash-sidebar-welcome {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  margin-bottom: 28px;
}

.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-gray);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.dash-nav-item:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

.dash-nav-item.active {
  background: var(--blue);
  color: #fff;
}

.dash-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-gray);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.dash-logout:hover {
  background: #fef2f2;
  color: #dc2626;
}

.dash-main {
  flex: 1;
  margin-left: 220px;
  background: var(--bg-light);
  min-height: 100vh;
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 40px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.dash-content {
  padding: 40px;
}

.dash-hidden {
  display: none;
}

.dash-header {
  margin-bottom: 32px;
}

.dash-header-label {
  font-weight: 600;
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.dash-header-title {
  font-weight: 700;
  font-size: 32px;
  color: var(--text-dark);
  letter-spacing: -1px;
  line-height: 40px;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.dash-stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-stat-number {
  font-weight: 700;
  font-size: 32px;
  color: var(--blue);
  letter-spacing: -1px;
  line-height: 36px;
}

.dash-stat-label {
  font-weight: 600;
  font-size: 10px;
  color: var(--text-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dash-welcome-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
}

.dash-welcome-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 28px;
  margin-bottom: 16px;
}

.dash-welcome-text {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 22px;
  margin-bottom: 12px;
}

.dash-welcome-btn {
  margin-top: 16px;
  display: inline-flex;
}

.dash-overview-subs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.dash-overview-sub {
  padding: 14px 18px;
  background: #f0f4ff;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #1e293b;
}

.dash-overview-sub strong {
  color: var(--blue);
}

.dash-overview-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 14px 32px;
  background: var(--dark);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.dash-overview-cta:hover {
  background: #1a44c0;
}

.dash-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dash-video-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.dash-video-placeholder {
  width: 100%;
  height: 220px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.dash-video-placeholder:hover {
  background: #e8ecf0;
}

.dash-video-info {
  padding: 16px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.dash-video-title {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 22px;
}

.dash-video-date {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-gray);
  line-height: 18px;
  margin-top: 2px;
}

.dash-video-duration {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-gray);
  white-space: nowrap;
}

.dash-chart-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.dash-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
}

.dash-chart-title {
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.dash-export-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--text-gray);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.dash-export-btn:hover {
  background: var(--bg-light);
  border-color: #c0c8d0;
}

.dash-chart-placeholder {
  width: 100%;
  height: 200px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-chart-years {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
}

.dash-chart-year {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 16px;
  border-right: 1px solid var(--border);
}

.dash-chart-year:last-child {
  border-right: none;
}

.dash-chart-year-label {
  font-weight: 400;
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 0.5px;
}

.dash-chart-year-value {
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.dash-funding-steps {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.dash-funding-step {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
}

.dash-funding-step:last-child {
  border-bottom: none;
}

.dash-funding-num {
  font-weight: 700;
  font-size: 28px;
  color: rgba(0,0,0,0.07);
  letter-spacing: -1px;
  line-height: 32px;
  flex-shrink: 0;
  width: 40px;
}

.dash-funding-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-funding-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 20px;
}

.dash-funding-desc {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 20px;
  margin: 0;
}

.dash-notes-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
  margin-top: 24px;
}

.dash-notes-title {
  font-weight: 700;
  font-size: 11px;
  color: var(--text-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dash-notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-notes-list li {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 20px;
  padding-left: 16px;
  position: relative;
}

.dash-notes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.wizard-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.wizard-step-num {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-gray);
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.wizard-step.active .wizard-step-num {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.wizard-step.completed .wizard-step-num {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  opacity: 0.6;
}

.wizard-step-label {
  font-weight: 500;
  font-size: 11px;
  color: var(--text-gray);
  white-space: nowrap;
}

.wizard-step.active .wizard-step-label {
  color: var(--text-dark);
  font-weight: 600;
}

.wizard-step-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 8px;
  margin-bottom: 20px;
}

.wizard-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 36px;
}

.wizard-panel-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.wizard-panel-desc {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 22px;
  margin-bottom: 20px;
}

.wizard-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.wizard-field {
  margin-bottom: 20px;
}

.wizard-label {
  display: block;
  font-weight: 600;
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.wizard-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.wizard-input:focus {
  outline: none;
  border-color: var(--blue);
}

.wizard-continue-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 380px;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 8px;
}

.wizard-continue-btn:hover {
  background: #2d3ccf;
}

.wizard-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: var(--text-dark);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
}

.wizard-back-btn:hover {
  background: var(--bg-light);
}

.wizard-btn-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.wizard-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
}

.wizard-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.wizard-review-rows {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
}

.wizard-review-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.wizard-review-row:last-child {
  border-bottom: none;
}

.wizard-review-label {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-gray);
}

.wizard-review-value {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dark);
}

.wizard-amount-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.wizard-amount-prefix {
  position: absolute;
  left: 14px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-gray);
  pointer-events: none;
}

.wizard-amount-input {
  padding-left: 30px;
}

.wizard-summary {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 24px;
}

.wizard-summary-title {
  font-weight: 700;
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.wizard-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.wizard-summary-row.wizard-summary-total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 14px;
}

.wizard-summary-label {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-gray);
}

.wizard-summary-value {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
}

.wizard-summary-total-value {
  color: var(--blue);
  font-weight: 700;
  font-size: 18px;
}

.wizard-btn-row-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wizard-btn-half {
  width: 100%;
  max-width: none;
  justify-content: center;
  padding: 14px 24px;
}

.wizard-accred-box {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 24px;
}

.wizard-accred-title {
  font-weight: 700;
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.wizard-accred-desc {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 22px;
  margin: 0 0 14px 0;
}

.wizard-accred-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wizard-accred-list li {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 20px;
  padding-left: 16px;
  position: relative;
}

.wizard-accred-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.wizard-confirm-check {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.wizard-confirm-check .wizard-checkbox-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 20px;
}

.wizard-review-section {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.wizard-review-section-title {
  font-weight: 700;
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.wizard-review-section-value {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 22px;
  margin: 0;
}

.wizard-review-total-amount {
  font-weight: 700;
  font-size: 28px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin: 0;
  text-align: right;
}

.wizard-review-accred {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 16px;
  background: rgba(59,76,202,0.03);
}

.wizard-review-accred span {
  font-weight: 600;
  font-size: 13px;
  color: var(--blue);
}

.wizard-review-disclaimer {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 20px;
}

.wizard-confirm-center {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wizard-confirm-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.wizard-confirm-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.wizard-confirm-desc {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 22px;
  max-width: 420px;
  margin-bottom: 24px;
}

.wizard-confirm-summary {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 28px;
  width: 100%;
  max-width: 320px;
  text-align: left;
  margin-bottom: 24px;
}

.wizard-confirm-summary-title {
  font-weight: 700;
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.wizard-confirm-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.wizard-confirm-summary-label {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-gray);
}

.wizard-confirm-summary-value {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}

.wizard-confirm-summary-status {
  font-weight: 600;
  font-size: 13px;
  color: #f59e0b;
}

.wizard-return-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: none;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
}

.wizard-return-btn:hover {
  background: #2d3ccf;
}

.dash-invest-details {
  margin: 20px 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.dash-invest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.dash-invest-row:last-child {
  border-bottom: none;
}

.dash-invest-label {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-gray);
}

.dash-invest-value {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
}

/* ===== REGISTER PAGE ===== */
.register-page {
  background: var(--bg-light);
  padding: 160px 0 80px 0;
  min-height: 70vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.register-container {
  width: 440px;
}

.login-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  padding: 12px 16px;
  color: #16a34a;
  font-size: 13px;
  line-height: 20px;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: var(--dark);
  padding: 160px 0 80px 0;
}

.contact-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-hero-title {
  font-weight: 700;
  font-size: 60px;
  color: #fff;
  letter-spacing: -2.4px;
  line-height: 64px;
}

.contact-hero-subtitle {
  max-width: 520px;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 26px;
}

.contact-body {
  background: #fff;
  padding: 96px 0;
}

.contact-body-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 80px;
}

.contact-left {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
}

.contact-left-title {
  font-weight: 700;
  font-size: 40px;
  color: var(--text-dark);
  letter-spacing: -1.2px;
  line-height: 48px;
  margin-top: 20px;
}

.contact-left-desc {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 23px;
  margin-top: 20px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-label {
  font-weight: 600;
  font-size: 10px;
  color: var(--text-gray);
  letter-spacing: 1.5px;
  line-height: 15px;
}

.contact-info-value {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 21px;
}

.contact-right {
  flex: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-row {
  display: flex;
  gap: 24px;
}

.contact-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-label {
  font-weight: 600;
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 1.2px;
}

.contact-input {
  width: 100%;
  padding: 14px 16px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}

.contact-input::placeholder {
  color: #999;
}

.contact-input:focus {
  border-color: var(--blue);
}

select.contact-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: var(--blue);
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.contact-submit:hover {
  opacity: 0.9;
}

.contact-privacy {
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-gray);
  line-height: 18px;
}

.contact-success {
  display: none;
  padding: 16px;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.contact-error {
  display: none;
  padding: 16px;
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ffcdd2;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

/* ===== NEWS PAGE ===== */
.news-page-hero {
  background: var(--dark);
  padding: 160px 0 80px 0;
}

.news-page-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-page-hero-title {
  font-weight: 700;
  font-size: 60px;
  color: #fff;
  letter-spacing: -2.4px;
  line-height: 64px;
}

.news-page-hero-subtitle {
  max-width: 520px;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 26px;
}

.news-page-list-section {
  background: var(--dark);
  padding: 0 0 96px 0;
}

.news-page-list-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px 0;
  display: flex;
  flex-direction: column;
}

.news-search-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 0;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.news-search-input-wrap {
  flex: 1;
  min-width: 260px;
  position: relative;
}

.news-search-input-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #6b7280;
  pointer-events: none;
}

.news-search-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 1px solid #2a2f3a;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.news-search-input::placeholder {
  color: #6b7280;
}

.news-search-input:focus {
  border-color: #1c4ed8;
}

.news-filter-select {
  padding: 14px 16px;
  border: 1px solid #2a2f3a;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  cursor: pointer;
  min-width: 180px;
}

.news-filter-select option {
  background: #0a0f1c;
  color: #fff;
}

.news-results-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px 0;
  font-family: var(--font);
  font-size: 13px;
  color: #6b7280;
}

.news-page-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

a.news-page-item:hover {
  background: rgba(255,255,255,0.02);
}

.news-page-item-accent {
  width: 4px;
  height: 48px;
  background: linear-gradient(180deg, #1c4ed8 0%, rgba(28, 78, 216, 0.2) 100%);
  flex-shrink: 0;
  border-radius: 2px;
  margin-top: 4px;
}

.news-page-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.news-page-item-title {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 4px;
}

.news-page-item-desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0 0 8px;
}

.news-page-item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.news-page-item-date {
  font-weight: 500;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
}

.news-page-item-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.news-page-item-source {
  font-weight: 600;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
}

.news-page-item-category {
  font-family: var(--font);
  font-weight: 500;
  font-size: 11px;
  color: #1c4ed8;
  background: rgba(28, 78, 216, 0.12);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.news-page-item-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.3;
  margin-top: 6px;
}

a.news-page-item:hover .news-page-item-arrow {
  opacity: 0.6;
}

.news-empty-state {
  text-align: center;
  padding: 80px 20px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font);
}

.news-empty-state h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: rgba(255,255,255,0.5);
}

.news-empty-state p {
  font-size: 14px;
  margin: 0;
}

.news-loading {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font);
  font-size: 14px;
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}

.founder-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.founder-card {
  display: flex;
  gap: 64px;
  margin-top: 40px;
}

.founder-photo {
  width: 320px;
  height: 360px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.founder-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.founder-name {
  font-weight: 700;
  font-size: 36px;
  color: var(--text-dark);
  letter-spacing: -1px;
  line-height: 42px;
}

.founder-title-role {
  margin-top: 12px;
  font-weight: 500;
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 1.65px;
  line-height: 16.5px;
}

.founder-bio {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder-bio p {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 23px;
}

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 500;
  font-size: 13px;
  color: var(--blue);
  line-height: 19.5px;
  cursor: pointer;
}

.founder-linkedin .social-icon {
  filter: invert(25%) sepia(98%) saturate(1800%) hue-rotate(217deg) brightness(90%) contrast(95%);
}

/* ===== ADVISORS SECTION ===== */
.advisors-section {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 112px 0;
}

.advisors-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.advisors-title {
  font-weight: 700;
  font-size: 48px;
  color: var(--text-dark);
  letter-spacing: -1.44px;
  line-height: 48px;
  margin-top: 20px;
  margin-bottom: 48px;
}

.advisors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.advisor-card {
  background: #fff;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.advisor-photo {
  width: 100%;
  height: 180px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.advisor-photo-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.advisor-photo-initials::after {
  content: attr(data-initials);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: rgba(0, 0, 0, 0.12);
  letter-spacing: 2px;
}

.inv-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
}

.inv-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.inv-invest-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 48px;
  background: #0f2a5e;
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
  border-radius: 10px;
  border: 2px solid rgba(200, 210, 230, 0.4);
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(15, 42, 94, 0.3);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.inv-invest-btn:hover {
  background: #1c4ed8;
  border-color: rgba(200, 210, 230, 0.6);
  box-shadow: 0 6px 32px rgba(28, 78, 216, 0.35);
}

.advisor-info {
  display: flex;
  flex-direction: column;
}

.advisor-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  line-height: 22px;
}

.advisor-role {
  font-weight: 500;
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 1.5px;
  line-height: 15px;
  margin-top: 4px;
}

.advisor-bio {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 21px;
  margin-top: 12px;
}

.advisor-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 500;
  font-size: 13px;
  color: var(--blue);
  line-height: 19.5px;
  cursor: pointer;
}

.advisor-linkedin .social-icon {
  filter: invert(25%) sepia(98%) saturate(1800%) hue-rotate(217deg) brightness(90%) contrast(95%);
}

/* ===== ADMIN PORTAL ===== */
.admin-sidebar {
  width: 220px;
  background: var(--dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  padding: 24px 16px;
}

.admin-sidebar-top {
  display: flex;
  flex-direction: column;
}

.admin-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.admin-sidebar-brand .nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
}

.admin-sidebar-brand-text {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  letter-spacing: -0.2px;
}

.admin-sidebar-label {
  font-weight: 600;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}

.admin-sidebar-welcome {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 24px;
}

.admin-sidebar .dash-nav {
  gap: 2px;
}

.admin-sidebar .dash-nav-item {
  color: rgba(255,255,255,0.5);
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 13px;
}

.admin-sidebar .dash-nav-item:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.admin-sidebar .dash-nav-item.active {
  background: var(--blue);
  color: #fff;
}

.admin-sidebar .dash-sidebar-bottom .dash-nav-item {
  color: rgba(255,255,255,0.5);
}

.admin-sidebar .dash-sidebar-bottom .dash-nav-item:hover {
  color: #fff;
}

.admin-sidebar ~ .dash-main {
  margin-left: 220px;
}

.admin-stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.admin-stat-card {
  border-radius: 10px;
  padding: 24px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-stat-blue { background: #3B82F6; }
.admin-stat-green { background: #22C55E; }
.admin-stat-orange { background: #F59E0B; }
.admin-stat-purple { background: #8B5CF6; }

.admin-stat-num {
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  letter-spacing: -1px;
  line-height: 36px;
}

.admin-stat-label {
  font-weight: 600;
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.admin-charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.admin-chart-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.admin-chart-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  padding: 20px 24px 0 24px;
  margin: 0;
}

.admin-chart-placeholder {
  width: 100%;
  height: 180px;
  background: var(--bg-light);
  margin: 16px 24px 24px 24px;
  width: calc(100% - 48px);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-activity-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.admin-activity-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.admin-activity-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  margin: 0;
}

.admin-activity-viewall {
  font-weight: 500;
  font-size: 13px;
  color: var(--blue);
  text-decoration: none;
}

.admin-activity-viewall:hover {
  text-decoration: underline;
}

.admin-activity-list {
  border-top: 1px solid var(--border);
}

.admin-activity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.admin-activity-row:last-child {
  border-bottom: none;
}

.admin-activity-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-activity-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.admin-activity-meta {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-gray);
}

.admin-activity-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-activity-amount {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.admin-loading {
  color: #94a3b8;
  font-size: 14px;
  padding: 32px 0;
  text-align: center;
}

.admin-empty-state {
  text-align: center;
  padding: 48px 24px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.admin-status-pending {
  font-weight: 700;
  font-size: 11px;
  color: #F59E0B;
  letter-spacing: 0.5px;
}

.admin-status-completed {
  font-weight: 700;
  font-size: 11px;
  color: #22C55E;
  letter-spacing: 0.5px;
}

.admin-news-status {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}

.admin-news-status-loading {
  background: #EFF6FF;
  color: #1D4ED8;
  border: 1px solid #BFDBFE;
}

.admin-news-status-success {
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #BBF7D0;
}

.admin-news-status-error {
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
}

.admin-table-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  font-weight: 600;
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}

.admin-table td {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-dark);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-action-btn {
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.15s;
}

.admin-action-btn:hover {
  background: var(--bg-light);
}

.admin-status-rejected {
  font-weight: 700;
  font-size: 11px;
  color: #ef4444;
  letter-spacing: 0.5px;
}

.admin-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.admin-add-btn:hover {
  background: #2d3ccf;
}

.wizard-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.wizard-new-btn {
  display: block;
  width: 100%;
  padding: 12px 24px;
  margin-top: 10px;
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.wizard-new-btn:hover {
  background: var(--blue);
  color: #fff;
}

.dash-funding-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.dash-funding-link:hover {
  color: #1e40af;
  text-decoration: underline;
}

.rev-chart-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-chart-toggle {
  display: flex;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 3px;
}

.rev-toggle-btn {
  background: none;
  border: none;
  padding: 6px 16px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-gray);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}

.rev-toggle-btn.rev-toggle-active {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.rev-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rev-summary-card {
  padding: 24px;
}

.rev-summary-title {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 16px;
}

.rev-summary-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}

.rev-summary-row:last-child {
  border-bottom: none;
}

.rev-summary-total {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 2px solid #e2e8f0;
  font-weight: 600;
}

.rev-summary-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

.rev-summary-name {
  font-size: 14px;
  color: #334155;
  flex: 1;
}

.rev-summary-value {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  .rev-summary-grid {
    grid-template-columns: 1fr;
  }

  .rev-chart-controls {
    flex-wrap: wrap;
  }

  .dash-chart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.media-filter-bar {
  margin-bottom: 24px;
}

.media-filter-select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 40px 10px 16px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  cursor: pointer;
  min-width: 240px;
  transition: border-color 0.2s;
}

.media-filter-select:focus {
  outline: none;
  border-color: var(--blue);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.media-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.media-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.media-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}

.media-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.media-card-info {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.media-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
}

.media-badge-explainer {
  background: #dbeafe;
  color: var(--blue);
}

.media-badge-news {
  background: #fef3c7;
  color: #92400e;
}

.media-badge-webinar {
  background: #d1fae5;
  color: #065f46;
}

.media-badge-demo {
  background: #ede9fe;
  color: #5b21b6;
}

.media-empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-gray);
  font-size: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-filter-select {
    width: 100%;
  }
}

.admin-nw-empty {
  padding: 40px 24px;
  text-align: center;
  color: var(--text-gray);
  font-size: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.admin-nw-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.admin-nw-badge {
  display: inline-block;
  background: #dbeafe;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.admin-nw-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.admin-nw-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0 0 16px;
}

.admin-nw-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-nw-detail {
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
}

.admin-nw-detail strong {
  color: #0f172a;
}

.investor-nw-empty {
  text-align: center;
  padding: 60px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.investor-nw-empty-icon {
  margin-bottom: 16px;
}

.investor-nw-empty h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 8px;
}

.investor-nw-empty p {
  font-size: 14px;
  color: var(--text-gray);
  margin: 0;
}

.investor-nw-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.investor-nw-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border);
}

.investor-nw-badge {
  display: inline-block;
  background: #dbeafe;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.investor-nw-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.investor-nw-desc {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.investor-nw-details {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.investor-nw-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}

.investor-nw-detail-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.investor-nw-detail-row strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 2px;
}

.investor-nw-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 32px 32px;
  padding: 14px 32px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.investor-nw-join-btn:hover {
  background: #1a44c0;
}

.admin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.admin-modal {
  background: #fff;
  border-radius: 10px;
  padding: 32px 36px;
  width: 520px;
  max-height: 90vh;
  overflow-y: auto;
}

.admin-modal-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.admin-msg-cell {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.login-password-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.login-password-wrap .login-input {
  padding-right: 44px;
}

.login-toggle-pw {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.login-toggle-pw:hover {
  opacity: 1;
}

/* ===== COMPANIES LIST PAGE ===== */
.comp-list-hero {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 96px 48px 80px;
}

.comp-list-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comp-list-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.comp-list-subtitle {
  font-family: var(--font);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-gray);
  max-width: 600px;
}

.comp-list-section {
  background: var(--bg-light);
  padding: 0;
}

.comp-list-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comp-list-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.comp-list-card:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(28, 78, 216, 0.08);
}

.comp-list-card-img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.comp-list-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comp-list-card-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
  margin-left: 32px;
}

.comp-list-card-badge span {
  font-family: var(--font);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--blue);
  background: rgba(28, 78, 216, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

.comp-list-card-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.comp-list-card-desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray);
  max-width: 640px;
}

.comp-list-card-url {
  font-family: var(--font);
  font-weight: 500;
  font-size: 13px;
  color: var(--blue);
  letter-spacing: 0.5px;
}

.comp-list-card-arrow {
  flex-shrink: 0;
  margin-left: 32px;
  opacity: 0.4;
  transition: opacity 0.2s, transform 0.2s;
}

.comp-list-card:hover .comp-list-card-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ===== CORE DIGITAL PAGE ===== */
.cd-hero {
  background: var(--dark);
  padding: 112px 48px;
  position: relative;
  overflow: hidden;
}

.cd-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.cd-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cd-hero-image-wrap {
  flex: 0 0 420px;
  max-width: 420px;
}

.cd-hero-image {
  width: 100%;
  height: auto;
  opacity: 0.45;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 75%);
  pointer-events: none;
  user-select: none;
}

.cd-hero-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1.5px;
}

.cd-hero-subtitle {
  font-family: var(--font);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
}

.cd-product {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}

.cd-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.cd-section-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 36px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-top: 16px;
  margin-bottom: 12px;
}

.cd-section-desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-gray);
  max-width: 640px;
  margin-bottom: 48px;
}

.cd-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.cd-feature-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cd-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(28, 78, 216, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-feature-name {
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-dark);
}

.cd-feature-desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
}

.cd-cta {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 96px 48px;
  text-align: center;
}

.cd-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cd-cta-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 36px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.cd-cta-subtitle {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 16px;
}

/* ===== SCRIPTLY MED PAGE ===== */
.sm-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
  padding: 112px 48px;
  position: relative;
}

.sm-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sm-hero-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1.5px;
}

.sm-hero-subtitle {
  font-family: var(--font);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
}

.sm-overview {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}

.sm-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.sm-section-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 36px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-top: 16px;
  margin-bottom: 12px;
}

.sm-section-desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-gray);
  max-width: 640px;
  margin-bottom: 48px;
}

.sm-stats-row {
  display: flex;
  gap: 48px;
}

.sm-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sm-stat-num {
  font-family: var(--font);
  font-weight: 700;
  font-size: 32px;
  color: var(--blue);
  letter-spacing: -0.5px;
}

.sm-stat-label {
  font-family: var(--font);
  font-weight: 600;
  font-size: 11px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sm-features {
  background: var(--dark);
  padding: 96px 0;
}

.sm-features-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  letter-spacing: -0.5px;
  margin-top: 16px;
  margin-bottom: 48px;
}

.sm-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sm-feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}

.sm-feature-card:hover {
  border-color: rgba(28, 78, 216, 0.3);
}

.sm-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(28, 78, 216, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
}

.sm-feature-name {
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.sm-feature-desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

.sm-how {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}

.sm-steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}

.sm-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 24px;
}

.sm-step-num {
  font-family: var(--font);
  font-weight: 700;
  font-size: 48px;
  color: rgba(28, 78, 216, 0.15);
  line-height: 1;
}

.sm-step-name {
  font-family: var(--font);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-dark);
}

.sm-step-desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
}

.sm-step-connector {
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, var(--border) 0%, transparent 100%);
  flex-shrink: 0;
  margin-top: 24px;
}

.sm-cta {
  background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
  padding: 96px 48px;
  text-align: center;
}

.sm-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sm-cta-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  letter-spacing: -0.5px;
}

.sm-cta-subtitle {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.sm-cta-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ===== ENTERAXION PAGE ===== */
.ex-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 112px 48px;
  position: relative;
  overflow: hidden;
}

.ex-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.ex-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ex-hero-image-wrap {
  flex: 0 0 420px;
  max-width: 420px;
}

.ex-hero-image {
  width: 100%;
  height: auto;
  opacity: 0.45;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 75%);
  pointer-events: none;
  user-select: none;
}

.ex-hero-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1.5px;
}

.ex-hero-subtitle {
  font-family: var(--font);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
}

.ex-hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}

.ex-about {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}

.ex-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.ex-section-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 36px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-top: 16px;
  margin-bottom: 12px;
}

.ex-section-desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-gray);
  max-width: 640px;
  margin-bottom: 48px;
}

.ex-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 32px;
}

.ex-about-paragraph {
  font-family: var(--font);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.ex-about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ex-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ex-value-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(28, 78, 216, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.ex-value-name {
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.ex-value-desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-gray);
}

.ex-services {
  background: var(--dark);
  padding: 96px 0;
}

.ex-services-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  letter-spacing: -0.5px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.ex-services-subtitle {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
}

.ex-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ex-service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}

.ex-service-card:hover {
  border-color: rgba(28, 78, 216, 0.3);
}

.ex-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(28, 78, 216, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
}

.ex-service-name {
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.ex-service-desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

.ex-tech {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}

.ex-tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ex-tech-tag {
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 24px;
  transition: border-color 0.2s, background 0.2s;
}

.ex-tech-tag:hover {
  border-color: var(--blue);
  background: rgba(28, 78, 216, 0.04);
}

.ex-mvp {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  padding: 96px 48px;
}

.ex-mvp-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}

.ex-mvp-image-wrap {
  flex: 0 0 320px;
  max-width: 320px;
}

.ex-mvp-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 1;
}

.ex-mvp-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ex-mvp-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -1px;
}

.ex-mvp-subtitle {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
}

.ex-mvp-subtitle strong {
  color: #60a5fa;
}

.ex-cta {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 96px 48px;
  text-align: center;
}

.ex-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ex-cta-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 36px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.ex-cta-subtitle {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.ex-cta-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ex-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.ex-cta-btn-primary:hover {
  background: #1a44c0;
}

.ex-cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.ex-cta-btn-outline:hover {
  border-color: var(--blue);
  background: rgba(28, 78, 216, 0.04);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 64px;
    line-height: 68px;
    letter-spacing: -2px;
  }

  .hero-content {
    padding-top: 400px;
  }

  .company-cards {
    flex-direction: column;
  }

  .company-cards-grid .company-card {
    flex: 0 0 100%;
  }

  .company-card {
    height: auto;
    padding-bottom: 32px;
  }

  .quote-text {
    font-size: 28px;
  }

  .leadership-inner {
    flex-direction: column;
    gap: 48px;
  }

  .leadership-left {
    width: 100%;
  }

  .leadership-roster {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-inner {
    flex-direction: column;
    gap: 48px;
  }

  .contact-left {
    flex: none;
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-brand-col {
    flex: 0 0 100%;
  }
}

@media (max-width: 900px) {
  .auth-page-inner {
    flex-direction: column;
  }

  .auth-side {
    padding: 48px 24px 40px;
  }

  .auth-side-title {
    font-size: 28px;
  }

  .auth-side-features {
    display: none;
  }

  .auth-form-side {
    flex: 1;
    padding: 40px 24px 60px;
  }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
}

.mobile-menu-btn svg {
  display: block;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: var(--dark);
  z-index: 200;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-link {
  display: block;
  padding: 12px 16px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.mobile-menu-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 8px 0;
}

.mobile-menu-label {
  font-family: var(--font);
  font-weight: 600;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 16px 4px;
}

.mobile-menu-cta {
  display: block;
  margin: 12px 16px 0;
  padding: 12px 24px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-menu-cta:hover {
  background: #1a44c0;
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .hero {
    height: 700px;
  }

  .hero-content {
    padding: 320px 24px 0 24px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -1px;
    white-space: normal;
  }

  .hero-subtitle {
    width: 100%;
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-inner {
    padding: 0 24px;
  }

  .quote-text {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.5px;
  }

  .companies-inner {
    padding: 80px 24px 1px 24px;
  }

  .section-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .section-title {
    font-size: 36px;
    line-height: 40px;
  }

  .quote-section {
    padding: 64px 24px;
  }

  .quote-text {
    font-size: 22px;
  }

  .leadership-inner {
    padding: 0 24px;
  }

  .leadership-title {
    font-size: 36px;
    line-height: 40px;
  }

  .leadership-roster {
    grid-template-columns: 1fr;
  }

  .news-inner {
    padding: 80px 24px 1px 24px;
  }

  .investor-inner {
    padding: 0 24px;
  }

  .investor-title {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -1px;
  }

  .investor-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-inner {
    padding: 0 24px;
  }

  .contact-title {
    font-size: 36px;
    line-height: 40px;
  }

  .form-row {
    flex-direction: column;
  }

  .submissions-inner {
    padding: 0 24px;
  }

  .mission-hero {
    height: 450px;
  }

  .mission-hero-content {
    padding: 200px 24px 0 24px;
  }

  .mission-hero-title {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -1px;
  }

  .drives-inner {
    padding: 0 24px;
  }

  .drives-title {
    font-size: 32px;
    line-height: 36px;
  }

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

  .mission-companies-inner {
    padding: 0 24px;
  }

  .mission-cta-inner {
    padding: 0 24px;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .mission-cta-text {
    font-size: 20px;
  }

  .inv-hero-inner {
    padding: 0 24px;
    flex-direction: column;
  }

  .inv-hero-image-wrap {
    display: none;
  }

  .inv-hero-title {
    font-size: 36px;
    line-height: 42px;
  }

  .inv-section-inner {
    padding: 0 24px;
  }

  .inv-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .inv-markets-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .inv-cta-inner {
    padding: 0 24px;
  }

  .inv-hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .inv-cta-title {
    font-size: 28px;
    line-height: 34px;
  }

  .inv-video-placeholder {
    height: 240px;
  }

  .inv-video-container iframe {
    height: 240px;
  }


  .rp-hero-inner {
    padding: 0 24px;
    flex-direction: column;
  }

  .rp-hero-image-wrap {
    display: none;
  }

  .ex-hero {
    padding: 64px 24px;
  }

  .ex-hero-inner {
    flex-direction: column;
  }

  .ex-hero-image-wrap {
    display: none;
  }

  .ex-mvp-inner {
    flex-direction: column;
  }

  .ex-mvp-image-wrap {
    flex: 0 0 auto;
    max-width: 240px;
  }

  .ex-hero-title {
    font-size: 36px;
  }

  .comp-list-hero {
    padding: 64px 24px 48px;
  }

  .comp-list-title {
    font-size: 32px;
  }

  .comp-list-inner {
    padding: 48px 24px;
  }

  .comp-list-card {
    padding: 24px;
    flex-wrap: wrap;
  }

  .comp-list-card-img {
    width: 80px;
    height: 80px;
  }

  .comp-list-card-left {
    margin-left: 0;
    margin-top: 16px;
    flex-basis: 100%;
  }

  .comp-list-card-title {
    font-size: 20px;
  }

  .comp-list-card-arrow {
    display: none;
  }

  .cd-hero {
    padding: 72px 24px;
  }

  .cd-hero-inner {
    flex-direction: column;
  }

  .cd-hero-image-wrap {
    display: none;
  }

  .cd-hero-title {
    font-size: 36px;
  }

  .cd-section-inner {
    padding: 0 24px;
  }

  .cd-features-grid {
    grid-template-columns: 1fr;
  }

  .cd-cta {
    padding: 64px 24px;
  }

  .cd-cta-title {
    font-size: 28px;
  }

  .rp-hero-title {
    font-size: 36px;
    line-height: 42px;
  }

  .rp-section-inner {
    padding: 0 24px;
  }

  .rp-section-title {
    font-size: 32px;
    line-height: 38px;
  }

  .rp-barriers-grid {
    grid-template-columns: 1fr;
  }

  .rp-how-grid {
    grid-template-columns: 1fr;
  }

  .rp-features-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .rp-cta-inner {
    padding: 0 24px;
  }

  .rp-cta-title {
    font-size: 28px;
    line-height: 34px;
  }

  .myui-hero-inner {
    padding: 0 24px;
    flex-direction: column;
  }

  .myui-hero-image-wrap {
    display: none;
  }

  .myui-hero-title {
    font-size: 36px;
    line-height: 42px;
  }

  .myui-difference-inner {
    padding: 0 24px;
  }

  .myui-difference-title {
    font-size: 32px;
    line-height: 38px;
  }

  .myui-compare-container {
    flex-direction: column;
  }

  .myui-compare-divider {
    width: 100%;
    height: 3px;
  }

  .myui-benefits-inner {
    padding: 0 24px;
  }

  .myui-benefits-title {
    font-size: 32px;
    line-height: 38px;
  }

  .myui-benefits-grid {
    grid-template-columns: 1fr;
  }

  .myui-cta-inner {
    padding: 0 24px;
  }

  .myui-cta-title {
    font-size: 28px;
    line-height: 34px;
  }

  .contact-hero-inner {
    padding: 0 24px;
  }

  .contact-hero-title {
    font-size: 36px;
    line-height: 40px;
  }

  .contact-body-inner {
    padding: 0 24px;
    flex-direction: column;
    gap: 48px;
  }

  .contact-left {
    flex: none;
  }

  .contact-left-title {
    font-size: 32px;
    line-height: 38px;
  }

  .contact-form-row {
    flex-direction: column;
  }

  .news-page-hero-inner {
    padding: 0 24px;
  }

  .news-page-hero-title {
    font-size: 36px;
    line-height: 40px;
  }

  .news-page-list-inner {
    padding: 16px 20px 0;
  }

  .news-search-bar {
    padding: 24px 20px 0;
  }

  .news-results-info {
    padding: 12px 20px 0;
  }

  .news-page-item-title {
    font-size: 16px;
    line-height: 1.4;
  }

  .founder-inner {
    padding: 0 24px;
  }

  .founder-card {
    flex-direction: column;
    gap: 32px;
  }

  .founder-photo {
    width: 100%;
    height: 280px;
  }

  .founder-name {
    font-size: 28px;
    line-height: 34px;
  }

  .advisors-inner {
    padding: 0 24px;
  }

  .advisors-title {
    font-size: 32px;
    line-height: 36px;
  }

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

  .footer-inner {
    padding: 48px 24px 0 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }
}
