/* ==========================================================================
   STARLIFTY.IN — HIGH-GROWTH CLOUD STARTUP PLATFORM STYLESHEET
   Design: Modern Dark Mode, Neon Pastel Accents, Ultra-Clean Enterprise Layout
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Space+Grotesk:wght@400;500;600;700&family=Fira+Code:wght@400;500;600&display=swap');

:root {
  --bg-dark: #05060A;
  --bg-card: rgba(14, 16, 29, 0.85);
  --bg-card-hover: rgba(22, 26, 46, 0.95);
  --bg-surface: #0B0D17;
  
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-hover: rgba(0, 240, 255, 0.4);
  --glass-glow: rgba(0, 240, 255, 0.15);
  
  --neon-cyan: #00F0FF;
  --neon-magenta: #FF007F;
  --neon-violet: #9D00FF;
  --neon-purple: #B800FF;
  --neon-lime: #00FF88;
  --neon-blue: #0088FF;

  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-code: 'Fira Code', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="sunset"] {
  --bg-dark: #0D0C15;
  --bg-card: rgba(26, 23, 40, 0.88);
  --bg-card-hover: rgba(40, 36, 60, 0.96);
  --neon-cyan: #FF6188;
  --neon-magenta: #FC9867;
  --neon-violet: #AB9DF2;
  --neon-lime: #A9DC76;
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.05) 0%, transparent 65%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
}

/* Ambient Glow */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  animation: orbFloat 22s ease-in-out infinite alternate;
}

.orb-1 {
  top: -15%;
  left: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, var(--neon-cyan), var(--neon-violet));
}

.orb-2 {
  bottom: 5%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--neon-magenta), var(--neon-purple));
  animation-delay: -11s;
}

.orb-3 {
  top: 45%;
  left: 35%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(0,255,136,0.2), transparent);
  animation-delay: -6s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -50px) scale(1.08); }
  100% { transform: translate(-25px, 35px) scale(0.95); }
}

.cursor-follower {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.1), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.08s ease-out;
}

/* TOP ANNOUNCEMENT BAR */
.top-announcement-bar {
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.18), rgba(255, 0, 127, 0.18), rgba(157, 0, 255, 0.18));
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 16px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  z-index: 1001;
}

.top-announcement-bar a {
  color: var(--neon-cyan);
  text-decoration: none;
  font-weight: 700;
  margin-left: 6px;
}

.top-announcement-bar a:hover {
  text-decoration: underline;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.25;
}

.text-gradient {
  background: linear-gradient(135deg, #FFF 10%, var(--neon-cyan) 60%, var(--neon-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(135deg, var(--neon-violet), var(--neon-magenta), #FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.28);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.12);
  margin-bottom: 1.2rem;
}

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

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 255, 136, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section {
  padding: 90px 0;
  position: relative;
}

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-normal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 240, 255, 0.15);
}

/* Buttons */
.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: var(--transition-bounce);
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-cyan), #00A3FF);
  color: #05070C;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.65);
  color: #000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
  transform: translateY(-3px);
}

/* HEADER & NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(5, 6, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-fast);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
  transition: var(--transition-fast);
}

.brand-logo:hover img {
  transform: rotate(6deg) scale(1.08);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFF;
  letter-spacing: -0.03em;
}

.brand-name span {
  color: var(--neon-cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap; /* PREVENTS LINK WORD WRAPPING */
  transition: var(--transition-fast);
  position: relative;
  display: inline-block;
}

.nav-link:hover, .nav-link.active {
  color: #FFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--neon-cyan);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.theme-toggle-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: #FFF;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(15deg);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFF;
  font-size: 1.6rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  padding-top: 60px;
  padding-bottom: 60px;
  display: block;
}

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

