/*
Theme Name: Cytrolink Automation
Theme URI: https://cytrolink.com
Description: Modern automation and AI landing page theme with customizable settings
Author: Cytrolink
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cytrolink
*/

:root {
  --bg: #0f1724;
  --card: #0b1220;
  --muted: #94a3b8;
  --accent: #6ee7b7;
  --accent-2: #7c3aed;
  --glass: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 14px;
  --container: 1200px;
  color-scheme: dark;
}

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

html, body {
  height: 100%;
  font-family: Inter, system-ui, 'Segoe UI', Roboto, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(180deg, #071025 0%, #081428 100%);
  color: #e6eef8;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #5dd9a5;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 24px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}

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

.logo-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #061223;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-title {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.logo-subtitle {
  font-size: 12px;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

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

.hero {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.headline {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.sub strong {
  color: var(--accent);
  font-weight: 600;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  padding: 14px 24px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #041022;
  box-shadow: 0 4px 16px rgba(110, 231, 183, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(110, 231, 183, 0.4);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--accent);
}

.btn-ghost:hover {
  background: var(--glass);
  border-color: var(--accent);
}

.card {
  background: var(--card);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(3, 6, 15, 0.6);
  border: 1px solid var(--border);
}

.hero-visual {
  height: 340px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.15), rgba(110, 231, 183, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  border: 1px solid var(--border);
}

.hero-visual-content {
  text-align: center;
  padding: 24px;
}

.hero-visual-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-visual-subtitle {
  font-size: 13px;
  color: var(--muted);
}

.stats {
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-value {
  font-weight: 700;
  color: var(--accent);
}

.quick-wins {
  margin-top: 32px;
  padding: 20px;
  background: var(--glass);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.quick-wins strong {
  color: var(--accent);
  font-size: 15px;
}

.quick-wins-text {
  color: var(--muted);
  font-size: 15px;
  margin-top: 8px;
}

.section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature {
  background: var(--glass);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.feature-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  color: #e6eef8;
}

.feature-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.two-col-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.two-col-content {
  flex: 1;
  min-width: 300px;
}

.two-col-sidebar {
  width: 440px;
  flex-shrink: 0;
}

ul {
  list-style: none;
  margin-top: 20px;
}

li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  color: var(--muted);
}

li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.price-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.price-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.price-tier {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--accent);
}

.price-description {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: var(--glass);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.faq-question {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  color: #e6eef8;
}

.faq-answer {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.divider {
  border: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  margin: 64px 0;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  color: inherit;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.4);
}

footer {
  padding: 40px 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .wrap {
    padding: 32px 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .two-col-section {
    flex-direction: column;
  }

  .two-col-sidebar {
    width: 100%;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  nav {
    flex-wrap: wrap;
    gap: 20px;
  }

  .headline {
    font-size: 36px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .headline {
    font-size: 32px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
