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

body {
  font-family: "Satoshi", sans-serif;
  background-color: #161616;
  background-image: url("assets/backgroundLines.png");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
  color: #fafafa;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Header Component */
.header {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0px;
  top: 0px;
  background: transparent;
  box-shadow: none;
  z-index: 100;
}

.header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 100px;
  gap: 10px;
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  height: 100%;
}

/* Brand Logo */
.brand-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 93px;
  height: 51px;
  object-fit: contain;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 10px;
}

.nav-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 10px;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #f2f2f2;
  text-decoration: none;
  border-radius: 6px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.nav-link.active {
  font-weight: 500;
  color: #acea01;
}

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

/* Header Right Actions */
.header-right-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.login-link {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #f2f2f2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.login-link:hover {
  color: #acea01;
}

.cta-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  width: auto;
  min-width: 111px;
  height: 39px;
  background: #acea01;
  border-radius: 40px;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: #1d1d1d;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

/* Mobile Navigation Toggle */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #acea01;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* Mobile Menu Backdrop */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 998;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0a1c16;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(172, 234, 1, 0.2);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.close-btn {
  background: transparent;
  border: none;
  color: #f2f2f2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.close-btn:hover {
  color: #acea01;
  background-color: rgba(255, 255, 255, 0.05);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 16px;
}

.mobile-nav-link {
  font-family: "Satoshi", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #f2f2f2;
  text-decoration: none;
  padding: 8px 16px;
  transition: color 0.2s ease;
}

.mobile-nav-link.active {
  color: #acea01;
  font-weight: 700;
}

.mobile-nav-link:hover {
  color: #acea01;
}

.mobile-cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 44px;
  background: #acea01;
  border-radius: 40px;
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1d1d1d;
  text-decoration: none;
  margin-top: 10px;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.mobile-cta-button:hover {
  background: #98ce01;
}

/* ========================================== */
/* Hero Main Showcase                         */
/* ========================================== */
.main-content {
  padding-top: 100px;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
}

.hero-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 60px 100px;
  width: 100%;
  max-width: 1512px;
  min-height: 643px;
  gap: 10px;
  position: relative;
}

/* Left Showcase Information */
.hero-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 651px;
  max-width: 651px;
  min-height: 418px;
  flex: 0 0 auto;
  z-index: 5;
  position: relative;
}

/* Live Indicator Badge */
.hero-badge-container {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 24px;
  gap: 10px;
  width: fit-content;
  min-width: 296px;
  height: 40px;
  background: rgba(16, 160, 0, 0.2);
  box-shadow: 0px 0px 14px #acea01;
  border-radius: 30px;
  box-sizing: border-box;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #fafafa;
  white-space: nowrap;
}

.badge-live-dot {
  width: 8px;
  height: 8px;
  background-color: #ff3b3b;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #ff3b3b;
}

.badge-live-text {
  color: #ff3b3b;
  font-weight: 500;
}

.badge-separator {
  color: #fafafa;
}

.badge-text {
  color: #fafafa;
}

/* Main Heading */
.hero-title {
  width: 651px;
  max-width: 100%;
  height: 188px;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 75px;
  line-height: 101px;
  letter-spacing: -1px;
}

.title-green {
  display: block;
  color: #acea01;
}

.title-white {
  display: block;
  color: #fafafa;
}

/* Subtitle Description */
.hero-description {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #fafafa;
  width: 497px;
  max-width: 100%;
}

/* Subscription Form */
.hero-subscribe-form {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 6px;
  width: 570px;
  max-width: 100%;
  height: 44px;
}

.input-wrapper {
  width: 360px;
  max-width: 100%;
  height: 41px;
}

.mobile-input {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 30px;
  gap: 10px;
  width: 100%;
  height: 41px;
  background: #fafafa;
  border-radius: 40px;
  border: none;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(29, 29, 29, 0.4);
}

.mobile-input::placeholder {
  color: rgba(29, 29, 29, 0.4);
}

