:root {
  --bg: #080C18;
  --bg2: #0B1020;
  --bg3: #0E1428;
  --navy: #101828;
  --blue: #1D6FEB;
  --cyan: #00D4FF;
  --glow: #00BFFF;
  --text: #E8EDF8;
  --muted: #7A8BAA;
  --border: rgba(0, 212, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.03);
  --glass2: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --radius-lg: 24px;
  --font-head: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
  --radius-lg: 24px;
  --text: #ffffff;
  --muted: #808a9d;
  --cyan: #00d4ff;
  --font-head: "Inter", sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family: var(--font-body);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: var(--blue);
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.gradient-text {
  background: linear-gradient(135deg, #00D4FF 0%, #1D6FEB 50%, #7B4FFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-clip: text;
}

.section-tag {
  margin-bottom: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  color: var(--cyan);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.75rem;
  gap: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(0, 212, 255, 0.05);
}

.section-tag i {
  font-size: 0.7rem;
}

.section-title {
  margin-bottom: 1rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--muted);
  font-weight: 600;
  font-size: 1.05rem;
  max-width: 560px;
}

section {
  padding: 110px 0;
}

body::before {
  position: fixed;
  z-index: 0;
  content: "";
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.orb-1 {
  top: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: rgba(0, 180, 255, 0.13);
}

.orb-2 {
  top: 40%;
  right: -80px;
  width: 400px;
  height: 400px;
  background: rgba(29, 111, 235, 0.12);
}

.orb-3 {
  bottom: 5%;
  left: 30%;
  width: 300px;
  height: 300px;
  background: rgba(123, 79, 255, 0.1);
}

header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  padding: 1.2rem 0;
  background: #070d1a;
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transition: all var(--transition);
}

header.scrolled {
  background: #070d1a;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo img {
  width: auto;
  height: 60px;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .logo img {
    height: 60px;
  }
}
@media (max-width: 480px) {
  .logo img {
    height: 50px;
  }
}
nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all var(--transition);
}

nav a {
  position: relative;
  color: var(--muted);
  font-weight: 500;
  font-size: 1.4rem;
  transition: color var(--transition);
}

nav a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--cyan);
  transition: width var(--transition);
}

nav a:hover {
  color: var(--text);
}

nav a:hover::after {
  width: 100%;
}

.login-btn {
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 10px;
  padding: 0.8rem 1.6rem;
  color: #00d4ff;
  font-weight: 600;
  font-size: 1.3rem;
  background: rgba(0, 212, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.login-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, #00D4FF, #1D6FEB);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
  transform: translateY(-2px);
}

.login-btn:active {
  transform: scale(0.96);
}

.menu-toggle {
  z-index: 1100;
  border: none;
  display: none;
  flex-direction: column;
  padding: 4px;
  gap: 5px;
  background: none;
  cursor: pointer;
}

.menu-toggle span {
  border-radius: 2px;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  nav {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    background: rgba(10, 25, 50, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0, 170, 255, 0.15);
    transition: all 0.35s ease;
  }
  nav a {
    color: #cfefff;
    font-size: 1.4rem;
  }
  nav a:hover {
    color: #00d4ff;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.7);
  }
  nav.active {
    margin-top: 15px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background: #061827;
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.65), 0 0 45px rgba(0, 150, 255, 0.18);
    transition: all 0.35s ease;
  }
  .login-btn {
    display: none;
  }
  .header-cta {
    display: none;
  }
}
#home {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 100px;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 20, 50, 0.92) 0%, rgba(8, 12, 24, 0.97) 90%), url("/images/hero_background.webp") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  padding: 4rem 0;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.hero-left {
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow {
  margin-top: 40px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.75rem;
  gap: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(0, 212, 255, 0.06);
}

.hero-eyebrow .dot {
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  animation: pulse 1.5s ease infinite;
}