.hero-title {
  font-size: 3.4rem;
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero-subtext {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-metrics {
  display: flex;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--neon-cyan);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* TRUST BAR - HORIZONTAL CLEAN ROW */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  padding: 18px 28px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-item span.icon {
  font-size: 1.1rem;
  color: var(--neon-cyan);
}

/* TERMINAL WIDGET */
.terminal-widget {
  background: #090B12;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 240, 255, 0.12);
}

.terminal-header {
  background: #121524;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--glass-border);
}

.terminal-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.terminal-title {
  font-family: var(--font-code);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.terminal-tabs {
  display: flex;
  background: #0C0E1A;
  border-bottom: 1px solid var(--glass-border);
}

.term-tab {
  padding: 10px 18px;
  font-family: var(--font-code);
  font-size: 0.8rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition-fast);
}

.term-tab.active {
  color: var(--neon-cyan);
  border-bottom-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.05);
}

.terminal-body {
  padding: 24px;
  font-family: var(--font-code);
  font-size: 0.88rem;
  line-height: 1.7;
  color: #A9B7C6;
  min-height: 280px;
  max-height: 320px;
  overflow-y: auto;
}

.code-keyword { color: var(--neon-magenta); font-weight: 600; }
.code-func { color: var(--neon-cyan); }
.code-str { color: var(--neon-lime); }
.code-comment { color: var(--text-dim); font-style: italic; }

.terminal-log-line {
  display: flex;
  gap: 12px;
  margin-bottom: 6px;
}

.terminal-time { color: var(--text-dim); }

/* SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 2.7rem;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* STARTUP ARCHITECTURE STUDIO */
.stack-studio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.stack-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.stack-card.active {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.25);
  background: var(--bg-card-hover);
}

.stack-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.stack-title {
  font-size: 1.4rem;
  color: #FFF;
  margin-bottom: 10px;
}

.stack-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.stack-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.stack-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--neon-cyan);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ADOPTION PILLARS */
.pillars-tab-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pillar-tab-btn {
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.pillar-tab-btn:hover, .pillar-tab-btn.active {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--neon-cyan);
  color: #FFF;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.pillar-tab-content {
  display: none;
}

.pillar-tab-content.active {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  animation: fadeIn 0.4s ease-in-out;
}

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

.pillar-info h3 {
  font-size: 1.9rem;
  margin-bottom: 16px;
  color: #FFF;
}

.pillar-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-main);
}

.feature-checklist li span {
  color: var(--neon-lime);
  font-size: 1.2rem;
}

/* COMPARISON TABLE */
.comparison-section {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.comparison-table th, .comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #FFF;
}

.comparison-table th.highlight-col {
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-cyan);
  border-bottom: 2px solid var(--neon-cyan);
}

.comparison-table td.highlight-col {
  background: rgba(0, 240, 255, 0.04);
  font-weight: 700;
  color: #FFF;
}

/* MODALS */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 6, 10, 0.9);
  backdrop-filter: blur(25px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.demo-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.demo-modal-content {
  width: 100%;
  max-width: 540px;
  background: #0E101A;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.25);
  padding: 36px;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFF;
  font-size: 1.6rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

/* PRICING & CARDS */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--neon-cyan);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

/* CALCULATOR BOX */
.calculator-box {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.calc-input-group {
  margin-bottom: 28px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #1E2338;
  outline: none;
  -webkit-appearance: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan);
  cursor: pointer;
  transition: transform 0.1s ease;
}

.calc-results {
  background: rgba(0, 240, 255, 0.04);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.result-val-big {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--neon-lime);
  line-height: 1;
  margin: 12px 0 24px;
}

/* STORIES & TESTIMONIALS */
.stories-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.story-ring {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta), var(--neon-purple));
  transition: var(--transition-bounce);
}

.story-item:hover .story-ring {
  transform: scale(1.1) rotate(15deg);
}

.story-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-dark);
}

.story-username {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  padding: 28px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon-cyan);
}

.user-meta h5 {
  font-size: 1rem;
  color: #FFF;
}

.user-handle {
  font-size: 0.85rem;
  color: var(--neon-magenta);
  font-weight: 600;
}

/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.blog-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.blog-img-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-box img {
  transform: scale(1.06);
}

.blog-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(6, 7, 11, 0.85);
  backdrop-filter: blur(10px);
  color: var(--neon-cyan);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #FFF;
}

.blog-reactions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.reaction-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.reaction-btn:hover {
  background: rgba(0, 240, 255, 0.15);
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
}

/* FOOTER */
.footer {
  background: #040508;
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neon-magenta);
  margin-top: 12px;
}

.footer-col h5 {
  color: #FFF;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--neon-cyan);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  font-size: 0.88rem;
}

/* TOAST NOTIFICATION */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
  backdrop-filter: blur(16px);
  color: #FFF;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* RESPONSIVE DESIGN BREAKPOINTS */
@media (max-width: 1100px) {
  .nav-links {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.85rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons, .hero-metrics {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .nav-links, .nav-actions .btn-primary, .nav-actions .btn-secondary {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .pillar-tab-content.active {
    grid-template-columns: 1fr;
  }
  .calculator-box {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
