/* ===== WESSLO Trade - Website v2 ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --orange: #f47216;
  --orange-light: #ff9a3e;
  --orange-dim: rgba(244, 114, 22, 0.12);
  --orange-glow: rgba(244, 114, 22, 0.35);
  --bg-primary: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --bg-elevated: #1e1e1e;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text-primary: #e8e8e8;
  --text-secondary: #888888;
  --text-muted: #505050;
  --green: #b2ff1a;
  --green-dim: rgba(178, 255, 26, 0.1);
  --red: #ff4757;
  --red-dim: rgba(255, 71, 87, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Gradient blob'lar */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 600px 600px at 15% 10%, rgba(244, 114, 22, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 85% 30%, rgba(180, 60, 20, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 700px 700px at 50% 60%, rgba(244, 114, 22, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(180, 60, 20, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 90% 85%, rgba(244, 114, 22, 0.06) 0%, transparent 70%);
}

/* Diagonal çizgiler */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: -1;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 80px,
    rgba(255, 255, 255, 0.01) 80px,
    rgba(255, 255, 255, 0.01) 81px
  );
}

#particles-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
}

a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange-light); }

/* ===== GLASS =====  */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== FADE IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s;
}
.nav-hidden { transform: translateY(-100%); }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 3px;
}
.navbar-logo { height: 32px; width: 32px; border-radius: 6px; }

