/* Goodiz - Landing Page Premium Stylesheet */
/* Inspired by avatarz.com modern design language */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-color: #0c101b; /* Deep ardoise/slate dark matching avatarz.com */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Color palette matching Avatarz brand identity */
  --accent-purple: #c6ff00; /* Vert Lime officiel Avatarz */
  --accent-indigo: #00e5ff; /* Cyan vibrant */
  --accent-blue: #00f0ff;   /* Cyan électrique */
  --accent-emerald: #10b981;
  --accent-glow: rgba(198, 255, 0, 0.15);
  --accent-glow-cyan: rgba(0, 240, 255, 0.15);
  
  --glass-bg: rgba(13, 18, 33, 0.55);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-border-hover: rgba(198, 255, 0, 0.25);
  
  --font-title: 'Outfit', sans-serif;
  --font-main: 'Plus Jakarta Sans', sans-serif;
  
  scroll-behavior: smooth;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Ambient glow backgrounds */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.25;
}

.glow-top-left {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
  top: -10%;
  left: -10%;
}

.glow-bottom-right {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
  bottom: -15%;
  right: -10%;
}

.glow-center-indigo {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--accent-indigo) 0%, transparent 70%);
  top: 50%;
  left: 35%;
  opacity: 0.15;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(12, 16, 27, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0c101b; /* Dark text inside logo badge to contrast with lime green */
  font-size: 1.25rem;
  box-shadow: 0 0 20px rgba(198, 255, 0, 0.3);
  font-family: var(--font-title);
}

.logo-text {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-title);
}

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

.brand-separator {
  width: 1px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.12);
}

.avatarz-header-link {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
  padding: 4px 0;
}

.avatarz-header-link:hover {
  opacity: 0.8;
}

