:root {
  /* Nature-tech calm palette */
  --earth-green: #4A7C59;
  --earth-green-hover: #3b6347;
  --sand: #F5E6D3;
  --sky-blue: #6BA3BE;
  --charcoal: #2D2D2D;
  --parchment: #FAF6F0;
  --gold-accent: #C9A96E;
  --warm-beige: #E8DCC8;
  --white: #FFFFFF;

  /* UI Grays */
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-800: #1F2937;

  /* Shadows & Borders */
  --shadow-sm: 0 1px 2px 0 rgba(74, 124, 89, 0.05);
  /* Tinted shadows */
  --shadow-md: 0 4px 6px -1px rgba(74, 124, 89, 0.1), 0 2px 4px -1px rgba(74, 124, 89, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(74, 124, 89, 0.1), 0 4px 6px -2px rgba(74, 124, 89, 0.05);

  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Layout */
  --sidebar-width: 250px;
  --topbar-height: 70px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--parchment);
  color: var(--charcoal);
  line-height: 1.5;
  overflow: hidden;
  /* Prevent body scroll, scroll main instead */
}

/* App Shell Layout */
#app-shell {
  display: flex;
  height: 100vh;
  width: 100vw;
}

/* Sidebar */
.sidebar {
  width: var(--sidebar-width);
  background-color: var(--white);
  border-right: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  transition: width 0.3s ease, transform 0.3s ease;
  z-index: 50;
  overflow: hidden;
  white-space: nowrap;
}

.sidebar.collapsed {
  --sidebar-width: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px 32px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  transition: padding 0.3s ease, justify-content 0.3s ease;
}

.sidebar.collapsed .brand-logo {
  padding: 0 0 32px;
  justify-content: center;
}

.sidebar.collapsed .brand-logo span {
  display: none;
}

.brand-logo img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.nav-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--gray-500);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.sidebar.collapsed .nav-item {
  justify-content: center;
  padding: 12px;
}

.sidebar.collapsed .nav-item span {
  display: none;
}

.nav-item:hover {
  background-color: var(--gray-100);
  color: var(--charcoal);
}

.nav-item.active,
.nav-item.active-parent {
  background-color: var(--gray-200);
  color: #1A1A1A;
  font-weight: 700;
}

.sidebar-bottom {
  padding: 24px 16px 0;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  transition: justify-content 0.3s ease;
}

.sidebar.collapsed .user-profile {
  justify-content: center;
  padding: 8px 0;
}

.sidebar.collapsed .user-info {
  display: none;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--sky-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.user-role {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Main Content Area */
.main-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Topbar */
.topbar {
  height: var(--topbar-height);
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 40;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  width: 280px;
}

.search-bar input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  margin-left: 8px;
  font-family: inherit;
  color: var(--charcoal);
}

.btn-icon {
  background: transparent;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-full);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon:hover {
  background-color: var(--gray-100);
  color: var(--earth-green);
}

.lang-toggle {
  background: var(--sand);
  border: 1px solid var(--warm-beige);
  border-radius: var(--radius-lg);
  display: flex;
  overflow: hidden;
}

.lang-btn {
  padding: 6px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--white);
  color: var(--earth-green);
  box-shadow: var(--shadow-sm);
}

/* Buttons */
.btn {
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background-color: var(--earth-green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--earth-green-hover);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--sand);
  color: var(--charcoal);
}

.btn-secondary:hover {
  background-color: var(--warm-beige);
}

/* Content Area */
.content-area {
  flex: 1;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}

.page {
  display: none;
  animation: fadeIn 0.3s ease;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mascot System */
.mascot-container {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 96px;
  height: 96px;
  z-index: 100;
  pointer-events: none;
  /* Let clicks pass through except on the image */
}

.mascot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: auto;
  cursor: pointer;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  animation: float 8s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s;
}

.mascot-img:hover {
  transform: scale(1.15) translateY(-5px);
  filter: drop-shadow(0 15px 25px rgba(107, 163, 190, 0.4));
  animation-play-state: paused;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mascot-img {
    animation: none;
    transition: none;
  }
}

/* Typography styles for content */
h1,
h2,
h3 {
  color: var(--charcoal);
  margin-bottom: 16px;
}

