/*
Theme Name: Crybotix
Theme URI: https://crybotix.example
Author: Crybotix
Author URI: https://crybotix.example
Description: Styled theme for Crybotix with branding colors and layout matching the mockup.
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: crybotix
*/

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
}

:root {
  --primary: #2d89ef;
  --secondary: #00c897;
  --dark: #0d0d0d;
  --light: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.cb-header {
  background: var(--dark);
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cb-header .main-nav a {
  color: #fff;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 500;
}

.cb-header .lang-switch a {
  color: #bbb;
  margin-left: 0.5rem;
  text-decoration: none;
}

.cb-header .lang-switch a.active {
  color: #fff;
  font-weight: 600;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 5rem 2rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero .btn-primary {
  background: #fff;
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
}

.hero .bonus {
  display: block;
  margin-top: 0.75rem;
  font-weight: 500;
}

/* Benefits */
.benefits {
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

.benefits li {
  margin-bottom: 0.5rem;
}

/* Sections */
section {
  padding: 4rem 2rem;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.step {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Exchanges */
.exchanges .logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.pricing {
  text-align: center;
  font-weight: 600;
}

/* Trust */
.trust ul {
  list-style: disc inside;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
.cb-footer {
  background: var(--dark);
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
}

.cb-footer a {
  color: var(--primary);
  text-decoration: none;
}

.cb-footer .disclaimer {
  font-size: 0.85rem;
  margin-top: 1rem;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero .btn-primary {
    display: inline-block;
    margin-top: 1rem;
  }
}