.avatarz-header-logo {
  height: 13px;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.btn-demo-header {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 8px 16px !important;
  border-radius: 8px;
  color: var(--text-primary) !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
}

.btn-demo-header:hover {
  background: var(--text-primary);
  color: var(--bg-color) !important;
  border-color: var(--text-primary);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  padding: 150px 24px 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-badge {
  background: rgba(198, 255, 0, 0.04);
  border: 1px solid rgba(198, 255, 0, 0.15);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-purple);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
  letter-spacing: 1px;
}

.avatarz-badge-logo {
  height: 10px;
  opacity: 0.95;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  max-width: 950px;
  margin-bottom: 24px;
}

.hero-title span.gradient-text {
  background: linear-gradient(135deg, #ffffff 20%, var(--accent-purple) 65%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  color: #0c101b; /* Dark charcoal text for accessibility contrast on bright lime background */
  box-shadow: 0 8px 30px rgba(198, 255, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(198, 255, 0, 0.45);
}

.arrow-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.btn-primary:hover .arrow-icon {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(198, 255, 0, 0.25);
  transform: translateY(-1px);
}

/* Client References */
.client-references {
  margin-top: 20px;
  margin-bottom: 50px;
}

.ref-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ref-logos {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.ref-logo {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.ref-logo:hover {
  opacity: 1;
  color: var(--text-secondary);
}

/* Floating App Mockup (Interactive Admin UI) */
.hero-mockup-container {
  width: 100%;
  max-width: 1000px;
  perspective: 1200px;
  margin-top: 10px;
}

.hero-mockup {
  width: 100%;
  background: linear-gradient(180deg, rgba(13, 16, 33, 0.85), rgba(7, 8, 17, 0.95));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 100px rgba(198, 255, 0, 0.05);
  transform: rotateX(5deg) translateY(0);
  transition: transform 0.4s ease;
  overflow: hidden;
  text-align: left;
}

.hero-mockup:hover {
  transform: rotateX(1deg) translateY(-8px);
  border-color: var(--glass-border-hover);
}

.mock-window-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
}

.mock-dot.red { background-color: #f87171; }
.mock-dot.yellow { background-color: #fbbf24; }
.mock-dot.green { background-color: #34d399; }

.mock-window-title {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: monospace;
}

.mock-avatarz-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-purple);
  letter-spacing: 1px;
}

.mock-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .mock-layout {
    grid-template-columns: 1fr;
  }
}

.mock-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  padding-right: 15px;
}

.mock-sidebar-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-weight: 600;
}

.mock-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mock-nav-item:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.mock-nav-item.active {
  background: rgba(198, 255, 0, 0.08);
  color: var(--text-primary);
  border-left: 2px solid var(--accent-purple);
}

/* Mockup contents panels */
.mock-content {
  min-height: 280px;
  position: relative;
}

.mock-panel {
  display: none;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.mock-panel.active {
  display: flex;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.mock-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.mock-card.full-width {
  grid-column: 1 / -1;
}

.mock-card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.mock-card-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 4px;
}

.mock-card-trend {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
  margin-top: 8px;
}

.mock-card-trend.positive {
  color: var(--accent-emerald);
}

.mock-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mock-card-title {
  font-size: 0.85rem;
  font-weight: 600;
}

.mock-live-indicator {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-blue);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

.mock-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mock-list-item:last-child {
  border-bottom: none;
}

.item-name {
  font-weight: 500;
}

.item-email {
  color: var(--text-muted);
}

.item-prize {
  color: var(--text-secondary);
}

.mock-pill {
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-emerald);
}

.mock-pill.yellow {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
}

.mock-btn-small {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
}

/* Mock Table styles */
.mock-table-wrapper {
  overflow-x: auto;
}

.mock-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.mock-table th {
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mock-table td {
  font-size: 0.75rem;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
}

.mock-table tr:last-child td {
  border-bottom: none;
}

.badge {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
}

.badge-yes {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.badge-no {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

/* Progress bar */
.mock-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  margin-top: 10px;
  margin-bottom: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
  border-radius: 2px;
}

/* Security option card list */
.security-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.15);
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.sec-label {
  font-size: 0.75rem;
  font-weight: 500;
}

.sec-status {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.sec-status.enabled {
  color: var(--accent-emerald);
}

/* Features Section */
.features-section {
  padding: 100px 24px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  color: var(--accent-purple);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(198, 255, 0, 0.05);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  margin-bottom: 24px;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon-wrapper {
  background: rgba(198, 255, 0, 0.08);
  border-color: rgba(198, 255, 0, 0.2);
  color: var(--accent-purple);
}

.feature-card-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
  padding: 80px 24px;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: border-color 0.3s;
}

.step-card:hover {
  border-color: var(--glass-border);
}

.step-num {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  opacity: 0.8;
}

.step-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Technology & Architecture Section */
.architecture-section {
  padding: 100px 24px;
}

.architecture-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .architecture-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.arch-content {
  text-align: left;
}

.arch-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.arch-list {
  list-style: none;
}

.arch-list li {
  margin-bottom: 18px;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.arch-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-emerald);
  font-weight: 800;
}

.arch-list li strong {
  color: var(--text-primary);
}

.arch-visual {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  justify-content: center;
}

.tech-stack-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.tech-node {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: monospace;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.tech-node.header-node {
  border-color: var(--accent-purple);
  box-shadow: 0 0 15px rgba(198, 255, 0, 0.2);
}

.tech-node.db-node {
  border-color: var(--accent-emerald);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.tech-node.hub-node {
  border-color: var(--accent-purple);
  box-shadow: 0 0 15px rgba(198, 255, 0, 0.25);
  background: rgba(198, 255, 0, 0.03);
}

.tech-node.middle-node {
  border-color: var(--accent-blue);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.tech-connector {
  width: 2px;
  height: 24px;
  background: rgba(255,255,255,0.1);
}

.tech-layer {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

/* Call to Action Section */
.cta-section {
  padding: 80px 24px;
}

.cta-box {
  max-width: 950px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(16, 18, 35, 0.8) 0%, rgba(5, 6, 13, 0.95) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.cta-box::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(198, 255, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer Section (Avatarz style) */
footer {
  background: #080b13;
  border-top: 1px solid var(--glass-border);
  padding: 80px 24px 40px 24px;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 800px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  max-width: 320px;
  line-height: 1.5;
}

.avatarz-brand-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.brand-by {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  font-weight: 600;
}

.avatarz-footer-logo {
  height: 16px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.avatarz-footer-logo:hover {
  opacity: 1;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-column h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.footer-links-column a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-links-column a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

/* General Icons Utilities */
.svg-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Architecture Tabs Custom Styles */
.arch-visual {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.arch-tabs-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.arch-tabs {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  justify-content: center;
}

.arch-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.arch-tab:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
}

.arch-tab.active {
  background: rgba(198, 255, 0, 0.08);
  color: var(--accent-lime);
  border: 1px solid rgba(198, 255, 0, 0.2);
}

.arch-panel {
  display: none;
  width: 100%;
}

.arch-panel.active {
  display: block;
}
