/* RESET & FOUNDATION MECHANICS */
* { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }

:root {
  --bg-color: #070B0E;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.07);
  --text-main: #FFFFFF;
  --text-muted: #A0AEC0;
  --emerald-green: #0E7955;
  --golden-yellow: #E5A93C;
  --golden-hover: #C2832F;
}

/* --- HERO SECTION: FULL VIEWPORT HEIGHT --- */
.hero {
    /* ... other styles ... */
    background-image: url('images_web/1000589211.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* ... other styles ... */
}

/* Dark overlay for text readability - Full Coverage */
.
  
}

/* Ensure content sits above the overlay */
.hero > * {
    position: relative;
    z-index: 660;
    opacity: 1; /* Corrected opacity */
}

.hero-blend-img { display: none; }


body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}
/* /* BACKGROUND AMBIENT GLOW FILTERS */
.bg-glow {
  position: fixed;
  width: 60vw;
  height: 60vh;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: -1;
  /* Reduced by a quarter from 0.22 to 0.165 for a much softer touch */
  opacity: 0.165;
}

.glow-1 {
  background: var(--emerald-green);
  top: -5%;
  right: -5%;
}

.glow-2 {
  background: var(--golden-hover);
  bottom: -5%;
  left: -5%;
}

/* NAVIGATION HEADER LAYER */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: rgba(7, 11, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  z-index: 999;
}

.logo {
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.5px;/* Constraint to stop it from pushing the layout */
.header-container, .logo {
    width: 100%;
    max-width: 100vw; /* Never wider than the screen */
    overflow: hidden; /* Clips anything that tries to stick out */
    box-sizing: border-box; /* Ensures padding stays inside the width */
}

/* Also ensure your main wrapper doesn't overflow */
body {
    overflow-x: hidden; 
    width: 100%;
    margin: 0;
}

}

