/* ==========================================================================
   Ploxto AI Startup Acquisition Listing — Stylesheet
   Design System: Luxury Black & White Monochrome with Financial P&L Table
   ========================================================================== */

:root {
  --bg-dark: #000000;
  --bg-surface: #09090B;
  --bg-card: #121215;
  --bg-card-hover: #18181B;
  --bg-pill: #1C1C21;
  
  --border-color: #27272A;
  --border-highlight: #52525B;
  
  --primary-white: #FFFFFF;
  --primary-silver: #E4E4E7;
  --primary-gray: #A1A1AA;
  --primary-dark-gray: #3F3F46;
  
  --accent-green: #10B981;
  
  --text-main: #FFFFFF;
  --text-muted: #A1A1AA;
  --text-dim: #71717A;
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --shadow-glow: 0 0 50px -10px rgba(255, 255, 255, 0.12);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.5);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--primary-silver);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utilities - Clean Black & White */
.gradient-text {
  background: linear-gradient(180deg, #FFFFFF 0%, #A1A1AA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-text {
  background: linear-gradient(180deg, #FFFFFF 0%, #D4D4D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid var(--primary-white);
}

.green-text {
  color: var(--accent-green) !important;
}

.text-link {
  color: var(--primary-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--primary-gray);
}

/* NAVIGATION BAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  height: 68px;
}

.navbar .nav-container {
  padding: 0 40px;
}

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

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

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #000000;
  border: 1px solid var(--border-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.brand-name .highlight {
  color: #FFFFFF;
}

.brand-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.appstore-btn-link {
  display: inline-flex;
  align-items: center;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.appstore-btn-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

.appstore-badge-img {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 8px;
  background: #FFFFFF;
  padding: 3px 10px;
  object-fit: contain;
}

.nav-btn {
  height: 36px;
  padding: 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-btn i,
.nav-btn svg {
  width: 15px;
  height: 15px;
}

/* BUTTONS — High-Contrast Black & White */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  font-size: 0.9rem;
  padding: 10px 18px;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 26px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-primary {
  background: #FFFFFF;
  color: #000000;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: #E4E4E7;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
  background: var(--bg-pill);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-highlight);
}

.btn-outline:hover {
  background: var(--bg-pill);
  border-color: var(--primary-white);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}

.hero-background-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(0, 0, 0, 0) 75%);
  pointer-events: none;
}

.hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.badge-text {
  color: var(--text-main);
  font-weight: 600;
}

.badge-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-green);
  font-weight: 700;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 10px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 840px;
  margin-bottom: 40px;
}

/* QUICK STATS STRIP */
.quick-stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.stat-pill:hover {
  transform: translateY(-2px);
  border-color: var(--border-highlight);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: var(--bg-pill);
  color: #FFFFFF;
  border: 1px solid var(--border-color);
}

.stat-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  border-color: rgba(16, 185, 129, 0.2);
}

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

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

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

/* ASSETS INCLUDED CARD */
.assets-included-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
}

.badge-included {
  font-size: 0.75rem;
  font-weight: 700;
  background: #FFFFFF;
  color: #000000;
  padding: 4px 12px;
  border-radius: 100px;
}

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

.asset-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.asset-item i {
  color: var(--primary-white);
  margin-top: 2px;
  flex-shrink: 0;
}

.asset-item strong {
  font-size: 0.95rem;
  color: var(--text-main);
}

.asset-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* SECTIONS BASE */
.section {
  padding: 90px 0;
  border-top: 1px solid var(--border-color);
}

.section-header {
  margin-bottom: 40px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary-white);
  background: var(--bg-pill);
  border: 1px solid var(--border-color);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.section-tag.green-tag {
  color: var(--accent-green);
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

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

/* FINANCIAL P&L TABLE STYLING */
.pl-table-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 40px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

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

.pl-table th {
  background: #121215;
  color: var(--primary-white);
  font-weight: 700;
  padding: 14px 16px;
  border-bottom: 2px solid var(--border-color);
  white-space: nowrap;
}

.pl-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
  white-space: nowrap;
}

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

.pl-table tr.highlight-row {
  background: rgba(255, 255, 255, 0.03);
}

.pl-table tr.net-profit-row {
  background: rgba(16, 185, 129, 0.08);
  font-weight: 700;
}

.pl-table td strong {
  color: var(--text-main);
}

/* SECTION 1: KPIS */
.kpi-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.kpi-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.kpi-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-highlight);
}

.kpi-card.highlight-border {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-glow);
}

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

.kpi-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.kpi-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-pill);
  color: #FFFFFF;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kpi-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  border-color: rgba(16, 185, 129, 0.2);
}

.kpi-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.trend {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.trend.positive {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
}

.kpi-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.kpi-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* CHART CONTAINER */
.chart-container-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 40px;
}

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

.chart-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chart-card-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.chart-toggle-group {
  display: flex;
  gap: 6px;
  background: var(--bg-pill);
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.chart-toggle {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chart-toggle.active {
  background: #FFFFFF;
  color: #000000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.chart-wrapper {
  position: relative;
  height: 340px;
  width: 100%;
}

/* MOATS GRID */
.moats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.moat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
}

.moat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-pill);
  color: #FFFFFF;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.moat-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.moat-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* SECTION 3: GTM RESULTS */
.aggregate-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.agg-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.agg-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-pill);
  color: #FFFFFF;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.agg-number {
  font-size: 1.75rem;
  font-weight: 800;
  display: block;
  line-height: 1.1;
}

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

.section-intro-text {
  margin-bottom: 30px;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border-left: 3px solid #FFFFFF;
}

.section-intro-text p {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 5 SCREENSHOTS GRID — Ultra Compact Single Row Layout */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.screenshot-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.screenshot-card:hover {
  transform: translateY(-4px);
  border-color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.12);
}

.screenshot-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  background: #000;
  overflow: hidden;
}

.screenshot-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}

.screenshot-card:hover .screenshot-img-wrapper img {
  transform: scale(1.05);
}

.zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #FFF;
  font-weight: 700;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.screenshot-card:hover .zoom-overlay {
  opacity: 1;
}

.screenshot-info {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screenshot-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 4px;
}

.screenshot-header h4 {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.badge-viral {
  font-size: 0.65rem;
  font-weight: 700;
  background: #FFFFFF;
  color: #000000;
  padding: 2px 8px;
  border-radius: 100px;
}

.metrics-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 3px;
}

.metric-row span {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.metric-row strong {
  color: var(--text-main);
  font-size: 0.75rem;
}

/* PLAYBOOK BOX */
.playbook-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.playbook-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #FFFFFF;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.playbook-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.playbook-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* CONTACT & OFFER FORM */
.contact-section {
  padding-bottom: 100px;
}

.offer-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-glow);
}

.offer-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
}

.offer-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.offer-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.offer-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FFFFFF;
}

.form-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
}

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

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

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* MODALS */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 10;
  background: var(--bg-surface);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.9);
}

.lightbox-content {
  max-width: 600px;
  text-align: center;
}

.lightbox-content h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.lightbox-img-wrapper img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

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

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: #FFF;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
  .screenshots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .navbar .nav-container {
    padding: 0 20px;
  }

  .screenshots-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .nav-links {
    display: none;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .quick-stats-strip {
    grid-template-columns: 1fr;
  }

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