.hero-title {
  margin-bottom: 1.4rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-sub {
  margin-bottom: 2.5rem;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 480px;
  line-height: 1.8;
}

.hero-btns {
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  border: none;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  gap: 8px;
  background: linear-gradient(135deg, #00D4FF, #1D6FEB);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.5), 0 6px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.07);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  padding-top: 2rem;
  gap: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stats .hero-stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #00D4FF, #1D6FEB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-clip: text;
}

.hero-stats .hero-stat .label {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  #home {
    padding-top: 80px;
    min-height: auto;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.2rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }
  .hero-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .hero-eyebrow {
    margin-bottom: 1.2rem;
    padding: 8px 16px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
  .hero-title {
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 1.1;
    text-align: left;
  }
  .hero-title span {
    color: var(--cyan);
  }
  .hero-title br {
    display: block;
  }
  .hero-sub {
    margin-bottom: 2.5rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
    text-align: left;
  }
  .hero-btns {
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .hero-btns .btn-primary, .hero-btns .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 15px 30px;
    max-width: 320px;
  }
  .hero-stats {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding-top: 2rem;
    gap: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero-stats .hero-stat .num {
    display: block;
    font-size: 1.8rem;
  }
  .hero-stats .hero-stat .label {
    margin-top: 4px;
    display: block;
    font-size: 0.75rem;
  }
  .dashboard-mock {
    border-radius: 16px;
    width: 100%;
    padding: 1.5rem 1rem !important;
    overflow: scroll;
  }
  .dashboard-mock .market-heading {
    margin-bottom: 2rem !important;
    font-size: 1.8rem !important;
    text-align: left;
  }
  .dashboard-mock .market-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dashboard-mock .market-table th, .dashboard-mock .market-table td {
    padding: 1rem 0.6rem !important;
    font-size: 0.85rem !important;
  }
}
.hero-right {
  position: relative;
  z-index: 1;
  margin-top: 80px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem 0;
  animation: fadeUp 0.8s 0.25s ease both;
}

.dashboard-mock {
  position: relative;
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-lg);
  width: 100%;
  padding: 2.2rem 1.6rem;
  overflow: scroll;
  max-width: 520px;
  background: rgba(13, 20, 40, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(0, 212, 255, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.dashboard-mock::before {
  position: absolute;
  top: -80px;
  left: 50%;
  width: 300px;
  height: 200px;
  content: "";
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.dashboard-mock::after {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  content: "";
  background: radial-gradient(circle, rgba(29, 111, 235, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.market-heading {
  margin-bottom: 2.2rem;
  font-size: 2.2rem;
  text-align: center;
}

.market-table {
  width: 100%;
  padding-bottom: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.market-table::-webkit-scrollbar {
  height: 6px;
}

.market-table::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.market-table::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(90deg, #00d4ff, #1d6feb);
}

.market-table {
  scrollbar-width: thin;
  scrollbar-color: #00d4ff rgba(255, 255, 255, 0.05);
}

.market-table table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

.market-table thead tr {
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.market-table th {
  padding: 0 0.6rem 0.8rem;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
}

.market-table th:not(:first-child) {
  text-align: right;
}

.market-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.market-table tbody tr:last-child {
  border-bottom: none;
}

.market-table td {
  padding: 0.9rem 0.6rem;
  font-weight: 600;
  font-size: 0.8rem;
  text-align: right;
  white-space: nowrap;
}

.market-table td.coin {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  gap: 0.5rem;
  text-align: left;
}

.market-table td.red {
  color: #ff4d4d;
}

.market-table td.green {
  color: #00e676;
}

.coin-icon {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--cyan);
  font-size: 0.7rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(29, 111, 235, 0.2));
}

.coin-icon.gold-icon {
  color: #ffd600;
}

.coin-icon.sp-icon {
  color: #00e676;
}

.change-cell {
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 0.75rem;
}

.change-cell.red {
  color: #ff4d4d;
  background: rgba(255, 77, 77, 0.08);
}

.change-cell.green {
  color: #00e676;
  background: rgba(0, 230, 118, 0.08);
}

@media (max-width: 768px) {
  .hero-right {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .dashboard-mock {
    height: -moz-fit-content;
    height: fit-content;
    padding: 1.5rem 1rem;
    max-width: 100%;
  }
  .market-heading {
    font-size: 1.6rem;
  }
  .market-table table {
    min-width: 700px;
  }
  .market-table th {
    font-size: 0.6rem;
  }
  .market-table td {
    font-size: 0.75rem;
  }
  .coin-icon {
    width: 20px;
    height: 20px;
  }
}
footer {
  padding: 60px 0 0;
  font-size: 18px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 3rem;
  gap: 3rem;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.footer-top::-webkit-scrollbar {
  display: none;
}

.footer-brand, .footer-col {
  min-width: 260px;
  flex: 0 0 auto;
}

.logo1 {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 35px;
  gap: 8px;
}

.logo1 i {
  color: var(--cyan);
  font-size: 20px;
}

.logo1 .highlight {
  color: var(--cyan);
}

.footer-brand p {
  margin: 1rem 0 1.5rem;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
  max-width: 320px;
}

.socials {
  display: flex;
  gap: 0.8rem;
}

.social-btn {
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--muted);
  font-size: 19px;
  background: var(--glass);
  transition: 0.3s ease;
}

.social-btn:hover {
  border-color: rgba(0, 212, 255, 0.4);
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.25);
  transform: translateY(-3px);
}

.footer-col h4 {
  margin-bottom: 18px;
  color: var(--cyan);
  font-weight: 600;
  font-size: 22px;
}

.footer-col p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 18px;
  gap: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a i {
  font-size: 10px;
  opacity: 0.6;
}

.footer-col ul li a:hover {
  padding-left: 6px;
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 20px;
  width: 100%;
  padding: 20px 10px;
  color: var(--muted);
  font-size: 16px;
  text-align: center;
}

.footer-bottom a {
  color: var(--cyan);
  font-weight: 600;
}

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

@media (max-width: 768px) {
  footer {
    padding: 50px 0 0;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    overflow-x: visible;
    gap: 2rem;
  }
  .footer-brand, .footer-col {
    width: 100%;
    min-width: 100%;
    text-align: left;
  }
  .socials {
    justify-content: flex-start;
  }
  .footer-col ul li a {
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  .logo {
    font-size: 28px;
  }
  .footer-col h4 {
    font-size: 20px;
  }
  .footer-col p, .footer-col ul li a {
    font-size: 19px;
  }
}
.steps {
  padding: 90px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.steps-title {
  margin-bottom: 3.5rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.steps-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 140px;
  text-align: center;
}

.step-icon {
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--cyan);
  font-size: 1.2rem;
  background: rgba(0, 212, 255, 0.08);
  transition: all var(--transition);
}

.step:hover .step-icon {
  background: rgba(0, 212, 255, 0.15);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
  transform: translateY(-3px);
}

.step p {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.step-arrow {
  color: var(--muted);
  font-size: 1rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .step {
    max-width: 100%;
  }
  .step p {
    font-size: 1rem;
  }
  .step-arrow {
    display: none;
  }
}
.about {
  position: relative;
  padding: 110px 0;
}

.about-content {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.about-image {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(0, 212, 255, 0.08);
}

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

.about-image:hover {
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 212, 255, 0.15);
}

.about-text {
  animation: fadeUp 0.8s ease both;
}

.about-desc {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  color: var(--text);
  font-size: 0.95rem;
  gap: 10px;
}

.feature i {
  color: var(--cyan);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-text {
    order: 1;
  }
  .about-image {
    width: 100%;
    order: 2;
  }
}
.benefits {
  position: relative;
  padding: 110px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.benefits .section-tag {
  margin-bottom: 1.2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.benefits .section-title, .benefits .section-sub {
  margin-inline: auto;
}

.benefits .section-sub {
  max-width: 600px;
}

.benefits-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-radius 0.4s ease;
}

.benefit-card:hover {
  border-radius: 28px;
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(0, 212, 255, 0.2), 0 0 35px rgba(0, 212, 255, 0.15);
}

.benefit-card::before {
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: inherit;
  content: "";
  inset: 0;
  pointer-events: none;
  transition: var(--transition);
}

.benefit-card:hover::before {
  border-color: rgba(0, 204, 255, 0.25);
}

.benefit-card .icon {
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--cyan);
  font-size: 1.1rem;
  background: rgba(0, 212, 255, 0.08);
}

.benefit-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.benefit-card p {
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.6;
}

.benefit-card .bonus {
  margin-bottom: 0.5rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  background: linear-gradient(135deg, #00D4FF, #1D6FEB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.services {
  position: relative;
  padding: 110px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.services .section-sub {
  margin-inline: auto;
}

.services-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 212, 255, 0.15);
}

.service-card .icon {
  margin-bottom: 1.2rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--cyan);
  font-size: 1.2rem;
  background: rgba(0, 212, 255, 0.08);
  margin-inline: auto;
  transition: var(--transition);
}

.service-card:hover .icon {
  background: rgba(0, 212, 255, 0.15);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.trust-payment {
  position: relative;
  padding: 110px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.trust-payment .section-sub {
  margin-inline: auto;
  max-width: 600px;
}

.reviews {
  margin: 3rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.review-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  max-width: 280px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: left;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 212, 255, 0.15);
}

.review-card .user {
  margin-bottom: 6px;
  display: block;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.85rem;
}

.review-card p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.review-card .stars {
  margin-top: 8px;
  color: #00e676;
  font-size: 0.85rem;
}

.payment-grid {
  margin-top: 2.2rem;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  justify-items: center;
}

.payment-item {
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: rgba(0, 0, 0, 0);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: var(--transition);
}

.payment-item img {
  width: 100%;
  height: auto;
  max-width: 390px;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.05);
  opacity: 0.95;
  transition: var(--transition);
}

.payment-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.25) contrast(1.15);
  opacity: 1;
}

.payment-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 992px) {
  .payment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .reviews {
    flex-direction: column;
    align-items: center;
  }
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .payment-item img {
    max-width: 390px;
  }
}
.gallery {
  position: relative;
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
}

.gallery-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.75);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    height: 220px;
  }
}
.contact {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #0c101d 0%, #0B1020 100%);
  overflow: hidden;
}

.contact-wrapper {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info .section-sub {
  margin-top: 1rem;
}

.info-box {
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  padding: 1.2rem;
  gap: 1rem;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
}

.info-box i {
  color: var(--cyan);
  font-size: 1.2rem;
}

.info-box h4 {
  color: var(--text);
  font-size: 0.95rem;
}

.info-box p {
  color: var(--muted);
  font-size: 0.85rem;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group input, .input-group textarea {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  width: 100%;
  padding: 14px;
  color: var(--text);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  outline: none;
}

.input-group textarea {
  min-height: 130px;
  resize: none;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 14px;
  color: var(--muted);
  font-size: 0.85rem;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s ease;
}

.input-group input:focus + label, .input-group textarea:focus + label, .input-group input:valid + label, .input-group textarea:valid + label {
  top: -8px;
  left: 10px;
  padding: 0 6px;
  color: var(--cyan);
  font-size: 0.7rem;
  background: var(--bg);
}

.contact .btn-primary {
  width: 100%;
  justify-content: center;
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
.srx-mining {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  overflow: hidden;
}

.srx-mining .srx-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.srx-mining .srx-text {
  flex: 1;
  max-width: 560px;
}

.srx-mining .section-tag {
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  color: var(--cyan);
  font-weight: 600;
  font-size: 14px;
  gap: 10px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.srx-mining .section-tag i {
  color: var(--cyan);
}

.srx-mining .section-title {
  margin-bottom: 20px;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.15;
}

.srx-mining .section-title .gradient-text {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.srx-mining .section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 520px;
}

.srx-mining .srx-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.srx-mining .srx-image::before {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  width: 420px;
  height: 420px;
  content: "";
  background: radial-gradient(circle, rgba(0, 212, 255, 0.18), transparent 70%);
  filter: blur(15px);
}

.srx-mining .srx-image img {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  transition: all 0.5s ease;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 30px rgba(0, 212, 255, 0.25));
}

.srx-mining .srx-image:hover img {
  transform: perspective(1200px);
}

@media (max-width: 992px) {
  .srx-mining .srx-content {
    gap: 50px;
  }
  .srx-mining .section-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .srx-mining {
    padding: 70px 0;
  }
  .srx-mining .srx-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .srx-mining .srx-text {
    max-width: 100%;
  }
  .srx-mining .section-title {
    font-size: 2rem;
  }
  .srx-mining .section-sub {
    font-size: 1.09rem;
    max-width: 100%;
    line-height: 1.8;
  }
  .srx-mining .srx-image img {
    max-width: 100%;
  }
}
.srx-card {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #0c1120 0%, #0d111c 100%);
  overflow: hidden;
}

.srx-card::before {
  position: absolute;
  top: -180px;
  left: -120px;
  border-radius: 50%;
  width: 420px;
  height: 420px;
  content: "";
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.srx-card::after {
  position: absolute;
  right: -100px;
  bottom: -150px;
  border-radius: 50%;
  width: 320px;
  height: 320px;
  content: "";
  background: radial-gradient(circle, rgba(29, 111, 235, 0.12), transparent 70%);
  pointer-events: none;
}

.srx-card .srx-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.srx-card .srx-text {
  flex: 1;
  max-width: 560px;
}

.srx-card .section-tag {
  margin-bottom: 22px;
  border: 1px solid var(--border);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.95rem;
  gap: 10px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.srx-card .section-tag i {
  color: var(--cyan);
}

.srx-card .section-title {
  margin-bottom: 20px;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
}

.srx-card .section-title .gradient-text {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.srx-card .section-sub {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
}

.srx-card .srx-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.srx-card .srx-image::before {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  width: 420px;
  height: 420px;
  content: "";
  background: radial-gradient(circle, rgba(0, 212, 255, 0.18), transparent 70%);
  filter: blur(15px);
}

.srx-card .srx-image img {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  transition: all 0.5s ease;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 30px rgba(0, 212, 255, 0.25));
}

.srx-card .srx-image:hover img {
  transform: perspective(1200px);
}

@keyframes glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .srx-card {
    padding: 90px 0;
  }
  .srx-card .srx-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .srx-card .srx-text {
    max-width: 100%;
  }
  .srx-card .section-sub {
    margin: 0 auto;
    max-width: 700px;
  }
  .srx-card .srx-image::before {
    width: 300px;
    height: 300px;
  }
  .srx-card .srx-image img {
    max-width: 420px;
  }
}
@media (max-width: 768px) {
  .srx-card {
    padding: 70px 0;
  }
  .srx-card .section-title {
    font-size: 2rem;
  }
  .srx-card .section-sub {
    font-size: 1.09rem;
    line-height: 1.8;
  }
  .srx-card .section-tag {
    padding: 8px 15px;
    font-size: 0.85rem;
  }
  .srx-card .srx-image::before {
    width: 240px;
    height: 240px;
  }
  .srx-card .srx-image img {
    max-width: 100%;
  }
}

/*# sourceMappingURL=main.css.map */
