/* Color palette (RGB):
   - Background: 22 22 21 (#161615)
   - Titles: 237 237 232 (#EDEDE8)
   - Box background: 60 60 58 (#3C3C3A)
   - Box title: 201 201 192 (#C9C9C0)
   - Box body: white (#FFFFFF)
   Accents: green/red allowed for crypto cues
*/

:root {
  --bg: rgb(22,22,21);
  --text: rgb(210,210,205);
  --title: rgb(237,237,232);
  --box: rgb(60,60,58);
  --box-title: rgb(201,201,192);
  --box-body: #ffffff;
  --primary: #2aa2ff; /* subtle blue accent for links/buttons */
  --green: #16c784;   /* crypto green */
  --red: #ea3943;     /* crypto red */
  --muted: rgba(237,237,232,0.6);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Tomorrow", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* Blockchain background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, transparent 98%, rgba(22, 199, 132, 0.1) 100%),
    linear-gradient(0deg, transparent 98%, rgba(22, 199, 132, 0.1) 100%);
  background-size: 50px 50px;
  z-index: -2;
  animation: blockchain-move 20s linear infinite;
}

/* Blockchain blocks animation */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:  rgb(22,22,21);
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(22, 199, 132, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(22, 199, 132, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(22, 199, 132, 0.03) 0%, transparent 50%);
  z-index: -1;
  animation: blockchain-glow 8s ease-in-out infinite alternate;
}

@keyframes blockchain-move {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 50px 50px, -50px -50px;
  }
}

@keyframes blockchain-glow {
  from {
    opacity: 0.3;
    transform: scale(1);
  }
  to {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

/* Blockchain decorative elements */
.blockchain-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.blockchain-block {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(22, 199, 132, 0.1), rgba(22, 199, 132, 0.05));
  border: 2px solid rgba(22, 199, 132, 0.3);
  border-radius: 8px;
  box-shadow: 
    0 0 20px rgba(22, 199, 132, 0.2),
    inset 0 0 20px rgba(22, 199, 132, 0.1);
  animation: blockchain-float 15s ease-in-out infinite;
}

.blockchain-block::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: rgba(22, 199, 132, 0.4);
  border-radius: 50%;
  animation: blockchain-pulse 2s ease-in-out infinite;
}

.blockchain-block::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(22, 199, 132, 0.2), transparent);
  border-radius: 10px;
  animation: blockchain-rotate 4s linear infinite;
  z-index: -1;
}

/* Individual block positions - FIXED */
.block-1 {
  top: 10%;
  left: 10%;
  background: linear-gradient(135deg, rgba(22, 22, 21, 0.95), rgba(22, 22, 21, 0.9));
  border: 2px solid rgba(22, 199, 132, 0.5);
  box-shadow: 
    0 0 30px rgba(22, 199, 132, 0.3),
    inset 0 0 30px rgba(22, 199, 132, 0.2);
  backdrop-filter: blur(10px);
}

.block-2 {
  top: 20%;
  right: 15%;
  background: linear-gradient(135deg, rgba(22, 22, 21, 0.95), rgba(22, 22, 21, 0.9));
  border: 2px solid rgba(22, 199, 132, 0.5);
  box-shadow: 
    0 0 30px rgba(22, 199, 132, 0.3),
    inset 0 0 30px rgba(22, 199, 132, 0.2);
  backdrop-filter: blur(10px);
}

.block-3 {
  top: 60%;
  left: 5%;
}

.block-4 {
  top: 70%;
  right: 10%;
}

.block-5 {
  top: 40%;
  left: 50%;
}

.block-6 {
  top: 80%;
  left: 30%;
}

/* Light impulses that travel between blocks */
.light-impulse {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(22, 199, 132, 1) 0%, rgba(22, 199, 132, 0.8) 30%, transparent 70%);
  border-radius: 50%;
  box-shadow: 
    0 0 10px rgba(22, 199, 132, 0.8),
    0 0 20px rgba(22, 199, 132, 0.6),
    0 0 30px rgba(22, 199, 132, 0.4);
  z-index: 1;
}