.navbar-links { display: flex; align-items: center; gap: 28px; }
.navbar-links a { color: var(--text-secondary); font-size: 14px; font-weight: 500; }
.navbar-links a:hover { color: var(--text-primary); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 24px; border-radius: 8px; font-size: 14px;
  font-weight: 600; border: none; cursor: pointer;
  transition: all 0.2s; font-family: inherit; text-decoration: none;
}
.btn-primary {
  background: var(--orange); color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 0 20px var(--orange-glow);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  background: var(--orange-light); color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 0 30px var(--orange-glow);
}
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-lg { padding: 14px 36px; font-size: 16px; border-radius: 10px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 1; max-width: 550px; }
.hero-visual { position: relative; z-index: 1; }
.hero-screenshot {
  max-width: 800px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(244, 114, 22, 0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(244, 114, 22, 0.15), 0 0 60px rgba(244, 114, 22, 0.08);
}
.hero-badge {
  display: inline-block;
  background: var(--orange-dim); color: var(--orange);
  font-size: 13px; font-weight: 600;
  padding: 6px 16px; border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(244, 114, 22, 0.2);
}
.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -1px;
}
.hero h1 .highlight {
  color: var(--orange);
  text-shadow: 0 0 40px var(--orange-glow);
}
.hero p {
  font-size: 17px; color: var(--text-secondary);
  margin-bottom: 36px; max-width: 480px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== PNL CAROUSEL ===== */
.pnl-section {
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.pnl-section-title {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 40px;
}
.pnl-section-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.pnl-section-title p {
  font-size: 14px;
  color: var(--text-muted);
}
.pnl-track {
  display: flex;
  gap: 16px;
  animation: pnl-scroll 50s linear infinite;
  width: max-content;
}
.pnl-slide {
  flex-shrink: 0;
}
.pnl-slide img {
  height: 280px;
  border-radius: 12px;
  border: 1px solid rgba(178, 255, 26, 0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 20px rgba(178, 255, 26, 0.1), 0 0 40px rgba(178, 255, 26, 0.05);
  transition: transform 0.3s;
}
.pnl-slide img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 30px rgba(178, 255, 26, 0.2), 0 0 60px rgba(178, 255, 26, 0.1);
}
@keyframes pnl-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.pnl-section:hover .pnl-track { animation-play-state: paused; }

@media (max-width: 768px) {
  .pnl-slide img { height: 160px; }
  .pnl-section { padding: 40px 0; }
}

/* ===== SECTION ===== */
.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 36px; font-weight: 800;
  margin-bottom: 12px; letter-spacing: -0.5px;
}
.section-title p {
  color: var(--text-secondary); font-size: 16px;
  max-width: 500px; margin: 0 auto;
}

/* ===== SHOWCASE VITRIN ===== */
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.showcase-tab {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary);
  font-size: 14px; font-weight: 600;
  font-family: inherit;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  border-radius: 10px;
}
.showcase-tab:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
}
.showcase-tab.active {
  color: var(--orange);
  background: rgba(244, 114, 22, 0.1);
  border-color: rgba(244, 114, 22, 0.3);
}
.showcase-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  animation: showcase-fadein 0.4s ease;
}
@keyframes showcase-fadein {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.showcase-info {
  padding-top: 40px;
}
.showcase-info h3 {
  font-size: 32px; font-weight: 900;
  margin-bottom: 20px; color: var(--text-primary);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.showcase-info .showcase-desc {
  font-size: 16px; color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}
.showcase-info .showcase-features {
  list-style: none;
  padding: 0;
}
.showcase-info .showcase-features li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}
.showcase-info .showcase-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.showcase-img {
  display: flex;
  justify-content: flex-end;
}
.showcase-img img {
  max-width: 320px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(244, 114, 22, 0.25);
  box-shadow: 0 10px 28px rgba(0,0,0,0.4), 0 0 30px rgba(244, 114, 22, 0.15), 0 0 60px rgba(244, 114, 22, 0.08);
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.feature-card {
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.feature-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  background: var(--orange-dim);
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

/* ===== COMPARE ===== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-card {
  border-radius: 16px;
  padding: 36px;
}
.compare-card h3 {
  font-size: 20px; font-weight: 800;
  margin-bottom: 20px;
}
.is-card { border-color: rgba(178, 255, 26, 0.2); }
.is-card h3 { color: var(--green); }
.not-card { border-color: rgba(255, 71, 87, 0.2); }
.not-card h3 { color: var(--red); }

.compare-card ul {
  list-style: none; padding: 0;
}
.compare-card li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-left: 8px;
}
.compare-card li:last-child { border-bottom: none; }

/* ===== STEPS ===== */
.steps {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  text-align: center;
  max-width: 300px;
  padding: 32px;
  border-radius: 16px;
}
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange-dim);
  border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800;
  color: var(--orange);
  margin: 0 auto 20px;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 14px; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-question {
  width: 100%;
  background: none; border: none;
  color: var(--text-primary);
  font-size: 15px; font-weight: 600;
  font-family: inherit;
  padding: 18px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--orange);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  padding: 80px 40px;
  margin: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none; opacity: 0.5;
}
.cta-section h2 {
  font-size: 32px; font-weight: 800;
  margin-bottom: 12px; position: relative;
}
.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 32px; font-size: 16px;
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 16px;
}
.footer-logo { height: 28px; width: 28px; border-radius: 6px; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.footer-links a { color: var(--text-secondary); font-size: 13px; }
.footer-copy { color: var(--text-muted); font-size: 12px; margin-bottom: 8px; }
.footer-disclaimer {
  color: var(--text-muted); font-size: 11px;
  max-width: 500px; margin: 0 auto;
  line-height: 1.5;
}

/* ===== AUTH PAGES ===== */
.auth-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  width: 100%; max-width: 420px;
}
.auth-card .logo {
  text-align: center; font-size: 28px; font-weight: 800;
  color: var(--orange); letter-spacing: 3px;
  text-shadow: 0 0 20px var(--orange-glow);
  margin-bottom: 8px;
}
.auth-card .subtitle {
  text-align: center; color: var(--text-secondary);
  font-size: 14px; margin-bottom: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 6px;
}
.form-group input {
  width: 100%; padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 10px; color: var(--text-primary);
  font-size: 14px; font-family: inherit; outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-dim);
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group .hint { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.form-error {
  background: var(--red-dim); color: var(--red);
  font-size: 13px; padding: 10px 14px;
  border-radius: 8px; margin-bottom: 20px; display: none;
}
.form-success {
  background: var(--green-dim); color: var(--green);
  font-size: 13px; padding: 10px 14px;
  border-radius: 8px; margin-bottom: 20px; display: none;
}
.btn-block { width: 100%; padding: 14px; font-size: 15px; }
.auth-footer {
  text-align: center; margin-top: 24px;
  font-size: 13px; color: var(--text-secondary);
}
.auth-footer a { color: var(--orange); font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .navbar-links a:not(.btn) { display: none; }
  .hero {
    flex-direction: column;
    padding: 100px 20px 60px;
    text-align: center;
  }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-screenshot { max-width: 240px; }
  .section { padding: 60px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .showcase-body { grid-template-columns: 1fr; }
  .showcase-info { padding-top: 0; }
  .showcase-img { justify-content: center; }
  .showcase-img img { max-width: 280px; }
  .steps { flex-direction: column; align-items: center; }
  .auth-card { padding: 36px 24px; }
  .cta-section { margin: 20px; padding: 60px 20px; }
  .pnl-slide img { height: 140px; }
}
