/* Another — Custom CSS
   Accent: #f59e0b | Brand: Another | joinanother.org
*/

/* =========================================
   CSS Variables
   ========================================= */
:root {
  --accent:       #f59e0b;
  --accent-dark:  #d97706;
  --accent-light: #fcd34d;
  --bg:           #0f172a;
  --surface:      #1e293b;
  --surface2:     #334155;
  --text:         #e2e8f0;
  --text-muted:   #94a3b8;
  --border:       #475569;
  --radius:       12px;
  --transition:   0.3s ease;
}

/* =========================================
   Base
   ========================================= */
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
}

a {
  color: var(--accent);
  transition: color var(--transition);
}
a:hover {
  color: var(--accent-light);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #f1f5f9;
  font-weight: 700;
}

/* =========================================
   Sections
   ========================================= */
section {
  padding: 80px 0;
}

section.alt-bg {
  background-color: var(--surface);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #f1f5f9;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* =========================================
   Page Hero
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
  padding: 120px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* =========================================
   Site Logo
   ========================================= */
.site-logo {
  height: 36px;
  width: auto;
  vertical-align: middle;
  margin-right: 8px;
}

/* =========================================
   Buttons
   ========================================= */
.btn-accent {
  background: var(--accent);
  color: #0f172a;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: #0f172a;
  transform: translateY(-2px);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 12px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: all var(--transition);
  display: inline-block;
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: #0f172a;
}

/* =========================================
   Cards / Feature Boxes
   ========================================= */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
  height: 100%;
  margin-bottom: 24px;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.feature-card .icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(245, 158, 11, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-card .icon-wrap i {
  font-size: 28px;
  color: var(--accent);
}
.feature-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f1f5f9;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* =========================================
   Stats Bar
   ========================================= */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stat-item {
  text-align: center;
  padding: 12px;
}
.stat-item .stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   Pricing
   ========================================= */
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  margin-bottom: 28px;
  transition: transform var(--transition), border-color var(--transition);
  height: 100%;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(245,158,11,0.08) 0%, var(--surface) 100%);
}
.pricing-card:hover {
  transform: translateY(-6px);
}
.pricing-card .plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-card .plan-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card .plan-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}
.pricing-card ul li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card ul li:last-child {
  border-bottom: none;
}
.pricing-card ul li i {
  color: var(--accent);
  margin-right: 8px;
}
.pricing-badge {
  background: var(--accent);
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 16px;
}

/* =========================================
   Team
   ========================================= */
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  margin-bottom: 28px;
  transition: transform var(--transition), border-color var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--surface2);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--accent);
  overflow: hidden;
}
.team-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 4px;
}
.team-card .team-role {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.team-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =========================================
   Contact Form
   ========================================= */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}
.contact-form-wrap .form-control {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
}
.contact-form-wrap .form-control:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
  background: var(--surface2);
  color: var(--text);
}
.contact-form-wrap label {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item .ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,158,11,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .ci-icon i {
  color: var(--accent);
  font-size: 18px;
}
.contact-info-item h5 {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-info-item p {
  color: var(--text);
  font-size: 0.95rem;
  margin: 0;
}

/* =========================================
   Blog Grid
   ========================================= */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.blog-grid > [class*="col-"] {
  display: flex;
}

.blog-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--surface);
  transition: transform var(--transition), border-color var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.blog-card-img {
  height: 200px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-img i {
  font-size: 48px;
  color: var(--border);
}
.blog-card-body {
  flex: 1;
  padding: 24px;
}
.blog-card-body .blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.blog-card-body .blog-meta span {
  margin-right: 12px;
}
.blog-card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.blog-card-body a.read-more {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.blog-card-body a.read-more:hover {
  color: var(--accent-light);
}

/* Article page */
.article-body {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.85;
}
.article-body h2, .article-body h3 {
  color: #f1f5f9;
  margin-top: 40px;
  margin-bottom: 16px;
}
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body li { margin-bottom: 8px; color: var(--text-muted); }
.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
  color: var(--text-muted);
  font-style: italic;
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.7;
}
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: var(--accent);
}

/* =========================================
   Cookie Banner
   ========================================= */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 720px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
#cookie-banner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
#cookie-banner p a {
  color: var(--accent);
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
#cookie-accept {
  background: var(--accent);
  color: #0f172a;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition);
}
#cookie-accept:hover {
  background: var(--accent-dark);
}
#cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}
#cookie-decline:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* =========================================
   Process Steps
   ========================================= */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  padding: 28px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.process-step:hover {
  border-color: var(--accent);
}
.step-number {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
}
.process-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
}
.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* =========================================
   About / Story
   ========================================= */
.story-section {
  max-width: 840px;
  margin: 0 auto;
}
.story-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 24px;
}
.investor-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-top: 16px;
}
.investor-badge .badge-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,158,11,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.investor-badge .badge-icon i {
  color: var(--accent);
  font-size: 22px;
}
.investor-badge .badge-text strong {
  display: block;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
}
.investor-badge .badge-text span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 768px) {
  .page-hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  section { padding: 60px 0; }
  .contact-form-wrap { padding: 28px 20px; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-buttons { width: 100%; }
  #cookie-accept, #cookie-decline { flex: 1; text-align: center; }
}

/* Nav menu-trigger inline fix */
.navicon { float: none !important; margin-left: auto !important; }
.menu-trigger {
  display: flex !important;
  align-items: center;
  gap: 6px;
  width: auto !important;
  height: auto !important;
}
.menu-trigger .icon {
  font-size: 20px;
  line-height: 1;
}
.menu-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Nav row flex fix */
.navbar .row {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
}
.brand { float: none !important; }