/* Impulse paths - traveling between blocks */
.impulse-1 {
  top: 10%;
  left: 10%;
  animation: travel-to-block2 3s ease-in-out infinite;
  animation-delay: 0s;
}

.impulse-2 {
  top: 20%;
  right: 15%;
  animation: travel-to-block3 4s ease-in-out infinite;
  animation-delay: 1s;
}

.impulse-3 {
  top: 60%;
  left: 5%;
  animation: travel-to-block4 3.5s ease-in-out infinite;
  animation-delay: 2s;
}

.impulse-4 {
  top: 70%;
  right: 10%;
  animation: travel-to-block5 4.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.impulse-5 {
  top: 40%;
  left: 50%;
  animation: travel-to-block6 3.8s ease-in-out infinite;
  animation-delay: 1.5s;
}

.impulse-6 {
  top: 80%;
  left: 30%;
  animation: travel-to-block1 4.2s ease-in-out infinite;
  animation-delay: 2.5s;
}

/* Travel animations - square paths like PCB traces */
@keyframes travel-to-block2 {
  0% { 
    transform: translate(0, 0);
    opacity: 0;
  }
  10% { 
    opacity: 1;
  }
  25% { 
    transform: translate(200px, 0); /* Right */
    opacity: 1;
  }
  50% { 
    transform: translate(200px, 100px); /* Down */
    opacity: 1;
  }
  75% { 
    transform: translate(400px, 100px); /* Right */
    opacity: 1;
  }
  90% { 
    transform: translate(400px, 200px); /* Down */
    opacity: 1;
  }
  100% { 
    transform: translate(400px, 200px);
    opacity: 0;
  }
}

@keyframes travel-to-block3 {
  0% { 
    transform: translate(0, 0);
    opacity: 0;
  }
  10% { 
    opacity: 0.8;
  }
  25% { 
    transform: translate(-100px, 0); /* Left */
    opacity: 0.8;
  }
  50% { 
    transform: translate(-100px, 200px); /* Down */
    opacity: 0.8;
  }
  75% { 
    transform: translate(-300px, 200px); /* Left */
    opacity: 0.8;
  }
  90% { 
    transform: translate(-300px, 400px); /* Down */
    opacity: 0.8;
  }
  100% { 
    transform: translate(-300px, 400px);
    opacity: 0;
  }
}

@keyframes travel-to-block4 {
  0% { 
    transform: translate(0, 0);
    opacity: 0;
  }
  10% { 
    opacity: 1;
  }
  25% { 
    transform: translate(200px, 0); /* Right */
    opacity: 1;
  }
  50% { 
    transform: translate(200px, -200px); /* Up */
    opacity: 1;
  }
  75% { 
    transform: translate(400px, -200px); /* Right */
    opacity: 1;
  }
  90% { 
    transform: translate(400px, -100px); /* Down */
    opacity: 1;
  }
  100% { 
    transform: translate(400px, -100px);
    opacity: 0;
  }
}

@keyframes travel-to-block5 {
  0% { 
    transform: translate(0, 0);
    opacity: 0;
  }
  10% { 
    opacity: 1;
  }
  25% { 
    transform: translate(-100px, 0); /* Left */
    opacity: 1;
  }
  50% { 
    transform: translate(-100px, -200px); /* Up */
    opacity: 1;
  }
  75% { 
    transform: translate(-200px, -200px); /* Left */
    opacity: 1;
  }
  90% { 
    transform: translate(-200px, -100px); /* Down */
    opacity: 1;
  }
  100% { 
    transform: translate(-200px, -100px);
    opacity: 0;
  }
}

@keyframes travel-to-block6 {
  0% { 
    transform: translate(0, 0);
    opacity: 0;
  }
  10% { 
    opacity: 1;
  }
  25% { 
    transform: translate(-100px, 0); /* Left */
    opacity: 1;
  }
  50% { 
    transform: translate(-100px, 200px); /* Down */
    opacity: 1;
  }
  75% { 
    transform: translate(-200px, 200px); /* Left */
    opacity: 1;
  }
  90% { 
    transform: translate(-200px, 300px); /* Down */
    opacity: 1;
  }
  100% { 
    transform: translate(-200px, 300px);
    opacity: 0;
  }
}

@keyframes travel-to-block1 {
  0% { 
    transform: translate(0, 0);
    opacity: 0;
  }
  10% { 
    opacity: 1;
  }
  25% { 
    transform: translate(200px, 0); /* Right */
    opacity: 1;
  }
  50% { 
    transform: translate(200px, -300px); /* Up */
    opacity: 1;
  }
  75% { 
    transform: translate(400px, -300px); /* Right */
    opacity: 1;
  }
  90% { 
    transform: translate(400px, -200px); /* Down */
    opacity: 1;
  }
  100% { 
    transform: translate(400px, -200px);
    opacity: 0;
  }
}

@keyframes blockchain-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.8;
  }
}