.mobile-input:focus {
  box-shadow: 0 0 0 2px #acea01;
}

.hero-submit-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  gap: 10px;
  width: 204px;
  height: 44px;
  background: #acea01;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #1d1d1d;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
}

.hero-submit-btn:hover {
  background: #98ce01;
  box-shadow: 0 4px 14px rgba(172, 234, 1, 0.4);
}

/* Trust Metrics Bar */
.hero-metrics-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 40px;
  width: 571px;
  max-width: 100%;
  height: 22px;
}

.metric-item {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #fafafa;
}

.metric-divider {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #fafafa;
}

/* Right Side Mockup */
.hero-right-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 10px;
  isolation: isolate;
  position: relative;
  width: 651px;
  height: 523px;
  flex: 1;
}

.hero-right-image {
  position: absolute;
  width: 1028px;
  height: 771px;
  max-width: none;
  left: -170px;
  top: -144px;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

/* Feature Pill Tags Bar */
.hero-feature-tags-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px 40px 20px;
}

.hero-feature-tags {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1280px;
}

.tag-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  height: 46px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #fafafa;
  white-space: nowrap;
}

/* ========================================== */
/* Why Stoky Features Showcase                */
/* ========================================== */
.why-stoky-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  background-color: transparent;
}

.why-stoky-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 100px;
  width: 100%;
  max-width: 1512px;
  gap: 40px;
}

/* Section Header */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.section-subtitle {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2em;
  color: #fafafa;
  text-transform: uppercase;
}

.section-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 900;
  font-size: 39px;
  line-height: 53px;
}

.section-title .title-green {
  color: #acea01;
  display: block;
}

.section-title .title-white {
  color: #fafafa;
  display: block;
}

.section-description {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #fafafa;
  max-width: 646px;
  opacity: 0.9;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  gap: 20px;
  width: 100%;
  min-height: 224px;
  background: rgba(250, 250, 250, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-sizing: border-box;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.feature-card:hover {
  background: rgba(172, 234, 1, 0.2);
  border: 1px solid rgba(172, 234, 1, 0.3);
}

.card-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #fafafa;
}

.card-text {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #fafafa;
  opacity: 0.9;
}

/* ========================================== */
/* Zero Brokerage Feature Showcase             */
/* ========================================== */
.zero-brokerage-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  background-color: transparent;
}

.zero-brokerage-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  width: 100%;
  max-width: 1512px;
  gap: 60px;
}

.zero-brokerage-media {
  flex: 1;
  max-width: 571px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-image {
  width: 100%;
  max-width: 571px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.zero-brokerage-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 651px;
}

/* Feature Bullets List */
.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10px 0 10px 0;
  padding: 0;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bullet-dot {
  color: #acea01;
  font-size: 20px;
  line-height: 1;
}

.bullet-text {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #fafafa;
}

.highlight-green {
  color: #acea01;
  font-weight: 700;
}

.action-wrapper {
  margin-top: 10px;
}

.action-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  height: 44px;
  background: #acea01;
  border-radius: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #1d1d1d;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

/* ========================================== */
/* Margin Trading Section (Light Background)  */
/* ========================================== */
.margin-trading-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  background-color: transparent;
}

.margin-trading-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  width: 100%;
  max-width: 1512px;
  gap: 60px;
}

.margin-trading-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 651px;
}

.dark-subtitle {
  color: #fafafa !important;
}

.title-dark {
  color: #fafafa;
  display: block;
}

.dark-description {
  color: #fafafa !important;
  opacity: 0.9;
}

/* 2x2 Stats Grid */
.margin-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 497px;
  margin: 10px 0;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  min-height: 119px;
  background: #acea01;
  border-radius: 20px;
  text-align: center;
}

.stat-value {
  font-family: "Satoshi", sans-serif;
  font-weight: 900;
  font-size: 42px;
  line-height: 57px;
  color: #1d1d1d;
}