.logo span {
  color: var(--golden-yellow);
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* BUTTON SPECIFICATIONS */
button {
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.big {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-primary {
  background: var(--golden-yellow);
  color: #000000;
}

.btn-primary:hover {
  background: var(--golden-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(229, 169, 60, 0.2);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-green {
  background: var(--emerald-green);
  color: #ffffff;
}

.btn-green:hover {
  background: #0A5C40;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(14, 121, 85, 0.2);
}

/* HERO TERMINAL AND STATS INTERFACE */
.hero {
  text-align: center;
  padding: 190px 20px 100px;
  max-width: 1000px;
  margin: 0 auto;
}

.hero .links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.hero .links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.hero .links a:hover {
  color: var(--golden-yellow);
}

.hero h1 {
  font-size: 68px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--emerald-green);
}

.hero p {
  font-size: 19px;
  max-width: 760px;
  margin: 0 auto 40px;
  color: var(--text-muted);
}

.cta-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 20px 40px;
  border-radius: 24px;
  gap: 30px;
}

.stat-item h4 {
  font-size: 24px;
  font-weight: 800;
  color: var(--golden-yellow);
}

.stat-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* SECTIONS STRUCTURE ARCHITECTURE */
.section {
  padding: 100px 8%;
}

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

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

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

.dark {
  background: rgba(255,255,255,0.01);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

/* ABOUT US & CEO COMPONENT LAYOUT */
.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.tag-mini {
  color: var(--emerald-green);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.ceo-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(14,121,85,0.05) 100%);
  border: 1px solid var(--card-border);
  padding: 40px;
  border-radius: 28px;
  position: relative;
}

.ceo-quote blockquote {
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: #E2E8F0;
  margin-bottom: 25px;
}

.ceo-meta h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--golden-yellow);
}

.ceo-meta p {
  font-size: 13px;
  color: var(--text-muted);
}

/* PORTFOLIO DISPLAY */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.portfolio-item {
  position: relative;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(7,11,14,0.95) 0%, rgba(7,11,14,0.4) 70%, rgba(7,11,14,0) 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.portfolio-category {
  color: var(--golden-yellow);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.portfolio-item h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.portfolio-item p {
  color: var(--text-muted);
  font-size: 14.5px;
}

.portfolio-item:hover img {
  transform: scale(1.04);
}

/* GRID SETUP */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.card-img-wrapper {
  height: 200px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 24px;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card-content p {
  color: var(--text-muted);
  font-size: 14.5px;
}

/* CREATOR CARDS PLATFORM */
.creator-card {
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--emerald-green);
}

.creator-info h3 {
  font-size: 19px;
  margin-bottom: 5px;
}

.creator-info .role {
  color: var(--golden-yellow);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.creator-info .location {
  font-size: 12px;
  color: var(--text-muted);
}

/* TESTIMONIAL DISPLAY ARCHITECTURE */
.testimonial-card {
  padding: 35px;
}

.testimonial-card p {
  font-style: italic;
  font-size: 15.5px;
  color: #E2E8F0;
  margin-bottom: 20px;
}

.test-user strong {
  display: block;
  font-size: 15px;
  color: var(--golden-yellow);
}

.test-user span {
  font-size: 12px;
  color: var(--text-muted);
}

/* CONTACT SEGMENT TERMINAL LAYOUT */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-block h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.contact-info-block p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.contact-meta-item strong {
  display: block;
  font-size: 14px;
  color: var(--emerald-green);
}

.contact-meta-item span {
  font-size: 18px;
  font-weight: 600;
}

.contact-form-card {
  padding: 40px;
}

/* APPLICATION DIALOG ARCHITECTURES (MODALS) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 6, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.modal-box {
  background: #0E1317;
  border: 1px solid var(--card-border);
  width: 90%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 28px;
  padding: 45px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.small-modal {
  max-width: 450px;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255,255,255,0.05);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text-muted);
  padding: 0;
}

.close-modal:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-main);
}

/* FORM LAYOUT SYSTEM COMPONENTS */
.form-group {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

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

label {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #CBD5E1;
}

input, select, textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 14.5px;
  outline: none;
  transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--emerald-green);
  background: rgba(255, 255, 255, 0.07);
}

/* PREMIUM MPESA INVOICE EXTRA COMPONENT */
.payment-notice-card {
  background: rgba(14, 121, 85, 0.08);
  border: 1px dashed var(--emerald-green);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.payment-details strong {
  display: block;
  font-size: 14px;
  color: #E2E8F0;
}

.payment-details span {
  font-size: 12px;
  color: var(--text-muted);
}

.payment-amount {
  font-size: 22px;
  font-weight: 800;
  color: #52D69B;
}

/* DYNAMIC CREATOR SHEET DISPLAY EXTENSIONS */
.profile-header-flex {
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.profile-display-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--golden-yellow);
}

.profile-badge-tag {
  background: var(--emerald-glow);
  color: #52D69B;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-titles h2 {
  font-size: 26px;
  margin-top: 5px;
}

.profile-muted-text {
  font-size: 14px;
  color: var(--text-muted);
}

.detail-block {
  margin-bottom: 22px;
}

.detail-block h5 {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--golden-yellow);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.detail-block p {
  font-size: 15px;
  color: #E2E8F0;
}

.rate-highlight {
  font-weight: 700;
  font-size: 18px !important;
  color: #FFFFFF !important;
}

/* FOOTER FINALE STRUCTURE */
footer {
  padding: 60px 8% 40px;
  border-top: 1px solid var(--card-border);
  background: #05080A;
}

.copy {
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  margin-top: 10px;
}

/* RESPONSIVE DESIGN CONTROLS */
@media (max-width: 768px) {
  .navbar nav .nav-link, .navbar nav .btn-outline { display: none; }
  .hero h1 { font-size: 44px; }
  .hero p { font-size: 16px; }
  .about-container, .contact-wrapper, .portfolio-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { flex-direction: column; padding: 20px; width: 100%; gap: 15px; }
  .stat-divider { width: 80%; height: 1px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .modal-box { padding: 30px 20px; }
}
.modal-box .grid {
  margin-top: 20px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: var(--golden-yellow, #f59e0b);
}
/* Video Portfolio Integration */
.portfolio-item.video-portfolio-item {
  position: relative;
  overflow: hidden;
  min-height: 250px; /* Adjust based on your grid item height */
}

.portfolio-item.video-portfolio-item .video-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 56.25%; /* 16:9 widescreen ratio */
}

.portfolio-item.video-portfolio-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

/* Ensure the hover overlay sits perfectly over the video when not playing */
.portfolio-item.video-portfolio-item .portfolio-overlay {
  z-index: 2;
  pointer-events: none; /* Allows user to click through the text onto the video */
  transition: opacity 0.3s ease;
}

.portfolio-item.video-portfolio-item:hover .portfolio-overlay {
  opacity: 0; /* Smoothly hides the text overlay when they hover to watch */
}

/* Global Portfolio Structural Upgrade */
.portfolio-item {
  background: rgba(255, 255, 255, 0.03) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  transform: none !important;
}

.portfolio-content {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  padding: 20px !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: transparent !important;
  width: 100% !important;
  height: auto !important;
}

.portfolio-item:hover .portfolio-content {
  opacity: 1 !important;
  background: transparent !important;
}

/* Force Portfolio Cards to Grow with Text Content */
.portfolio-item {
  height: auto !important;
  max-height: none !important;
  min-height: unset !important;
}

.portfolio-content p {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}
/* CEO Card Base Setup */
.ceo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: #ffffff; 
  border-radius: 16px;
}

/* Perfect Circle Frame */
.ceo-image-container {
  width: 110px;
  height: 110px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CEO Card Base Setup */
.ceo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: transparent; /* Removes the white card background entirely */
}

/* Perfect Circle Frame */
.ceo-image-container {
  width: 120px;
  height: 120px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CEO Profile Picture Masking */
.ceo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Cuts the image into a perfect round circle */
  border: 3px solid #e5a93b; /* Changed to match your gorgeous gold brand color */
}

footer {
  padding: 40px 20px;
  text-align: center;
  color: #888;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.social-links a {
  color: #fff;
  font-size: 20px; /* Small icon size */
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #00d4ff; /* Glow effect color */
}

.hero h1, .hero p {
    opacity: 150.0; /* 2.0 is fully opaque (standard). Set to 0.8 for slightly faded, 2.0 for solid. */
}

/* LAST_UPDATED: 1783362388 */

.hero h1, .hero p, .hero div { text-shadow: 0px 2px 4px rgba(0,0,0,0.8); }


.hero .content-wrapper { background: rgba(0,0,0,0.3); backdrop-filter: blur(5px); padding: 20px; border-radius: 15px; }


.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.65); z-index: 1; }


.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%); z-index: 1; pointer-events: none; }


