html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: transparent;
  position: relative;
  margin: 40px auto 0 auto;
  max-width: 640px;
  background: #181818;
  border-radius: 32px;
  box-shadow: 0 2px 16px #0004;
  min-height: 56px;
}

.navbar-investors {
  max-width: 400px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2px;
  margin: 0 auto;
  padding: 0;
}
.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  margin: 0 10px;
  padding: 6px 12px;
  border-radius: 16px;
  transition: background 0.2s;
}
.navbar a.contact-btn {
  font-weight: bold;
  font-weight: bold;
  border: 2px solid #ffe066;
}
.navbar a:hover {
  background: #222;
}
.profile {
  position: absolute;
  right: 24px;
  top: 4px;
  display: flex;
  align-items: center;
}
.profile img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #444;
  box-shadow: 0 2px 8px #0008;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  position: relative;
  min-height: 350px;
  padding-bottom: 0px;
  padding-top: 100px;
}

.dots-bg {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 260px;
  z-index: 0;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="0.5" fill="%23ffe066"/></svg>');
  background-repeat: repeat;
  opacity: 0.7;
}
.hero > *:not(.dots-bg) {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -2px;
  margin: 0 0 24px 0;
  position: relative;
  z-index: 2;
  line-height: 1.1;
  display: flex;
  align-items: center;
}

.big-yellow-dot {
  display: inline-block;
  width: 64px;
  height: 64px;
  background: #ffe066;
  border-radius: 50%;
  margin-left: 24px;
  position: relative;
  top: -24px;
  z-index: 1;
}
.hero .dot {
  color: #ffe066;
}
.hero .tagline {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 48px 0;
  text-align: center;
  max-width: 700px;
  line-height: 1.4;
  letter-spacing: 1px;
}
.cta-btn {
  background: #ffe066;
  color: #222;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px #0006;
  margin-bottom: 24px;
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #ffd700;
}
.circle-avatar {
  position: absolute;
  top: 110px;
  right: 50%;
  transform: translateX(50%);
  background: #6c63ff;
  color: #fff;
  font-weight: bold;
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #0008;
  border: 4px solid #222;
  z-index: 3;
}

.vending-machine {
  display: flex;
  justify-content: center;
}
.vending-machine img {
  width: 80%;
  border-radius: 0;
  box-shadow: none;
  max-width: 1100px;
}

.investors-hero h1 {
  font-size: 80px;
}

@media (max-width: 900px) {
  .hero h1 { font-size: 48px; }
  .investors-hero h1 { font-size: 60px; }
  .vending-machine img { max-width: 95vw; }
  .navbar { padding: 16px; }
  .big-yellow-dot { display: none; }
}

@media (max-width: 500px) {
  .investors-hero h1 { font-size: 30px; }
  .big-yellow-dot { display: none; }
}

.how-section {
  /* width: 100vw; */
  display: flex;
  justify-content: center;
  /* background: #222; */
  /* padding: 60px 0 60px 0; */
}
.how-container {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 32px #0002;
  display: flex;
  flex-direction: row;
  max-width: 1100px;
  width: 100%;
  padding: 48px 32px;
  gap: 40px;
}
.how-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.how-title {
  font-size: 54px;
  font-weight: 900;
  margin: 0 0 32px 0;
  line-height: 1.05;
  color: #111;
}
.how-image {
  width: 100%;
  border-radius: 20px;
  margin-top: 8px;
  box-shadow: 0 2px 16px #0002;
}
.how-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.how-intro {
  font-size: 15px;
  color: #222;
  margin-bottom: 12px;
  margin-top: 0;
}
.how-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.how-card {
  border-radius: 16px;
  padding: 24px 22px 20px 22px;
  box-shadow: 0 2px 8px #0001;
  position: relative;
}
.how-card-dark {
  background: #111;
  color: #fff;
  overflow: hidden;
}
.how-card-dark h3 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.how-card-dark p {
  font-size: 14px;
  color: #eee;
  margin: 0;
}
.how-card-dots {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1.2" fill="%23ffe066"/></svg>');
  background-repeat: repeat;
  opacity: 0.18;
}
.how-card-light {
  background: #f6f6f6;
  color: #111;
}
.how-card-light h3 {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 4px 0;
}
.how-card-light .how-card-sub {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}
.how-card-light p {
  font-size: 14px;
  color: #333;
  margin: 0;
}
@media (max-width: 1100px) {
  .how-container {
    flex-direction: column;
    gap: 24px;
    padding: 32px 8px;
  }
  .how-left, .how-right {
    width: 100%;
    max-width: 100%;
  }
  .how-title {
    font-size: 38px;
  }
  .how-image {
    max-width: 100vw;
  }
}