@keyframes blockchain-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive light impulses */
@media (max-width: 768px) {
  .light-impulse {
    width: 3px;
    height: 3px;
  }
  
  /* Adjust travel distances for mobile */
  @keyframes travel-to-block2 {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 1; }
    25% { transform: translate(100px, 0); opacity: 1; }
    50% { transform: translate(100px, 50px); opacity: 1; }
    75% { transform: translate(200px, 50px); opacity: 1; }
    90% { transform: translate(200px, 100px); opacity: 1; }
    100% { transform: translate(200px, 100px); opacity: 0; }
  }
  
  @keyframes travel-to-block3 {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 0.8; }
    25% { transform: translate(-50px, 0); opacity: 0.8; }
    50% { transform: translate(-50px, 100px); opacity: 0.8; }
    75% { transform: translate(-150px, 100px); opacity: 0.8; }
    90% { transform: translate(-150px, 200px); opacity: 0.8; }
    100% { transform: translate(-150px, 200px); opacity: 0; }
  }
}

/* Blockchain connections */
.blockchain-elements::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, transparent 48%, rgba(22, 199, 132, 0.05) 49%, rgba(22, 199, 132, 0.05) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(22, 199, 132, 0.05) 49%, rgba(22, 199, 132, 0.05) 51%, transparent 52%);
  background-size: 100px 100px;
  animation: blockchain-connections 25s linear infinite;
  opacity: 0.2;
}

@keyframes blockchain-connections {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 100px 100px, -100px -100px;
  }
}

/* Responsive blockchain elements */
@media (max-width: 768px) {
  .blockchain-block {
    width: 40px;
    height: 40px;
  }
  
  .blockchain-block::before {
    width: 15px;
    height: 15px;
  }
  
  .blockchain-elements::before {
    background-size: 60px 60px;
  }
  
  .circuit-path {
    stroke-width: 0.5;
  }
  
  /* Adjust circuit paths for mobile */
  @keyframes circuit-path-1 {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
    25% { transform: translate(100px, 50px) rotate(90deg); opacity: 0.6; }
    50% { transform: translate(200px, 25px) rotate(180deg); opacity: 0.4; }
    75% { transform: translate(150px, -25px) rotate(270deg); opacity: 0.7; }
    100% { transform: translate(0, 0) rotate(360deg); opacity: 0.3; }
  }
  
  @keyframes circuit-path-2 {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.4; }
    20% { transform: translate(-75px, 40px) rotate(72deg); opacity: 0.6; }
    40% { transform: translate(-150px, 10px) rotate(144deg); opacity: 0.5; }
    60% { transform: translate(-100px, -30px) rotate(216deg); opacity: 0.7; }
    80% { transform: translate(-25px, -50px) rotate(288deg); opacity: 0.4; }
    100% { transform: translate(0, 0) rotate(360deg); opacity: 0.4; }
  }
}

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

/* Header */
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(22,22,21,0.9); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--title); font-weight: 700; letter-spacing: 0.5px; }
.logo { height: 40px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }
.brand span { font-size: 24px; }