.stat-label {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #1d1d1d;
}

.margin-trading-media {
  flex: 1;
  max-width: 581px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ========================================== */
/* Trade Across Markets Showcase               */
/* ========================================== */
.markets-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  background-color: transparent;
}

.markets-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 100px;
  width: 100%;
  max-width: 1512px;
  gap: 40px;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.market-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  gap: 20px;
  width: 100%;
  min-height: 224px;
  background: rgba(250, 250, 250, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-sizing: border-box;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.market-card:hover {
  background: rgba(172, 234, 1, 0.2);
  border: 1px solid rgba(172, 234, 1, 0.3);
}

.market-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 20px;
  height: 32px;
  background: rgba(172, 234, 1, 0.4);
  border: 1px solid #acea01;
  border-radius: 8px;
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #fafafa;
  white-space: nowrap;
}

/* ========================================== */
/* Get Started Steps Showcase                 */
/* ========================================== */
.steps-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  background-color: transparent;
}

.steps-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 100px;
  width: 100%;
  max-width: 1512px;
  gap: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  gap: 20px;
  width: 100%;
  min-height: 224px;
  background: rgba(250, 250, 250, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-sizing: border-box;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.step-card:hover {
  background: rgba(172, 234, 1, 0.2);
  border: 1px solid rgba(172, 234, 1, 0.3);
}

.step-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 20px;
  height: 32px;
  background: rgba(172, 234, 1, 0.4);
  border: 1px solid #acea01;
  border-radius: 8px;
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #fafafa;
  white-space: nowrap;
}

/* ========================================== */
/* Mobile App Showcase Section                */
/* ========================================== */
.mobile-app-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  background-color: transparent;
}

.mobile-app-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  width: 100%;
  max-width: 1512px;
  gap: 60px;
}

.mobile-app-media {
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-app-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 651px;
}

/* App Download Area */
.app-download-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 10px;
}

.download-label {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #fafafa;
}

.store-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.store-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.store-icon {
  height: 44px;
  object-fit: contain;
}

.store-text {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #ffffff;
}

/* ========================================== */
/* Real-Time Market Access Showcase           */
/* ========================================== */
.live-market-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  background-color: transparent;
}

.live-market-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 100px;
  width: 100%;
  max-width: 1512px;
  gap: 40px;
}

.market-display-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* Market Tabs Navigation Bar */
.market-tabs-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  gap: 10px;
  width: 100%;
  background: #2a2a2a;
  border-radius: 90px;
  overflow-x: auto;
  scrollbar-width: none;
}

.market-tabs-bar::-webkit-scrollbar {
  display: none;
}

.market-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 70px;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #fafafa;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.market-tab.active {
  background: #acea01;
  color: #1d1d1d;
  font-weight: 700;
}

/* Price Display Card */
.market-price-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  width: 100%;
  min-height: 315px;
  background: #2a2a2a;
  border-radius: 20px;
  box-sizing: border-box;
}

.price-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.live-price-value {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 41px;
  color: #fafafa;
}

.live-price-change {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}

.live-price-change.negative {
  color: #ff3b30;
}

.live-price-change.positive {
  color: #acea01;
}

/* ========================================== */
/* Global Trust Showcase Section              */
/* ========================================== */
.global-trust-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  background-color: transparent;
}

.global-trust-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 100px;
  width: 100%;
  max-width: 1512px;
  gap: 40px;
}

.global-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.country-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.country-image-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(29, 29, 29, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.country-card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 313 / 556;
  object-fit: cover;
  border-radius: 20px;
}

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

.country-name {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: #ffffff;
}

.country-status {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  opacity: 0.8;
}