.benefits-section {
  /* width: 100vw; */
  background: #000;
  display: flex;
  justify-content: center;
  padding: 120px 0 120px 0;
}
.benefits-container {
  display: flex;
  flex-direction: row;
  max-width: 1100px;
  width: 100%;
  gap: 40px;
  align-items: flex-start;
}
.benefits-left {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits-image-wrapper {
  position: relative;
  display: inline-block;
}
.benefits-image {
  width: 340px;
  border-radius: 8px;
  display: block;
}
.benefits-avatars {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: -12px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px #0006;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  background: #6c63ff;
  color: #fff;
  position: relative;
  z-index: 2;
}
.avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-left: -16px;
  background: #fff;
  z-index: 1;
}
.benefits-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.benefits-title {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 32px 0;
  line-height: 1.05;
}
.benefit-list {
  width: 100%;
}
.benefit-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0 18px 0;
  position: relative;
}
.benefit-label {
  color: #bbb;
  font-size: 13px;
  min-width: 48px;
  font-family: monospace;
  margin-top: 2px;
}
.benefit-content {
  flex: 1;
}
.benefit-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.benefit-desc {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
}
.benefit-icon {
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.benefit-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #222 0%, #444 100%);
  margin: 0 0 0 0;
  opacity: 0.7;
}
@media (max-width: 1100px) {
  .benefits-container {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .benefits-left, .benefits-right {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }
  .benefits-title {
    font-size: 36px;
    text-align: center;
  }
  .benefits-image {
    width: 90vw;
    max-width: 340px;
  }
  .benefits-section {
    padding: 60px 0 60px 0;
  }
}

.video-section {
  /* width: 100vw; */
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 80px 0 80px 0; */
}
.video-card {
  background: #fff;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 4px 32px #0002;
  /* width: 1100px;
  max-width: 95vw; */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-placeholder {
  width: 90%;
  height: 450px;
  background: #222;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffe066;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 2px;
  box-shadow: 0 4px 32px #0004;
  border: 3px solid #333;
}
@media (max-width: 900px) {
  .video-card {
    width: 100%;
    /* padding: 24px 0 24px 0;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px; */
  }
  .video-placeholder {
    height: 220px;
    font-size: 28px;
  }
}

.howit-section {
  /* width: 100vw;
  background: #ffcb3c;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px; */
  display: flex;
  justify-content: center;
  /* padding: 0 0 40px 0; */
}
.howit-container {
  background: #ffcb3c;
  display: flex;
  flex-direction: row;
  max-width: 1100px;
  width: 100%;
  gap: 40px;
  padding: 60px 40px 40px 40px;
}
.howit-left {
  flex: 1.2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.howit-title {
  font-size: 80px;
  font-weight: 900;
  color: #111;
  margin: 0;
  line-height: 0.95;
}
.howit-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  padding-top: 12px;
}
.howit-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 36px 48px;
  width: 100%;
}
.howit-step {
  background: none;
  box-shadow: none;
  padding: 0 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.howit-step-label {
  color: #111;
  font-size: 15px;
  font-family: monospace;
  font-weight: 700;
  margin-bottom: 2px;
}
.howit-step-title {
  color: #111;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.howit-step-desc {
  color: #222;
  font-size: 16px;
  font-weight: 400;
  max-width: 340px;
}
.howit-divider {
  width: 100%;
  height: 2px;
  background: #d6a900;
  margin: 16px 0 0 0;
  opacity: 0.4;
  display: block;
}
/* .howit-step:nth-child(3), .howit-step:nth-child(4) .howit-divider { */
  /* Hide divider for last row */
  /* display: none;
} */
@media (max-width: 900px) {
  .howit-container {
    flex-direction: column;
    gap: 24px;
    padding: 32px 8px 24px 8px;
  }
  .howit-left, .howit-right {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }
  .howit-title {
    font-size: 38px;
    text-align: center;
  }
  .howit-steps-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 18px 0;
  }
  .howit-step {
    align-items: flex-start;
    text-align: left;
  }
}

.faq-bridge-wrapper {
  background: #000;
  position: relative;
  z-index: 1;
  padding-top: 0;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-section {
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 0 20px 0;
  position: relative;
  z-index: 2;
}
.faq-card {
  background: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 40px #0005;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 32px 56px 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 700px;
  z-index: 3;
}
.faq-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}
.faq-label {
  color: #aaa;
  font-size: 15px;
  font-family: monospace;
  font-weight: 500;
  margin-top: 18px;
}
.faq-title {
  flex: 1;
  text-align: left;
  font-size: 48px;
  font-weight: 900;
  color: #111;
  margin: 0 0 0 0;
  letter-spacing: -1px;
  margin-left: 60px;
}
.faq-desc {
  color: #888;
  font-size: 16px;
  margin-top: 18px;
  min-width: 220px;
  text-align: right;
}
.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  border-bottom: 1px solid #eee;
  min-height: 56px;
  position: relative;
  background: none;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  border-radius: 8px;
  background: #ffcb3c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 24px 0 0;
  font-size: 22px;
  font-weight: 900;
  color: #222;
  box-shadow: 0 2px 8px #0001;
}
.faq-icon-plus::before {
  content: '+';
  font-size: 22px;
  font-weight: 900;
  color: #222;
}
.faq-icon-minus::before {
  content: '–';
  font-size: 28px;
  font-weight: 900;
  color: #222;
  position: relative;
  top: -2px;
}
.faq-q-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
}
.faq-q {
  font-size: 19px;
  color: #111;
  font-weight: 700;
  margin: 16px 0 0 0;
  padding-right: 16px;
  flex: 1;
}
.faq-a {
  font-size: 15px;
  color: #666;
  font-weight: 400;
  margin: 8px 0 16px 52px;
  flex-basis: 100%;
  width: 90%;
}
.faq-item:not(.open) .faq-a {
  display: none;
}
.faq-contact {
  position: absolute;
  right: 48px;
  bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.faq-contact-note {
  color: #aaa;
  font-size: 15px;
  margin-bottom: 2px;
}
.faq-contact-btn {
  background: #fff;
  color: #222;
  border: 2px solid #ffcb3c;
  border-radius: 18px;
  padding: 6px 18px 6px 18px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px #0001;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s;
}
.faq-contact-btn:hover {
  background: #ffcb3c;
  color: #111;
}
.faq-contact-arrow {
  font-size: 18px;
  color: #ffcb3c;
  margin-left: 2px;
  font-weight: 900;
}
.faq-contact-btn:hover .faq-contact-arrow {
  color: #111;
}
@media (max-width: 900px) {
  .faq-card {
    padding: 24px 8px 80px 8px;
    border-radius: 0px 0 18px 18px;
    min-height: 0;
  }
  .faq-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .faq-title {
    font-size: 28px;
    margin-left: 0;
  }
  .faq-desc {
    text-align: left;
    min-width: 0;
    font-size: 14px;
  }
  .faq-contact {
    position: static;
    margin-top: 32px;
    align-items: flex-start;
  }
}

.footer-section {
  /* width: 100vw; */
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0 32px 0;
  margin-top: 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  font-size: 17px;
  font-weight: 400;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 16px;
  transition: background 0.2s, color 0.2s;
}
.footer-linkedin {
  background: #111;
  border: 2px solid #ffe066;
  color: #fff;
  border-radius: 22px;
  padding: 6px 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  transition: background 0.2s, color 0.2s;
}
.footer-linkedin:hover {
  background: #ffe066;
  color: #111;
}
.footer-linkedin-icon {
  background: #ffe066;
  color: #222;
  font-weight: 900;
  border-radius: 50%;
  padding: 2px 7px 2px 7px;
  font-size: 18px;
  margin-left: 6px;
  display: inline-block;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0 16px 0;
}
.footer-logo {
  font-size: 160px;
  font-weight: 900;
  letter-spacing: -6px;
  color: #fff;
  line-height: 1;
}
.footer-dot {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: #ffcb3c;
  border-radius: 50%;
  margin-left: 32px;
  margin-bottom: 16px;
}
.footer-bottom {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  border-top: 2px solid #444;
  padding-top: 16px;
  font-size: 17px;
}
.footer-copyright {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.footer-backtotop {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-backtotop:hover {
  color: #ffe066;
}
.footer-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 22px;
  background: #222;
  border-radius: 16px;
  border: 2px solid #fff;
  margin-right: 6px;
  position: relative;
}
.footer-toggle span:first-child {
  display: block;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 3px;
}
.footer-toggle span:last-child {
  display: block;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  right: 4px;
  top: 3px;
  opacity: 0.5;
}
@media (max-width: 900px) {
  .footer-logo {
    font-size: 56px;
  }
  .footer-dot {
    width: 32px;
    height: 32px;
    margin-left: 12px;
    margin-bottom: 4px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    padding-top: 8px;
  }
  .footer-section {
    padding: 32px 0 16px 0;
  }
  .footer-nav {
    font-size: 14px;
    gap: 10px;
    margin-bottom: 18px;
  }
}

.video-embed::-webkit-media-controls {
  display: none !important;
}
.video-embed::-webkit-media-controls-enclosure {
  display: none !important;
}
.video-embed::-webkit-media-controls-panel {
  display: none !important;
}
.video-embed::-webkit-media-controls-play-button,
.video-embed::-webkit-media-controls-start-playback-button,
.video-embed::-webkit-media-controls-timeline,
.video-embed::-webkit-media-controls-current-time-display,
.video-embed::-webkit-media-controls-time-remaining-display,
.video-embed::-webkit-media-controls-mute-button,
.video-embed::-webkit-media-controls-volume-slider {
  display: none !important;
}
.video-embed {
  outline: none;
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  transition: background 0.2s;
}
.video-play-overlay:hover {
  background: rgba(255,224,102,0.8);
}
.video-play-overlay svg polygon {
  transition: fill 0.2s;
}
.video-play-overlay:hover svg polygon {
  fill: #222;
}

@media (max-width: 900px) {
  .faq-bridge-wrapper {
    margin-top: 0px;
  }
  .howit-section {
    padding: 0 0 0px 0;
  }
}

.navbar-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  z-index: 1002;
}
.navbar-hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.2s;
}
.navbar-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #111;
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 16px 16px 16px;
  gap: 24px;
}
.navbar-mobile-menu.open {
  display: flex;
}
.navbar-mobile-menu a {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  margin: 12px 0;
  padding: 12px 24px;
  border-radius: 16px;
  background: none;
  transition: background 0.2s, color 0.2s;
  display: block;
  text-align: center;
}
.navbar-mobile-menu a.contact-btn {
  font-weight: bold;
  border: 2px solid #ffe066;
}
.navbar-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  z-index: 1003;
}
@media (max-width: 900px) {
  .navbar ul, .profile {
    display: none !important;
  }
  .navbar-hamburger {
    display: flex;
    position: absolute;
    right: 16px;
    /* top: 16px; */
  }
}