.menu { display: flex; gap: 18px; }
.menu a { color: var(--muted); text-decoration: none; padding: 8px 10px; border-radius: 8px; transition: color .2s, background .2s; }
.menu a:hover { color: var(--title); background: rgba(255,255,255,0.05); }

.login-btn {
  background: linear-gradient(135deg, var(--green), #20d8a7) !important;
  color: #0b1512 !important;
  font-weight: 600 !important;
  padding: 10px 16px !important;
  border-radius: 12px !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(22,199,132,0.3);
  border: 1px solid rgba(0,0,0,0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.login-btn:hover::before {
  left: 100%;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22,199,132,0.4);
  filter: brightness(1.1);
}

.login-btn i {
  margin-right: 6px;
  font-size: 12px;
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  from { 
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.3));
  }
  to { 
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.6));
  }
}
.burger { display: none; background: transparent; color: var(--title); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 6px 10px; }

@media (max-width: 820px) {
  .burger { display: inline-block; }
  .menu { position: absolute; right: 16px; top: 64px; background: var(--bg); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 16px; display: none; flex-direction: column; min-width: 220px; gap: 12px; }
  .menu.open { display: flex; }
  .login-btn { 
    margin-top: 8px; 
    text-align: center; 
    justify-content: center;
    padding: 12px 20px !important;
    font-size: 14px;
  }
}

/* Hero */
.hero { 
  background: linear-gradient(135deg, rgba(60,60,58,0.6), rgba(22,22,21,0.6)); 
  padding: 56px 0 64px; 
  border-bottom: 1px solid rgba(255,255,255,0.06); 
  position: relative;
  overflow: hidden;
}

/* Ensure hero has blockchain background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, transparent 98%, rgba(22, 199, 132, 0.1) 100%),
    linear-gradient(0deg, transparent 98%, rgba(22, 199, 132, 0.1) 100%);
  background-size: 50px 50px;
  z-index: 0;
  animation: blockchain-move 20s linear infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(22, 199, 132, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(22, 199, 132, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(22, 199, 132, 0.03) 0%, transparent 50%);
  z-index: 0;
  animation: blockchain-glow 8s ease-in-out infinite alternate;
}

/* Particles container */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:  rgb(22,22,21);
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(22, 199, 132, 0.2));
}

/* Neon glow effect for particles */
#particles-js canvas {
  filter: 
    drop-shadow(0 0 5px rgba(22, 199, 132, 0.4))
    drop-shadow(0 0 10px rgba(22, 199, 132, 0.2))
    drop-shadow(0 0 15px rgba(22, 199, 132, 0.1));
  animation: neon-pulse 9s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
  from {
    filter: 
      drop-shadow(0 0 5px rgba(22, 199, 132, 0.4))
      drop-shadow(0 0 10px rgba(22, 199, 132, 0.2))
      drop-shadow(0 0 15px rgba(22, 199, 132, 0.1));
  }
  to {
    filter: 
      drop-shadow(0 0 8px rgba(22, 199, 132, 0.6))
      drop-shadow(0 0 16px rgba(22, 199, 132, 0.4))
      drop-shadow(0 0 24px rgba(22, 199, 132, 0.2));
  }
}

.hero-inner { 
  display: grid; 
  grid-template-columns: 1.1fr 0.9fr; 
  gap: 28px; 
  align-items: center; 
  position: relative;
  z-index: 2;
}
.hero-copy h1 { color: var(--title); font-size: 38px; line-height: 1.1; margin: 0 0 14px; }
.hero-copy p { color: var(--muted); margin: 0 0 18px; font-size: 16px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.btn { appearance: none; border: 1px solid transparent; padding: 10px 16px; border-radius: 10px; font-weight: 600; cursor: pointer; transition: transform .06s ease, background .2s, border-color .2s; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green); color: #0b1512; border-color: rgba(0,0,0,0.15); }
.btn-primary:hover { filter: brightness(1.05); }
.btn-outline { background: transparent; color: var(--title); border-color: rgba(255,255,255,0.18); }
.btn-outline:hover { background: rgba(255,255,255,0.06); }
.btn.full { width: 100%; }

.btn i {
  margin-right: 8px;
  font-size: 14px;
}

.invest-container {
  position: relative;
  margin-top: 8px;
}

.photo-sticker {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--red);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 
    0 4px 12px rgba(234,57,67,0.4),
    0 0 0 2px rgba(255,255,255,0.1);
  z-index: 10;
  transform: rotate(12deg);
  animation: sticker-pulse 2s ease-in-out infinite alternate;
}