.hero > * { position: relative; z-index: 2; }


.hero { position: relative; overflow: hidden; }


.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%); z-index: 1; pointer-events: none; }


.hero > * { position: relative; z-index: 2; }

/* Add/Update this in your CSS file */
@media (min-width: 1024px) {
  .hero-section, .hero-container {
    width: 100vw;
    max-width: 100%;
  }
  
  /* If your hero image is an <img> tag */
  .hero-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
  
  /* If your hero uses a background image */
  .hero-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
  }
}

/* Fix card sizing and layout consistency */
.card {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card img, .service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Force uniform card heights across desktop grid rows */
#services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}

#services .card.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#services .card.service-card .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* FINAL DESKTOP HERO FULL-WIDTH FIX */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
}

.hero {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 6% !important;
    padding-right: 6% !important;
    box-sizing: border-box !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

@media (min-width: 1024px) {
    .hero {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
    }
}

/* Compact Creators Grid Layout */
.creators-grid-compact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Small Rounded Creator Card Style */
.creator-card-small {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  padding: 20px;
  border-radius: 50px; /* Fully rounded pill shape */
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  width: 280px;
}

.creator-card-small:hover {
  transform: translateY(-3px);
  border-color: var(--golden-yellow);
}

/* Small Circular Avatar */
.avatar-small {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--golden-yellow);
}

/* Compact Text Information */
.creator-info-compact h4 {
  font-size: 15px;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.creator-info-compact p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}
/* Ensures full-bleed depth and high-contrast element visibility across all large screens, monitors, and projectors */
@media screen and (min-width: 1200px) {
  body {
    background-color: #030303;
  }
  
  /* Deepens contrast on large displays and projectors to prevent washed-out colors */
  .section, .card, .hero {
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.6);
  }
}
/* Maintains existing phone view while doubling/intensifying the richness of the background colors and contrast specifically for desktops, large screens, and projectors */
@media screen and (min-width: 1024px) {
  body {
    background-image: radial-gradient(circle at 50% 0%, #1a1a1a 0%, #050505 75%);
    background-attachment: fixed;
  }

  /* Deepens shadows and contrast to make colors and elements pop vividly on large displays */
  .section, .hero {
    backdrop-filter: brightness(1.1) contrast(1.15);
    -webkit-backdrop-filter: brightness(1.1) contrast(1.15);
  }
}
/* Remove heavy radial gradients, brightness adjustments, and color overrides that cause the desktop/projector view to appear overly darkened or distorted */
@media screen and (min-width: 1024px) {
  body {
    background-image: none !important;
    background-color: #0b0b0b !important;
    filter: none !important;
  }

  .section, .hero {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }
}