.card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  border: 1px solid var(--gray-100);
}

/* Mobile Responsive */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
    box-shadow: var(--shadow-lg);
  }

  .mobile-menu-btn {
    display: block;
  }

  .search-bar {
    display: none;
    /* Hide search on mobile */
  }

  .mascot-container {
    width: 64px;
    height: 64px;
    bottom: 16px;
    right: 16px;
  }
}

/* ====== HOME PAGE STYLES ====== */
.hero-section {
  text-align: center;
  padding: 60px 20px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 24px;
}

.highlight-text {
  color: var(--earth-green);
  font-family: serif;
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.feature-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--warm-beige);
  /* Parchment touch */
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--earth-green);
  opacity: 0.2;
}

.f-icon {
  width: 48px;
  height: 48px;
  background: var(--sand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--earth-green);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.pricing-section {
  margin-bottom: 120px;
}

.price-title-box {
  text-align: center;
  margin-bottom: 40px;
}

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

.price-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  position: relative;
}

.price-card.popular {
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.price-val {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 16px 0;
}

.price-val .period {
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 500;
}

.price-card hr {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 24px 0;
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.w-full {
  width: 100%;
  justify-content: center;
}

/* ====== DASHBOARD STYLES ====== */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

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

.current-month {
  font-size: 1.25rem;
  font-weight: 600;
}

.btn-icon-only {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-icon-only:hover {
  background: var(--gray-100);
}

.dash-filters {
  display: flex;
  gap: 12px;
}

.filter-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
}

.filter-chip.active {
  background: var(--sand);
  color: var(--charcoal);
  border-color: var(--warm-beige);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.gold {
  background: var(--gold-accent);
}

.dot.gray {
  background: var(--gray-400);
}

.dot.purple {
  background: #9b59b6;
}

/* Calendar */
.calendar-card {
  margin-bottom: 32px;
  padding: 0;
  overflow: hidden;
}

.cal-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--sand);
  padding: 12px 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--earth-green);
  border-bottom: 1px solid var(--warm-beige);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: minmax(120px, auto);
}

.cal-day {
  border-right: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 12px;
}

.cal-day:nth-child(7n) {
  border-right: none;
}

.cal-date {
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 8px;
  display: block;
}

.cal-day.empty {
  background: #FAFAFA;
}

.cal-day.empty .cal-date {
  color: var(--gray-300);
}

.cal-event {
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cal-event.gold {
  background: #FDF6E3;
  color: #A67C00;
  border-left: 3px solid var(--gold-accent);
}

.cal-event.purple {
  background: #F9F0FF;
  color: #6B21A8;
  border-left: 3px solid #9b59b6;
}

.cal-event.gray {
  background: var(--gray-100);
  color: var(--gray-800);
  border-left: 3px solid var(--gray-400);
}

/* Strategy Grid */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.s-card {
  position: relative;
}

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

.card-header h3 {
  margin: 0;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge {
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
}

.card-sticker {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: transform 0.2s;
  object-fit: cover;
  background-color: var(--white);
}

.s-card:hover .card-sticker {
  transform: rotate(10deg) scale(1.1);
}

/* USP */
.usp-content {
  text-align: center;
  padding: 20px 0;
}

.usp-headline {
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.usp-desc {
  color: var(--earth-green);
  font-size: 1rem;
}

/* SWOT */
.swot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.swot-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--gray-100);
}

.swot-box h4 {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.swot-s {
  background: #F0FDF4;
  border-color: #BBF7D0;
}

.swot-s h4 {
  color: #166534;
}

.swot-w {
  background: #FEF2F2;
  border-color: #FECACA;
}

.swot-w h4 {
  color: #991B1B;
}

.swot-o {
  background: #F0F9FF;
  border-color: #BAE6FD;
}

.swot-o h4 {
  color: #075985;
}

.swot-t {
  background: #FFFBEB;
  border-color: #FDE68A;
}

.swot-t h4 {
  color: #92400E;
}

.swot-box ul {
  list-style: none;
  padding: 0;
}

.swot-box li {
  font-size: 0.8rem;
  color: var(--gray-800);
  margin-bottom: 8px;
  padding-left: 12px;
  position: relative;
}

.swot-box li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: 800;
}

/* Competitors */
.comp-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-item {
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
}

.comp-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.comp-weak {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ====== CONTENT CENTRAL STYLES ====== */
.content-central-card {
  min-height: 80vh;
}

.cc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 24px;
}

.mode-toggle {
  display: flex;
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 4px;
}

.mode-btn {
  padding: 8px 16px;
  border: none;
  background: transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-500);
  transition: all 0.2s;
}