@keyframes sticker-pulse {
  from {
    box-shadow: 
      0 4px 12px rgba(234,57,67,0.4),
      0 0 0 2px rgba(255,255,255,0.1);
  }
  to {
    box-shadow: 
      0 6px 16px rgba(234,57,67,0.6),
      0 0 0 3px rgba(255,255,255,0.2);
  }
}

/* Cards */
.card { background: var(--box); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: visible; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.card-media { position: relative; aspect-ratio: 16/9; background: #111; overflow: visible; }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.currency-chips {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: -8px;
  flex-direction: row;
}

.chip { 
  padding: 6px; 
  border-radius: 50%; 
  font-size: 14px; 
  background: rgba(0,0,0,0.8); 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.chip:not(:first-child) {
  margin-left: -8px;
}

.chip:hover {
  z-index: 2;
  transform: scale(1.1);
}

.chip-eth { 
  color: #627eea;
  border: 1px solid #627eea;
  box-shadow: 
    0 0 10px rgba(98,126,234,0.5),
    0 0 20px rgba(98,126,234,0.3),
    inset 0 0 10px rgba(98,126,234,0.1);
  animation: neon-pulse-eth 2s ease-in-out infinite alternate;
}

.chip-btc { 
  color: #f7931a;
  border: 1px solid #f7931a;
  box-shadow: 
    0 0 10px rgba(247,147,26,0.5),
    0 0 20px rgba(247,147,26,0.3),
    inset 0 0 10px rgba(247,147,26,0.1);
  animation: neon-pulse-btc 2s ease-in-out infinite alternate;
}

.chip-eur { 
  color: var(--green);
  border: 1px solid var(--green);
  box-shadow: 
    0 0 10px rgba(22,199,132,0.5),
    0 0 20px rgba(22,199,132,0.3),
    inset 0 0 10px rgba(22,199,132,0.1);
  animation: neon-pulse-eur 2s ease-in-out infinite alternate;
}

@keyframes neon-pulse-eth {
  from {
    box-shadow: 
      0 0 10px rgba(98,126,234,0.5),
      0 0 20px rgba(98,126,234,0.3),
      inset 0 0 10px rgba(98,126,234,0.1);
    text-shadow: 0 0 5px rgba(98,126,234,0.8);
  }
  to {
    box-shadow: 
      0 0 15px rgba(98,126,234,0.8),
      0 0 30px rgba(98,126,234,0.5),
      inset 0 0 15px rgba(98,126,234,0.2);
    text-shadow: 0 0 10px rgba(98,126,234,1);
  }
}

@keyframes neon-pulse-btc {
  from {
    box-shadow: 
      0 0 10px rgba(247,147,26,0.5),
      0 0 20px rgba(247,147,26,0.3),
      inset 0 0 10px rgba(247,147,26,0.1);
    text-shadow: 0 0 5px rgba(247,147,26,0.8);
  }
  to {
    box-shadow: 
      0 0 15px rgba(247,147,26,0.8),
      0 0 30px rgba(247,147,26,0.5),
      inset 0 0 15px rgba(247,147,26,0.2);
    text-shadow: 0 0 10px rgba(247,147,26,1);
  }
}

@keyframes neon-pulse-eur {
  from {
    box-shadow: 
      0 0 10px rgba(22,199,132,0.5),
      0 0 20px rgba(22,199,132,0.3),
      inset 0 0 10px rgba(22,199,132,0.1);
    text-shadow: 0 0 5px rgba(22,199,132,0.8);
  }
  to {
    box-shadow: 
      0 0 15px rgba(22,199,132,0.8),
      0 0 30px rgba(22,199,132,0.5),
      inset 0 0 15px rgba(22,199,132,0.2);
    text-shadow: 0 0 10px rgba(22,199,132,1);
  }
}
.card-body { padding: 14px; background: var(--box); }
.card-body h3 { margin: 0 0 6px; color: var(--box-title); font-size: 18px; }
.row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pill { font-size: 12px; padding: 4px 8px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); }
.pill-green { color: var(--green); border-color: rgba(22,199,132,0.35); }
.pill-red { color: var(--red); border-color: rgba(234,57,67,0.35); }
.meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 8px 0; }
.dim { color: var(--muted); font-weight: 500; }
.rating { color: var(--title); opacity: 0.9; }
.progress { position: relative; height: 8px; border-radius: 6px; background: rgba(255,255,255,0.08); overflow: hidden; margin: 8px 0 6px; }
.progress span { position: absolute; left: 0; top: 0; bottom: 0; background: linear-gradient(90deg, var(--green), #20d8a7); border-radius: 6px; }

/* Grids & Sections */
.section { padding: 80px 0; }
.section-title { 
  margin: 0 0 24px; 
  color: var(--title); 
  font-size: 28px; 
  letter-spacing: 0.3px; 
  text-align: center;
  font-weight: 700;
}
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; } .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid { grid-template-columns: 1fr; } }