/* ========================================== */
/* Responsive Layout Adjustments              */
/* ========================================== */
@media (max-width: 1280px) {
  .hero-container {
    padding: 0 60px;
    gap: 20px;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-right-image {
    width: 420px;
    height: 420px;
  }

  .zero-brokerage-container,
  .margin-trading-container,
  .markets-container,
  .steps-container,
  .mobile-app-container,
  .live-market-container,
  .global-trust-container {
    padding: 0 60px;
    gap: 40px;
  }

  .global-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .header-container {
    padding: 10px 40px;
  }

  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 32px;
    gap: 32px;
  }

  .hero-left-content {
    align-items: center;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-description {
    text-align: center;
  }

  .hero-subscribe-form {
    justify-content: center;
  }

  .hero-metrics-bar {
    justify-content: center;
  }

  .hero-right-image {
    width: 340px;
    height: 340px;
  }

  .features-grid,
  .markets-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-stoky-container,
  .markets-container,
  .steps-container,
  .live-market-container,
  .global-trust-container {
    padding: 0 40px;
  }

  .zero-brokerage-container,
  .mobile-app-container {
    flex-direction: column;
    padding: 0 40px;
    gap: 40px;
  }

  .margin-trading-container {
    flex-direction: column-reverse;
    padding: 0 40px;
    gap: 40px;
  }

  .zero-brokerage-media,
  .zero-brokerage-content,
  .margin-trading-media,
  .margin-trading-content,
  .mobile-app-media,
  .mobile-app-content {
    max-width: 100%;
    width: 100%;
  }

  .margin-stats-grid {
    max-width: 100%;
  }
}

@media (max-width: 850px) {
  .header {
    height: 80px;
  }

  .header-container {
    padding: 10px 24px;
  }

  .desktop-nav,
  .header-right-actions {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .main-content {
    padding-top: 80px;
  }
}

@media (max-width: 640px) {
  .features-grid,
  .markets-grid,
  .steps-grid,
  .global-trust-grid {
    grid-template-columns: 1fr;
  }

  .why-stoky-container,
  .markets-container,
  .steps-container,
  .live-market-container,
  .global-trust-container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 28px;
    line-height: 38px;
  }

  .feature-card,
  .market-card,
  .step-card {
    padding: 24px;
    min-height: auto;
  }

  .zero-brokerage-container,
  .margin-trading-container,
  .mobile-app-container {
    padding: 0 20px;
  }

  .margin-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-card {
    padding: 14px;
    min-height: 100px;
  }

  .stat-value {
    font-size: 32px;
    line-height: 42px;
  }

  .stat-label {
    font-size: 14px;
  }

  .market-price-card {
    padding: 24px;
    min-height: auto;
  }

  .live-price-value {
    font-size: 24px;
  }

  .live-price-change {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .hero-container {
    padding: 24px 16px;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero-badge-container {
    padding: 6px 16px;
    font-size: 13px;
  }

  .hero-subscribe-form {
    flex-direction: column;
    width: 100%;
  }

  .input-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .hero-submit-btn {
    width: 100%;
  }

  .hero-metrics-bar {
    gap: 12px;
    font-size: 14px;
  }

  .metric-item {
    font-size: 14px;
  }

  .hero-right-image {
    width: 280px;
    height: 280px;
  }

  .tag-item {
    padding: 10px 20px;
    font-size: 14px;
    height: 40px;
  }
}

/* ==========================================================================
   FAQ Section Styles (Figma Specification & Interactive Dynamic States)
   ========================================================================== */

.faq-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 100px;
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  background-color: transparent;
  position: relative;
}

.faq-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1312px;
  gap: 30px;
}

/* FAQ Header */
.faq-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;
  width: 100%;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2em;
  color: #fafafa;
  text-transform: uppercase;
}

.faq-title {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 54px;
  color: #acea01;
  margin: 0;
}

.faq-description {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #fafafa;
  margin: 0;
}

/* FAQ Items Container */
.faq-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  width: 100%;
}

/* Base FAQ Item - CLOSED STATE */
.faq-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 40px;
  width: 100%;
  border-bottom: 1px solid #2a2a2a;
  border-radius: 0px;
  cursor: pointer;
  overflow: hidden;
  user-select: none;
  transition:
    background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 10px 0px;
  gap: 16px;
  color: #fafafa;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition:
    color 0.3s ease,
    font-weight 0.3s ease;
}