.mode-btn.active {
  background: var(--white);
  color: var(--earth-green);
  box-shadow: var(--shadow-sm);
}

.status-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22C55E;
}

.status-indicator.processing {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Stepper */
.stepper-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}

.step.active .step-circle {
  background: var(--earth-green);
  color: var(--white);
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  margin: 0 16px;
  position: relative;
  top: -10px;
}

/* Approval Cards */
.approval-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.approval-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ac-header {
  background: var(--sand);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-200);
}

.ac-body {
  padding: 24px 20px;
}

.ac-body h5 {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ac-body h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.ac-body p {
  font-size: 0.9rem;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.ac-actions {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
}

.flex-1 {
  flex: 1;
}

.gray {
  background: var(--gray-200);
  color: var(--gray-800);
}

.green {
  background: #DCFCE7;
  color: #166534;
}

.orange {
  background: #FFEDD5;
  color: #9A3412;
}

/* DIY Mode */
.diy-hero {
  text-align: center;
  margin-bottom: 48px;
}

.diy-selectors-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
}

.diy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 800px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--earth-green);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  padding: 10px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9rem;
  background-color: var(--white);
  color: var(--charcoal);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.form-select::-ms-expand {
  display: none;
}

.no-native-arrow {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: none !important;
}

.no-native-arrow::-ms-expand {
  display: none !important;
}

.form-select:focus {
  border-color: var(--earth-green);
}

.btn-large {
  padding: 16px 48px;
  font-size: 1.1rem;
  border-radius: var(--radius-full);
  letter-spacing: 2px;
}

.preview-panel {
  border: 1px solid var(--warm-beige);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}

.pp-header {
  background: var(--sand);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--earth-green);
  border-bottom: 1px solid var(--warm-beige);
}

.pp-actions {
  display: flex;
  gap: 8px;
}

.pp-body {
  padding: 32px;
  min-height: 200px;
}

.skeleton-line {
  height: 12px;
  background: var(--gray-200);
  border-radius: 6px;
  margin-bottom: 12px;
  animation: skel 1.5s infinite ease-in-out;
}

@keyframes skel {
  0% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
  }
}

/* ====== BRAND ASSETS STYLES ====== */
.brand-header {
  margin-bottom: 32px;
}

.brand-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.ba-card {
  margin-bottom: 24px;
}

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

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

.icon-box {
  width: 32px;
  height: 32px;
  background: var(--sand);
  color: var(--earth-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mb-16 {
  margin-bottom: 16px;
}

.mt-12 {
  margin-top: 12px;
}

.status-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
}

.status-pill.success {
  background: #DCFCE7;
  color: #166534;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.75rem;
}

.code-block {
  background: var(--charcoal);
  color: #A3E635;
  /* Terminal green */
  padding: 16px;
  border-radius: var(--radius-md);
  font-family: monospace;
  font-size: 0.8rem;
  overflow-x: auto;
}

.code-block code {
  white-space: pre-wrap;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-xs {
  font-size: 0.75rem;
}

.sliders-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tech-slider {
  width: 100%;
  margin-top: 8px;
  accent-color: var(--earth-green);
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.tech-table th {
  text-align: left;
  padding: 8px 12px;
  background: var(--sand);
  color: var(--earth-green);
  border-bottom: 2px solid var(--warm-beige);
}

.tech-table td {
  padding: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.text-red {
  color: #DC2626;
  font-weight: 500;
}

.text-green {
  color: #166534;
  font-weight: 500;
}

@media (max-width: 1024px) {

  .brand-sections,
  .swot-grid {
    grid-template-columns: 1fr;
  }
}

/* Utilities */
.text-center {
  text-align: center;
}

.text-gray {
  color: var(--gray-500);
}

.text-sm {
  font-size: 0.875rem;
}