/* Section Subtitle */
.section-subtitle { 
  text-align: center; 
  color: var(--muted); 
  margin: 0 0 60px; 
  font-size: 18px; 
  max-width: 700px; 
  margin-left: auto; 
  margin-right: auto; 
  line-height: 1.6;
}

/* Tokenization Flow */
.tokenization-flow { 
  display: grid; 
  gap: 40px; 
  margin-bottom: 60px; 
}

.flow-step { 
  display: grid; 
  grid-template-columns: auto 1fr; 
  gap: 32px; 
  align-items: start; 
  padding: 32px; 
  background: rgba(60,60,58,0.3); 
  border: 1px solid rgba(255,255,255,0.08); 
  border-radius: 16px; 
  transition: all 0.3s ease; 
}

.flow-step:hover { 
  background: rgba(60,60,58,0.5); 
  border-color: rgba(22,199,132,0.2); 
  transform: translateY(-2px); 
}

.step-visual { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 12px; 
  min-width: 80px; 
}

.step-icon { 
  width: 60px; 
  height: 60px; 
  border-radius: 50%; 
  background: linear-gradient(135deg, var(--green), #20d8a7); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 24px; 
  color: #0b1512;
  box-shadow: 0 8px 24px rgba(22,199,132,0.3); 
  animation: pulse 2s infinite; 
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.step-arrow { 
  font-size: 20px; 
  color: var(--green); 
  opacity: 0.7; 
}

.step-content { 
  flex: 1; 
}

.step-number { 
  display: inline-block; 
  background: var(--green); 
  color: #0b1512; 
  padding: 4px 12px; 
  border-radius: 20px; 
  font-size: 12px; 
  font-weight: 700; 
  letter-spacing: 0.5px; 
  margin-bottom: 12px; 
}

.step-content h3 { 
  margin: 0 0 16px; 
  color: var(--title); 
  font-size: 22px; 
  font-weight: 600; 
}

.step-content p { 
  margin: 0 0 20px; 
  color: var(--muted); 
  line-height: 1.7; 
  font-size: 16px;
}

.step-features { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
}

.feature-tag { 
  background: rgba(22,199,132,0.1); 
  color: var(--green); 
  padding: 4px 10px; 
  border-radius: 12px; 
  font-size: 12px; 
  font-weight: 500; 
  border: 1px solid rgba(22,199,132,0.2); 
  display: flex;
  align-items: center;
  gap: 6px;
}

.feature-tag i {
  font-size: 10px;
}

/* Security Banner */
.security-banner { 
  display: flex; 
  gap: 32px; 
  padding: 40px; 
  background: linear-gradient(135deg, rgba(60,60,58,0.8), rgba(22,22,21,0.9)); 
  border: 1px solid rgba(22,199,132,0.2); 
  border-radius: 16px; 
  align-items: center; 
}

.security-icon { 
  font-size: 48px; 
  color: var(--green);
  flex-shrink: 0; 
  filter: drop-shadow(0 0 10px rgba(22,199,132,0.5));
}

.security-content h4 { 
  margin: 0 0 12px; 
  color: var(--title); 
  font-size: 20px; 
  font-weight: 600; 
}

.security-content p { 
  margin: 0 0 20px; 
  color: var(--muted); 
  line-height: 1.6; 
  font-size: 16px;
}

.security-badges { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
}

.badge { 
  background: rgba(22,199,132,0.15); 
  color: var(--green); 
  padding: 6px 12px; 
  border-radius: 20px; 
  font-size: 12px; 
  font-weight: 600; 
  border: 1px solid rgba(22,199,132,0.3); 
}

/* Responsive Design */
@media (max-width: 768px) {
  .flow-step { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 16px; 
  }
  
  .step-visual { 
    flex-direction: row; 
    justify-content: center; 
    min-width: auto; 
  }
  
  .step-arrow { 
    transform: rotate(90deg); 
  }
  
  .security-banner { 
    flex-direction: column; 
    text-align: center; 
  }
  
  .security-icon { 
    font-size: 36px; 
  }
}

/* FAQ with Neon Effect */
.faq-container { 
  display: grid; 
  gap: 20px; 
  max-width: 800px; 
  margin: 0 auto; 
}

.faq-item { 
  position: relative; 
  background: rgba(60,60,58,0.4); 
  border: 1px solid rgba(22,199,132,0.2); 
  border-radius: 16px; 
  overflow: hidden; 
  transition: all 0.3s ease; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.3); 
}

.faq-item:hover { 
  border-color: rgba(22,199,132,0.4); 
  box-shadow: 0 8px 32px rgba(22,199,132,0.15), 0 0 0 1px rgba(22,199,132,0.1); 
  transform: translateY(-2px); 
}

.faq-question { 
  width: 100%; 
  display: flex; 
  align-items: center; 
  gap: 20px; 
  padding: 24px 28px; 
  background: transparent; 
  border: none; 
  color: var(--title); 
  cursor: pointer; 
  text-align: left; 
  transition: all 0.3s ease; 
  position: relative; 
  overflow: hidden; 
}

.faq-question::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: -100%; 
  width: 100%; 
  height: 100%; 
  background: linear-gradient(90deg, transparent, rgba(22,199,132,0.1), transparent); 
  transition: left 0.5s ease; 
}