.faq-question-text {
  flex: 1;
}

.faq-icon {
  display: none !important;
}

/* FAQ Answer Accordion Wrapper */
.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  opacity: 0;
  margin-top: 0px;
  transition:
    grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    margin-top 0.3s ease;
}

.faq-answer-content {
  overflow: hidden;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  color: #d1d5db;
  transition: color 0.3s ease;
}

/* ACTIVE / OPEN STATE */
.faq-item.active {
  background: #acea01;
  border-bottom: 1px solid transparent;
  border-radius: 14px;
  padding: 20px 40px;
  box-shadow: 0 10px 30px rgba(172, 234, 1, 0.25);
}

.faq-item.active .faq-question-btn {
  color: #000000;
  font-weight: 700;
}

.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 10px;
}

.faq-item.active .faq-answer-content {
  color: #000000;
  font-weight: 500;
}

/* FAQ Responsive Layout Adaptations */
@media (max-width: 1200px) {
  .faq-section {
    padding: 60px 50px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 20px;
  }

  .faq-title {
    font-size: 28px;
    line-height: 38px;
  }

  .faq-description {
    font-size: 14px;
    line-height: 20px;
  }

  .faq-item {
    padding: 10px 20px;
  }

  .faq-item.active {
    padding: 16px 20px;
    border-radius: 10px;
  }

  .faq-question-btn {
    font-size: 15px;
    line-height: 20px;
  }

  .faq-answer-content {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ==========================================================================
   Zero Brokerage Call-To-Action Banner Section
   ========================================================================== */

.cta-banner-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 100px;
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  background-color: transparent;
  position: relative;
}

.cta-banner-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1312px;
  gap: 20px;
  text-align: center;
}

/* Header Group */
.cta-banner-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.cta-banner-subtitle {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2em;
  color: #fafafa;
  text-transform: uppercase;
}

.cta-banner-title {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 63px;
  line-height: 85px;
  text-align: center;
  color: #acea01;
  margin: 0;
}

/* Features Line Bar */
.cta-banner-features {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
  gap: 20px;
  flex-wrap: wrap;
}

.features-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.feature-text {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #fafafa;
}

.feature-divider {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #fafafa;
  opacity: 0.7;
}

/* Action Button Wrapper & Button */
.cta-banner-action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.cta-banner-btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  gap: 10px;
  min-width: 204px;
  height: 44px;
  background: #acea01;
  border-radius: 40px;
  font-family: "Poppins", "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #1d1d1d;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

