:root {
  --bg-body: #ffffff;
  --bg-alt: #f8f9fa;
  --text-heading: #353d5c;
  --text-body: #575e7a;
  --text-muted: #8c94a0;
  --orange-brand: #F97F52;
  --yellow-brand: #efa21e;
  --orange-hover: #e0683a;
  --border-light: #eaedf3;
  --shadow-card: 0 10px 30px rgba(53, 61, 92, 0.08);
  --font-rubik: 'Rubik', sans-serif;
  --font-ubuntu: 'Ubuntu', sans-serif;
  --font-roboto: 'Roboto', sans-serif;
}

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

body.light-theme {
  font-family: var(--font-roboto);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

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

.font-semibold {
  font-weight: 600;
}

/* Background SVGs */
.bg-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.left-bg {
  top: 0;
  left: 0;
  width: 450px;
  height: 550px;
  background: radial-gradient(circle at 10% 20%, rgba(249, 127, 82, 0.06) 0%, transparent 60%);
}

.right-bg {
  top: 100px;
  right: 0;
  width: 500px;
  height: 600px;
  background: radial-gradient(circle at 90% 10%, rgba(249, 127, 82, 0.08) 0%, transparent 60%);
}

/* App Notice Bar */
.app-notice-bar {
  background: linear-gradient(90deg, #1e2640 0%, #2a3558 100%);
  color: #ffffff;
  padding: 10px 15px;
  font-size: 0.85rem;
}

.notice-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.notice-badge {
  background-color: var(--orange-brand);
  color: #ffffff;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.75rem;
}

.notice-link {
  color: var(--orange-brand);
  font-weight: 700;
}

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

.notice-close {
  background: none;
  border: none;
  color: #a5bbfd;
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: auto;
}

/* Header Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--orange-brand) 0%, #e05520 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-family: var(--font-rubik);
  box-shadow: 0 4px 10px rgba(249, 127, 82, 0.3);
}

.logo-t { color: #ffffff; }

.logo-brand {
  font-family: var(--font-rubik);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--orange-brand);
  letter-spacing: 0.5px;
  display: block;
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--yellow-brand);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 1.3px;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 25px;
}

.nav-item {
  font-family: var(--font-ubuntu);
  font-size: 0.95rem;
  color: var(--text-heading);
  font-weight: 500;
}

.nav-item:hover {
  color: var(--orange-brand);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 170px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: none;
  flex-direction: column;
}

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

.dropdown-link {
  padding: 10px 18px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.dropdown-link:hover {
  background-color: var(--bg-alt);
  color: var(--orange-brand);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-actions .btn {
  display: none;
}

.theme-toggle-btn {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  padding: 6px 10px;
  border-radius: 20px;
  cursor: pointer;
}

.lang-dropdown {
  font-size: 0.85rem;
  color: var(--text-body);
  display: none;
}

/* Buttons - Now using var(--orange-brand) */
.btn {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 24px;
  font-family: var(--font-ubuntu);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-orange {
  background-color: var(--orange-brand);
  color: #ffffff;
}

.btn-orange:hover {
  background-color: var(--orange-hover);
  box-shadow: 0 6px 20px rgba(249, 127, 82, 0.4);
  transform: translateY(-1px);
}

.btn-outline-orange {
  border-color: var(--orange-brand);
  color: var(--orange-brand);
  background-color: transparent;
}

.btn-outline-orange:hover {
  background-color: var(--orange-brand);
  color: #ffffff;
}

.btn-large {
  padding: 14px 38px;
  font-size: 1rem;
  font-weight: 700;
}

.btn-trade-action {
  background-color: var(--orange-brand);
  color: #ffffff;
  padding: 6px 18px;
  font-size: 0.8rem;
  border-radius: 16px;
}

.btn-trade-action:hover {
  background-color: var(--orange-hover);
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle .bar {
  width: 22px;
  height: 2px;
  background-color: var(--text-heading);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-item {
  font-size: 1.1rem;
  color: var(--text-heading);
  font-weight: 500;
}

.mobile-accordion .accordion-header {
  background: none;
  border: none;
  color: var(--text-heading);
  font-size: 1.1rem;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 500;
}

.accordion-body {
  display: none;
  flex-direction: column;
  padding-left: 15px;
  gap: 10px;
  margin-top: 10px;
}

.mobile-subnav-item {
  font-size: 0.95rem;
  color: var(--text-body);
}

.drawer-cta-group {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.w-full {
  width: 100%;
  display: block;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  display: none;
}

.drawer-backdrop.active {
  display: block;
}

/* Hero Section */
.hero-intro {
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-headline {
  font-family: var(--font-rubik);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.text-highlight {
  color: var(--orange-brand);
}

.hero-subtext {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 520px;
}

.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.hero-img-top {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(53, 61, 92, 0.15));
}

.laptop-frame {
  width: 100%;
}

.laptop-top {
  background-color: #1a2138;
  border: 10px solid #2d3759;
  border-radius: 14px 14px 0 0;
  padding: 15px;
  height: 250px;
  box-shadow: var(--shadow-card);
}

.window-controls {
  display: flex;
  gap: 6px;
  margin-bottom: 15px;
}

.control-dot { width: 9px; height: 9px; border-radius: 50%; }
.control-dot.red { background: #ff5f56; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #27c93f; }

.chart-display {
  background-color: #121728;
  border-radius: 6px;
  padding: 12px;
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.chart-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  padding: 2px 6px;
  border-radius: 4px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100px;
}

.bar {
  width: 12%;
  border-radius: 3px;
}

.bar-up { background-color: #10b981; }
.bar-down { background-color: #ef4444; }

.laptop-bottom {
  height: 14px;
  background: #232b47;
  border-radius: 0 0 18px 18px;
  margin: 0 -15px;
}

.badge-token {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: floatToken 4s ease-in-out infinite alternate;
}

@keyframes floatToken {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.token-btc { top: 5%; left: -5%; }
.token-eth { top: 60%; left: -8%; animation-delay: 1s; }
.token-ltc { top: 10%; right: -5%; animation-delay: 2s; }
.token-usdt { bottom: 5%; right: -5%; animation-delay: 1.5s; }

/* Carousel Section */
.banner-carousel-section {
  padding: 30px 0 60px;
}

.carousel-card {
  background: linear-gradient(135deg, #fff7f4 0%, #fff0ea 100%);
  border: 1px solid #ffe0d5;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.carousel-tag {
  color: var(--orange-brand);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.carousel-title {
  font-family: var(--font-rubik);
  color: var(--text-heading);
  font-size: 1.5rem;
  margin: 8px 0;
}

.carousel-desc {
  color: var(--text-body);
  margin-bottom: 20px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
}

.carousel-dots .dot.active {
  background-color: var(--orange-brand);
  width: 20px;
  border-radius: 10px;
}

/* Why Choose Tokenize Section */
.why-choose-section {
  padding: 80px 0;
  max-width: 980px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-rubik);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 60px;
}

.feature-rows-group {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.feature-text-col {
  max-width: 250px;
  width: 100%;
}

.illustration-box {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 340px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.illustration-box img {
  max-width: 100%;
  max-height: 340px;
  height: 340px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 15px 25px rgba(53, 61, 92, 0.1));
  transition: transform 0.35s ease;
}

.illustration-box:hover img {
  transform: translateY(-5px) scale(1.02);
}

.bubble-bg {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 129, 250, 0.12) 0%, rgba(96, 129, 250, 0.01) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.feature-category-tag {
  color: #6081fa;
  font-family: var(--font-rubik);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-heading {
  font-family: var(--font-rubik);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-heading);
  margin: 10px 0 14px;
}

.feature-description {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Getting Started Section */
.getting-started-section {
  padding: 80px 0;
  background-color: var(--bg-alt);
}

.steps-flow-container {
  position: relative;
  margin-top: 50px;
}

.dashed-connector-line {
  display: none;
  position: absolute;
  top: 40px;
  left: 15%;
  width: 70%;
  height: 2px;
  border-top: 2px dashed #cbd5e1;
  z-index: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.step-box {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.step-box:hover {
  transform: translateY(-6px);
  border-color: var(--orange-brand);
}

.step-icon-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: #fff0ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-num {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--orange-brand);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-circle-icon {
  font-size: 2rem;
}

.step-headline {
  font-family: var(--font-rubik);
  font-size: 1.15rem;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.step-detail {
  color: var(--text-body);
  font-size: 0.9rem;
}

/* Trades History Section */
.trades-history-section {
  padding: 80px 0;
}

.market-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.market-tab {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  color: var(--text-body);
  padding: 8px 24px;
  border-radius: 20px;
  font-family: var(--font-ubuntu);
  font-size: 0.9rem;
  cursor: pointer;
}

.market-tab.active, .market-tab:hover {
  background: var(--orange-brand);
  color: #ffffff;
  border-color: var(--orange-brand);
}

.table-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.table-scroll-wrapper {
  overflow-x: auto;
}

.ticker-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.ticker-table th {
  background-color: var(--bg-alt);
  color: var(--text-heading);
  padding: 16px 20px;
  font-size: 0.85rem;
  text-align: left;
  font-family: var(--font-ubuntu);
  border-bottom: 1px solid var(--border-light);
}

.ticker-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.pair-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.token-sym {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.btc-bg { background: #f7931a; }
.eth-bg { background: #627eea; }
.tkx-bg { background: var(--orange-brand); }
.ltc-bg { background: #345d9d; }

.pair-code { font-weight: 700; color: var(--text-heading); display: block; }
.pair-full { color: var(--text-muted); font-size: 0.8rem; }

.rate-up { color: #10b981; font-weight: 600; }
.rate-down { color: #ef4444; font-weight: 600; }

/* Curved Shape CTA Section (Gray Waterflowing Pattern) */
.curved-shape-container {
  padding: 100px 20px;
  background-color: #f4f6fa;
  background-image: 
    radial-gradient(ellipse at 50% -20%, rgba(96, 129, 250, 0.1) 0%, transparent 70%),
    radial-gradient(circle at 10% 80%, rgba(249, 127, 82, 0.08) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(230, 235, 245, 0.4) 0, rgba(230, 235, 245, 0.4) 1px, transparent 0, transparent 50%);
  background-size: 100% 100%, 100% 100%, 30px 30px;
  color: var(--text-heading);
  position: relative;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.curved-shape-content {
  max-width: 750px;
  margin: 0 auto;
}

.trust-heading {
  font-family: var(--font-rubik);
  font-size: 2.2rem;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.highlight-orange {
  color: var(--orange-brand);
}

.trust-paragraph {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 35px;
  line-height: 1.7;
}

/* Site Footer (Light Theme) */
.site-footer {
  background-color: #f8f9fa;
  color: var(--text-body);
  padding: 70px 0 30px;
  border-top: 1px solid var(--border-light);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about {
  color: var(--text-body);
  font-size: 0.9rem;
  margin-top: 15px;
  max-width: 300px;
}

.footer-title {
  font-family: var(--font-rubik);
  font-size: 1rem;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: var(--text-body);
  font-size: 0.9rem;
}

.footer-menu a:hover {
  color: var(--orange-brand);
}

.contact-email {
  color: var(--text-body);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.social-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-tag {
  background-color: #ffffff;
  color: var(--text-body);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  border: 1px solid var(--border-light);
}

.social-tag:hover {
  color: var(--orange-brand);
  border-color: var(--orange-brand);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 25px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Media Queries */
@media (min-width: 768px) {
  .hero-headline { font-size: 3.2rem; }
  .hero-row { grid-template-columns: 1.1fr 0.9fr; }
  .feature-row { grid-template-columns: 1fr 1fr; gap: 30px; }
  .feature-row.reverse .feature-text-col { order: 1; }
  .feature-row.reverse .feature-img-col { order: 2; }
  .feature-text-col { padding: 0; max-width: 250px; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .dashed-connector-line { display: block; }
  .footer-columns { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

@media (min-width: 992px) {
  .main-nav { display: flex; }
  .lang-dropdown { display: inline-block; }
  .mobile-menu-toggle { display: none; }
  .header-actions .btn { display: inline-block; }
}