/* Competitive Advantage Section */
.competitive-advantage {
  padding: 80px 20px;
  background: #000;
  color: #fff;
}

.advantage-container {
  max-width: 1200px;
  margin: 0 auto;
}

.advantage-header {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

.advantage-title {
  font-size: 48px;
  font-weight: 900;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.advantage-intro {
  font-size: 18px;
  line-height: 1.5;
  color: #ccc;
  margin: 0;
  padding-top: 8px;
}

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

.advantage-card {
  padding: 32px 24px;
  border-radius: 16px;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.advantage-card-dark {
  background: #000;
  color: #fff;
}

.advantage-card-light {
  background: #f6f6f6;
  color: #111;
  position: relative;
  overflow: hidden;
}

.advantage-card-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="%23000"/></svg>');
  background-repeat: repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.advantage-card-light > * {
  position: relative;
  z-index: 2;
}

.advantage-icon {
  font-size: 24px;
  margin-bottom: 16px;
  color: #ffe066;
}

.advantage-metric {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #111;
  font-family: 'Inter', Arial, sans-serif;
}

.advantage-card-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.2;
  margin-top: auto;
}

.advantage-card-desc {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.advantage-card-dark .advantage-card-title {
  color: #fff;
}

.advantage-card-dark .advantage-card-desc {
  color: #ccc;
}

.advantage-card-light .advantage-card-title {
  color: #111;
}

.advantage-card-light .advantage-card-desc {
  color: #333;
}

@media (max-width: 900px) {
  .advantage-header {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .advantage-title {
    font-size: 32px;
  }
  
  .advantage-intro {
    font-size: 16px;
  }
  
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .advantage-card {
    padding: 24px 20px;
    min-height: 180px;
  }
  
  .advantage-metric {
    font-size: 60px;
  }
}

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

/* Financials Section */
.financials-section {
  padding: 80px 20px 0px;
  background: #000;
  color: #fff;
}

.financials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.financials-header {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.financials-title {
  font-size: 48px;
  font-weight: 900;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.financials-intro {
  font-size: 18px;
  line-height: 1.5;
  color: #ccc;
  margin: 0;
  padding-top: 8px;
}

.financials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.financials-revenue,
.financials-costs {
  position: relative;
  padding: 40px 0;
}

.financials-section-label {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.financials-costs .financials-section-label {
  right: 0;
  left: auto;
}

.financial-item {
  margin-bottom: 24px;
}

.financial-percentage {
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
}

.financial-amount {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}

.financial-desc {
  font-size: 16px;
  color: #ccc;
}

.financial-divider {
  height: 1px;
  background: #333;
  margin: 24px 0;
}

.financial-total {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.financial-total-label {
  font-size: 16px;
  font-weight: 700;
  color: #ffe066;
  white-space: nowrap;
}

.financial-total-amount {
  font-size: 36px;
  font-weight: 900;
  color: #ffe066;
}

.financial-icon {
  font-size: 20px;
  color: #ffe066;
}

@media (max-width: 900px) {
  .financials-header {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .financials-title {
    font-size: 32px;
  }
  
  .financials-intro {
    font-size: 16px;
  }
  
  .financials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .financials-section-label {
    position: static;
    writing-mode: horizontal-tb;
    transform: none;
    margin-bottom: 20px;
    font-size: 20px;
  }
  
  .financial-amount {
    font-size: 28px;
  }
  
  .financial-total-amount {
    font-size: 32px;
  }
}

.profit-margin-section {
  padding: 0px 20px;
  background: #000;
  color: #fff;
}

.profit-margin-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.profit-margin-card {
  background: #f6f6f6;
  border-radius: 16px;
  padding: 30px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  width: 100%;
}

.profit-margin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="%23000"/></svg>');
  background-repeat: repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.profit-margin-card > * {
  position: relative;
  z-index: 2;
}

.profit-margin-label {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
}

.profit-margin-amount {
  font-size: 64px;
  font-weight: 900;
  color: #111;
  margin-bottom: 16px;
  margin-top: 50px;
  font-family: 'Inter', Arial, sans-serif;
}

.profit-margin-desc {
  font-size: 16px;
  color: #333;
}

@media (max-width: 900px) {
  .profit-margin-card {
    padding: 40px 20px;
    margin-top: 40px;
  }
  
  .profit-margin-amount {
    font-size: 48px;
  }
}

/* Expansion Plan Section */
.expansion-plan {
  padding: 40px 0px 0px 0px;
  color: #111;
}

.expansion-container {
  max-width: 1200px;
  margin: 0px auto;
  background: #ffe066;
  max-width: 1100px;
  padding: 56px 32px 56px 48px;
  border-radius: 32px 32px 0 0;
}

.expansion-header {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

.expansion-title {
  font-size: 48px;
  font-weight: 900;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.expansion-intro {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  margin: 0;
  padding-top: 8px;
}

.expansion-phases {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.expansion-phase {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.phase-title {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  flex-shrink: 0;
  min-width: 200px;
}

.phase-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  flex-grow: 1;
}

.metric-item {
  position: relative;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
}

.metric-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #111;
}

.metric-corner-tl {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
}

.metric-corner-tr {
  top: 8px;
  right: 8px;
  border-left: none;
  border-bottom: none;
}

.metric-corner-bl {
  bottom: 8px;
  left: 8px;
  border-right: none;
  border-top: none;
}

.metric-corner-br {
  bottom: 8px;
  right: 8px;
  border-left: none;
  border-top: none;
}

.metric-value {
  font-size: 24px;
  font-weight: 900;
  color: #111;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  color: #666;
}

.phase-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  font-weight: 300;
  color: #111;
  z-index: 1;
}

@media (max-width: 900px) {
  .expansion-header {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .expansion-title {
    font-size: 32px;
  }
  
  .expansion-intro {
    font-size: 16px;
  }
  
  .expansion-phase {
    flex-direction: column;
    gap: 30px;
  }
  
  .phase-title {
    font-size: 20px;
    min-width: auto;
  }
  
  .phase-metrics {
    gap: 20px;
  }
  
  .metric-item {
    padding: 20px;
  }
  
  .metric-value {
    font-size: 20px;
  }
  
  .phase-plus {
    font-size: 36px;
  }
}

/* Team Section */
.team-section {
  padding: 0px 0px;
  color: #111;
}

.team-container {
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  padding: 56px 32px 56px 48px;
}

.team-title {
  font-size: 48px;
  font-weight: 900;
  margin: 0 0 60px 0;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #111;
}

.team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.team-machine-container {
  display: flex;
  align-items: center;
}

.team-machine {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.team-members-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.team-intro {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-member-card {
  display: flex;
  gap: 24px;
  /* padding: 24px; */
  background: #f6f6f6;
  border-radius: 16px;
  align-items: center;
  min-width: 480px;
}

.team-member-card:nth-child(even) {
  flex-direction: row-reverse;
}

.member-photo {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}

.member-photo-right {
  border-radius: 0 12px 12px 0;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info {
  flex-grow: 1;
  text-align: left;
  padding-right: 24px;
}

.member-info-right {
  padding-left: 24px;
}

.member-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #111;
}

.member-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #111;
}

.member-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

@media (max-width: 900px) {
  .team-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .team-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .team-machine {
    max-width: 80vw;
    height: auto;
  }
}

@media (max-width: 550px) {
  .team-member-card {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    min-width: auto;
    padding: 20px;
  }
  
  .team-member-card:nth-child(even) {
    flex-direction: column !important;
  }
  
  .member-photo {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    margin-bottom: 20px;
  }
  
  .member-photo-right {
    border-radius: 12px;
  }
  
  .member-info {
    padding: 0;
    text-align: center;
  }
  
  .member-info-right {
    padding: 0;
  }
  
  .member-name {
    font-size: 18px;
  }
  
  .member-title {
    font-size: 13px;
  }
  
  .member-desc {
    font-size: 13px;
  }

  .team-container {
    padding: 24px 12px 12px 12px;
  }
}

@media (max-width: 600px) {
  .team-machine {
    max-width: 70vw;
    height: auto;
  }
  
  .team-machine-container {
    padding: 0 15px;
  }
}

@media (max-width: 400px) {
  .team-machine {
    max-width: 60vw;
    height: auto;
  }
  
  .team-machine-container {
    padding: 0 20px;
  }
}
  
  /* .team-member-card {
    padding: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .team-member-card:nth-child(even) {
    flex-direction: column;
  }
  
  .member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
  }
  
  .member-name {
    font-size: 18px;
  } */

/* Contact Section */
.contact-section {
  background: #000;
  color: #fff;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #111;
  border-radius: 12px;
  border: 1px solid #333;
}

.contact-icon {
  font-size: 20px;
  color: #ffe066;
}

.contact-text {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.contact-main {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  color: #fff;
}

.contact-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.contact-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.contact-dot-yellow {
  background: #ffe066;
}

.contact-dot-white {
  border: 2px solid #fff;
  background: transparent;
}

.contact-description {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin: 0 0 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta-btn {
  display: inline-block;
  background: #ffe066;
  color: #222;
  font-weight: bold;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.2s;
}

.contact-cta-btn:hover {
  background: #ffd700;
}

@media (max-width: 900px) {
  .contact-info-grid {
    flex-direction: column;
    gap: 16px;
  }
  
  .contact-header {
    flex-direction: column;
    gap: 16px;
  }
  
  .contact-title {
    font-size: 32px;
  }
  
  .contact-description {
    font-size: 14px;
  }

  .contact-section {
    padding: 40px 20px 0px 20px;
  }
}

/* Investors Page Styles */
.navbar a.active {
  background: #ffe066;
  color: #222;
  font-weight: bold;
}

.investors-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 0;
  background: #000;
  overflow: hidden;
}

.investors-hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.investors-headline {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -2px;
  margin: 0 0 32px 0;
  line-height: 1.1;
  color: #fff;
  position: relative;
  text-align: center;
}

.investors-tagline {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 40px 0;
  text-align: center;
  max-width: 800px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #ccc;
}

.investors-cta {
  background: #ffe066;
  color: #222;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 16px 40px;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255, 224, 102, 0.3);
  transition: all 0.2s;
  margin-bottom: 60px;
}

.investors-cta:hover {
  background: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 224, 102, 0.4);
}

.investors-machine-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
}

.investors-machine {
  max-width: 80%;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  max-width: 1100px;
}

.market-opportunity {
  padding: 80px 20px;
  background: #000;
  color: #fff;
}

.market-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.market-machine-container {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.market-machine {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.market-title {
  font-size: 48px;
  font-weight: 900;
  margin: 0 0 40px 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.market-subtitle {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.market-text {
  font-size: 18px;
  line-height: 1.6;
  color: #ccc;
  margin: 0;
}

.market-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.market-stat-card {
  background: #111;
  border-radius: 0;
  padding: 40px 30px;
  text-align: left;
  position: relative;
  border: 1px solid #333;
}

.market-stat-label {
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
  font-weight: 500;
}

.market-stat-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

.market-stat-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #666;
}

.market-stat-corner-tl {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.market-stat-corner-tr {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

.market-stat-corner-bl {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
}

.market-stat-corner-br {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.market-stat-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
  margin: 0 0 20px 0;
}

.market-stat-highlight {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.market-stat-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.market-stat-plus {
  font-size: 32px;
  font-weight: 300;
  color: #666;
  text-align: center;
  margin: 20px 0;
}

.market-stat-bottom-text {
  font-size: 14px;
  color: #888;
  margin-top: 10px;
}

.market-stat-bottom-highlight {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-top: 5px;
}

@media (max-width: 900px) {
  .investors-headline {
    font-size: 40px;
  }
  
  .investors-tagline {
    font-size: 16px;
  }
  
  .investors-machine {
    max-width: 95vw;
  }
  
  .market-title {
    font-size: 32px;
  }
  
  .market-text {
    font-size: 16px;
  }
  
  .market-stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .market-stat-card {
    padding: 30px 30px;
  }
  
  .market-stat-highlight {
    font-size: 20px;
  }
  
  .investors-hero {
    min-height: 0px;
  }

  .investors-hero-content {
    margin-bottom: 0px;
  }

  .market-opportunity {
    padding: 40px 20px 0px 20px;
  }

  .competitive-advantage {
    padding: 40px 20px 0px 20px;
  }

  .video-section {
    padding: 40px 0px 0px 0px;
  }

  .financials-section {
    padding: 40px 20px 0px 20px;
  }

}