/* Responsive Layout Adaptations */
@media (max-width: 1440px) and (min-width: 1025px) {
  .hero-container {
    padding: 40px 60px;
  }
  .hero-right-content {
    width: 550px;
    height: 440px;
  }
  .hero-right-image {
    width: 870px;
    height: 653px;
    left: -140px;
    top: -110px;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column-reverse;
    padding: 30px 20px;
    min-height: auto;
    gap: 30px;
  }

  .hero-right-content {
    width: 100%;
    max-width: 480px;
    height: auto;
    min-height: auto;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    flex: none;
  }

  .hero-right-image {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 480px;
    left: 0;
    top: 0;
    display: block;
  }

  .hero-left-content {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .hero-badge-container {
    width: auto;
    min-width: 0;
    height: auto;
    padding: 8px 20px;
    font-size: 14px;
  }

  .hero-title {
    width: 100%;
    height: auto;
    font-size: 40px;
    line-height: 52px;
    text-align: center;
  }

  .hero-description {
    width: 100%;
    height: auto;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
  }

  .hero-subscribe-form {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    height: auto;
    gap: 10px;
    align-items: center;
    margin: 0 auto;
  }

  .input-wrapper {
    width: 100%;
    max-width: 100%;
    height: 44px;
  }

  .mobile-input {
    width: 100%;
    height: 44px;
    text-align: center;
  }

  .hero-submit-btn {
    width: 100%;
    max-width: 100%;
    height: 44px;
  }

  .hero-metrics-bar {
    width: 100%;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    margin-top: 10px;
  }

  .metric-item,
  .metric-divider {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
    line-height: 42px;
  }

  .hero-right-content,
  .hero-right-image {
    max-width: 340px;
  }

  .hero-metrics-bar {
    gap: 6px 10px;
  }

  .metric-item,
  .metric-divider {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .cta-banner-section {
    padding: 80px 40px;
  }

  .cta-banner-title {
    font-size: 48px;
    line-height: 64px;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .cta-banner-section {
    padding: 60px 20px;
  }

  .cta-banner-title {
    font-size: 34px;
    line-height: 46px;
  }

  .cta-banner-features {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .features-group {
    gap: 12px;
  }

  .feature-text {
    font-size: 14px;
  }

  .feature-divider {
    opacity: 0.5;
  }
}

/* ==========================================================================
   Footer Component 
   ========================================================================== */

.site-footer {
  width: 100%;
  background: #131313;
  padding: 80px 0 60px;
  position: relative;
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 100px;
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  gap: 40px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 314px;
  width: 100%;
}

.footer-brand {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 38px;
  line-height: 51px;
  color: #acea01;
  margin: 0;
}

.footer-description {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #fafafa;
  margin: 0;
}

.footer-social-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
}

.social-title {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}

.social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.social-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Links Columns */
.footer-col-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 200px;
}

.footer-heading {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #fafafa;
  margin: 0;
}

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

.footer-link {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #fafafa;
  text-decoration: none;
  opacity: 0.9;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.footer-link:hover {
  color: #acea01;
  opacity: 1;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 40px;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 50px 0 40px;
  }

  .footer-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
  }

  .footer-col-brand {
    max-width: 100%;
  }

  .footer-col-links {
    width: 100%;
  }
}

/* ==========================================================================
   Account Signup Modal
   ========================================================================== */
.signup-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  padding: 20px;
}

.signup-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.signup-modal-box {
  position: relative;
  width: 1089.36px;
  max-width: 96vw;
  max-height: 90vh;
  background: #1d1d1d;
  border: 0.867px solid rgba(118, 118, 128, 0.12);
  border-radius: 20px;
  padding: 16px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.signup-modal-box::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.signup-modal-overlay.active .signup-modal-box {
  transform: scale(1);
}

/* Close Bar */
.modal-close-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.modal-close-btn {
  width: 23px;
  height: 23px;
  background: #acea01;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.modal-close-icon {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

/* Modal Body Layout */
.modal-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
}

/* Left Image Side */
.modal-left-media {
  flex: 1.1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 520px;
  overflow: visible;
}

.modal-hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  transform: rotate(-10deg) scale(1.15);
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
}

/* Right Form Side */
.modal-right-form-wrapper {
  flex: 1;
  max-width: 510px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Form Header */
.modal-form-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 35px;
  color: #acea01;
  margin: 0;
}

.modal-subtitle {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 15.6px;
  line-height: 21px;
  color: #fafafa;
  margin: 0;
}

/* Signup Form */
.modal-signup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.modal-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.modal-label {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 13.88px;
  line-height: 19px;
  color: #fafafa;
}

.modal-input-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  gap: 8.67px;
  width: 100%;
  height: 38.16px;
  background: #252525;
  border: 0.867px solid rgba(60, 60, 67, 0.29);
  border-radius: 8.67px;
  box-sizing: border-box;
}

.input-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8.67px;
  flex: 1;
}

.field-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.7;
}

.modal-input {
  width: 100%;
  height: 100%;
  background: transparent !important;
  border: none;
  outline: none;
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #fafafa !important;
  caret-color: #fafafa;
}

.modal-input::placeholder {
  color: rgba(128, 128, 128, 0.55);
}