.faq-question:hover::before { 
  left: 100%; 
}

.faq-icon { 
  font-size: 24px; 
  flex-shrink: 0; 
  color: var(--green);
  filter: drop-shadow(0 0 8px rgba(22,199,132,0.5)); 
  animation: glow 2s ease-in-out infinite alternate; 
}

@keyframes glow {
  from { filter: drop-shadow(0 0 8px rgba(22,199,132,0.5)); }
  to { filter: drop-shadow(0 0 16px rgba(22,199,132,0.8)); }
}

.faq-question h3 { 
  margin: 0; 
  font-size: 20px; 
  font-weight: 600; 
  flex: 1; 
  color: var(--title); 
}

.faq-arrow { 
  font-size: 20px; 
  color: var(--green); 
  transition: all 0.3s ease; 
  text-shadow: 0 0 10px rgba(22,199,132,0.5); 
}

.faq-item.active .faq-arrow { 
  transform: rotate(45deg); 
  color: var(--red); 
  text-shadow: 0 0 10px rgba(234,57,67,0.5); 
}

.faq-answer { 
  max-height: 0; 
  overflow: hidden; 
  transition: all 0.4s ease; 
  background: rgba(22,22,21,0.8); 
  border-top: 1px solid rgba(22,199,132,0.1); 
}

.faq-item.active .faq-answer { 
  max-height: 300px; 
  padding: 24px 28px; 
}

.faq-answer p { 
  margin: 0; 
  color: var(--muted); 
  line-height: 1.7; 
  font-size: 16px; 
}

/* Neon glow effect for active items */
.faq-item.active { 
  border-color: rgba(22,199,132,0.6); 
  box-shadow: 
    0 0 20px rgba(22,199,132,0.3), 
    0 0 40px rgba(22,199,132,0.1), 
    inset 0 1px 0 rgba(255,255,255,0.1); 
}

.faq-item.active .faq-question { 
  background: linear-gradient(135deg, rgba(22,199,132,0.05), rgba(22,199,132,0.02)); 
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-question { 
    padding: 20px 22px; 
    gap: 16px; 
  }
  
  .faq-question h3 { 
    font-size: 18px; 
  }
  
  .faq-icon { 
    font-size: 22px; 
  }
  
  .faq-arrow { 
    font-size: 18px; 
  }
  
  .faq-item.active .faq-answer { 
    padding: 20px 22px; 
  }
}

/* Contact */
.contact { display: grid; gap: 12px; }
.contact .row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px) { .contact .row.two { grid-template-columns: 1fr; } }
.contact label { display: grid; gap: 6px; }
.contact input, .contact textarea { width: 100%; background: rgba(255,255,255,0.05); color: var(--title); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 10px 12px; outline: none; }
.contact input::placeholder, .contact textarea::placeholder { color: rgba(237,237,232,0.35); }
.contact input:focus, .contact textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,199,132,0.15); }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; background: #121211; }
.foot { display: flex; align-items: center; justify-content: space-between; color: var(--muted); }
.foot .links { display: flex; gap: 14px; }
.foot a { color: var(--muted); text-decoration: none; }
.foot a:hover { color: var(--title); }

/* Tomorrow font helper classes */
.tomorrow-thin { font-family: "Tomorrow", sans-serif; font-weight: 100; font-style: normal; }
.tomorrow-extralight { font-family: "Tomorrow", sans-serif; font-weight: 200; font-style: normal; }
.tomorrow-light { font-family: "Tomorrow", sans-serif; font-weight: 300; font-style: normal; }
.tomorrow-regular { font-family: "Tomorrow", sans-serif; font-weight: 400; font-style: normal; }
.tomorrow-medium { font-family: "Tomorrow", sans-serif; font-weight: 500; font-style: normal; }
.tomorrow-semibold { font-family: "Tomorrow", sans-serif; font-weight: 600; font-style: normal; }
.tomorrow-bold { font-family: "Tomorrow", sans-serif; font-weight: 700; font-style: normal; }
.tomorrow-extrabold { font-family: "Tomorrow", sans-serif; font-weight: 800; font-style: normal; }
.tomorrow-black { font-family: "Tomorrow", sans-serif; font-weight: 900; font-style: normal; }
.tomorrow-thin-italic { font-family: "Tomorrow", sans-serif; font-weight: 100; font-style: italic; }
.tomorrow-extralight-italic { font-family: "Tomorrow", sans-serif; font-weight: 200; font-style: italic; }
.tomorrow-light-italic { font-family: "Tomorrow", sans-serif; font-weight: 300; font-style: italic; }
.tomorrow-regular-italic { font-family: "Tomorrow", sans-serif; font-weight: 400; font-style: italic; }
.tomorrow-medium-italic { font-family: "Tomorrow", sans-serif; font-weight: 500; font-style: italic; }
.tomorrow-semibold-italic { font-family: "Tomorrow", sans-serif; font-weight: 600; font-style: italic; }
.tomorrow-bold-italic { font-family: "Tomorrow", sans-serif; font-weight: 700; font-style: italic; }
.tomorrow-extrabold-italic { font-family: "Tomorrow", sans-serif; font-weight: 800; font-style: italic; }
.tomorrow-black-italic { font-family: "Tomorrow", sans-serif; font-weight: 900; font-style: italic; }