/* Prevent Chrome / Edge / Safari autofill white background & enforce white text */
.modal-input:-webkit-autofill,
.modal-input:-webkit-autofill:hover,
.modal-input:-webkit-autofill:focus,
.modal-input:-webkit-autofill:active,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #252525 inset !important;
  -webkit-text-fill-color: #fafafa !important;
  transition: background-color 5000s ease-in-out 0s;
  caret-color: #fafafa;
}

/* Mobile Input Special Box */
.modal-mobile-input-box {
  padding: 0 4px 0 10px;
}

.country-code-picker {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 10px;
  border-right: 1px solid rgba(60, 60, 67, 0.4);
  height: 24px;
}

.country-code-text {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 12.14px;
  color: #fafafa;
}

.dropdown-arrow-icon {
  width: 10px;
  height: 6px;
}

.mobile-number-field {
  padding-left: 8px;
}

.get-otp-btn {
  height: 30px;
  padding: 0 12px;
  background: #acea01;
  border: 0.867px solid #1d1d1d;
  border-radius: 8.67px;
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 10.4px;
  color: #1d1d1d;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.get-otp-btn:hover {
  background: #98ce01;
}

/* Toggle Password Visibility */
.toggle-password-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

/* Select Language Custom Select Box */
.modal-select-box {
  position: relative;
  cursor: pointer;
}

.modal-select {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 12.14px;
  color: #fafafa;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.modal-select option {
  background: #252525;
  color: #fafafa;
}

/* Modal Submit Button (Create free account) */
.modal-submit-btn {
  width: 100%;
  height: 40px;
  background: #acea01;
  border: 0.867px solid rgba(60, 60, 67, 0.29);
  border-radius: 8.67px;
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: #1d1d1d;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 6px;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.modal-submit-btn:hover {
  background: #98ce01;
  transform: translateY(-1px);
}

/* Footer Section */
.modal-form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.footer-guarantee {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 12.14px;
  color: #ffffff;
  margin: 0;
}

.footer-account-switch {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 12.14px;
  color: #ffffff;
  margin: 0;
}

.sign-in-link {
  color: #acea01;
  font-weight: 700;
  text-decoration: none;
}

.sign-in-link:hover {
  text-decoration: underline;
}

.footer-terms {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 12.14px;
  line-height: 16px;
  color: #ffffff;
  margin: 0;
  max-width: 492px;
}

.footer-terms a {
  color: #acea01;
  text-decoration: none;
}

.footer-terms a:hover {
  text-decoration: underline;
}

/* Modal Mobile Responsiveness */
@media (max-width: 900px) {
  .modal-body {
    flex-direction: column;
  }
  .modal-left-media {
    display: none;
  }
  .signup-modal-box {
    padding: 16px;
  }
}

/* Error and Status Message Text */
.modal-error-text {
  font-family: "Satoshi", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #e53935;
  text-align: center;
  min-height: 18px;
  margin: 4px 0;
}

/* Step 2 OTP Box Inputs */
.otp-inputs-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0 10px 0;
  width: 100%;
}

.otp-box {
  width: 44px;
  height: 48px;
  background: #252525;
  border: 1px solid rgba(60, 60, 67, 0.4);
  border-radius: 8px;
  text-align: center;
  font-family: "Satoshi", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #acea01;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.otp-box:focus {
  border-color: #acea01;
  box-shadow: 0 0 10px rgba(172, 234, 1, 0.3);
}

.resend-wrapper {
  text-align: center;
  margin-bottom: 6px;
}

.resend-link-text {
  color: #acea01;
  font-family: "Satoshi", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.resend-link-text:hover {
  text-decoration: underline;
}

.back-step-wrapper {
  text-align: center;
  margin-top: 10px;
}

.back-step-btn {
  background: none;
  border: none;
  color: #fafafa;
  font-family: "Satoshi", sans-serif;
  font-size: 13px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.back-step-btn:hover {
  opacity: 1;
}
