/* 
   Fun-o-Matic 3000 Website Styles
   Main stylesheet for all pages
*/

/* ===== GLOBAL STYLES ===== */
:root {
  --primary-color: #0099cc; /* Turquoise blue */
  --secondary-color: #FF4B3E; /* Coral red */
  --accent-color: #FFD23F; /* Golden yellow */
  --dark-color: #1A1B41; /* Navy blue */
  --light-color: #FFFDE7; /* Cream */
  --gray-color: #6D6D6D;
  --gradient-bg: linear-gradient(120deg,#0099cc 0%, #1A1B41 80%);
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 10px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: #000000;
  line-height: 1.6;
  background-color: #1A1B41;
}

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

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Star Background Animation */
.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.star {
  position: absolute;
  background-color: var(--star-color);
  border-radius: 30%;
  animation: twinkle 6s infinite;
}

@keyframes twinkle {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}


section {
  padding: 20px 0;
}

/* ===== BUTTONS ===== */
.primary-button, .secondary-button, .cta-button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.primary-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.primary-button:hover {
  background-color: #009999;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(47, 191, 190, 0.4);
}

.secondary-button {
  background-color: transparent;
  color: white;
  border: 2px solid var(--primary-color);
}

.secondary-button:hover {
  background-color:#009999;
  color: white;
}

.cta-button {
  background-color: var(--secondary-color);
  color: white;
  border: none;
}

.cta-button:hover {
  background-color: #009999;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 75, 62, 0.4);
}


        /* Additional styles for single page navigation */
        html {
            scroll-behavior: smooth;
        }
        
        .section-divider {
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            margin: 30px 0;
        }
        
        .section-header {
            padding-top: 20px;
            margin-top: -80px; /* Offset for fixed header */
        }
        
        {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 999;
        }
        
        #back-to-top.visible {
            opacity: 1;
        }
 

/* Robot Flames Effect */
.robot-container {
  position: relative;
  display: inline-block;
}

.robot {
  position: relative;
  z-index: 2;
}

.robot-container::after {
  content: '';
  position: absolute;
  bottom: 100px;
  left: 190px;
  transform: translateX(-50%);
  width: 0px;
  height: 100px;
  background: radial-gradient(
    ellipse at center,
    rgba(47, 191, 255, 0.9) 0%,
    rgba(47, 191, 255, 0.7) 30%,
    rgba(47, 191, 255, 0.4) 60%,
    rgba(47, 191, 255, 0) 100%
  );
  border-radius: 50% 50% 0 0;
  z-index: 1;
  animation: glow 2s infinite alternate;
}

.flame {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-50%);
  z-index: 1;
}

.flame::before,
.flame::after {
  content: '';
  position: absolute;
  bottom: 70px;
  width: 90px;
  height: 100px;
  background: linear-gradient(to bottom, 
    rgba(47, 191, 255, 0.9), 
    rgba(47, 191, 255, 0.5) 50%,
    rgba(47, 191, 255, 0)
  );
  border-radius: 50% 50% 20% 20%;
  filter: blur(5px);
  animation: flicker 0.5s infinite alternate;
}

.flame::before {
  left: 120px;
  height: 90px;
  animation-delay: 0.2s;
  animation-duration: 0.7s;
}

.flame::after {
  left: 180px;
  height:100px;
  animation-delay: 0.4s;
  animation-duration: 0.6s;
}

.flame-center {
  position: absolute;
  bottom: 100px;
  left: 180px;
  transform: translateX(-50%);
  width: 30px;
  height: 100px;
  background: linear-gradient(to bottom, 
    rgba(47, 191, 255, 0.9), 
    rgba(0, 150, 255, 0.7) 50%, 
    rgba(47, 191, 255, 0)
  );
  border-radius: 50% 50% 20% 20%;
  filter: blur(7px);
  animation: flicker 0.3s infinite alternate;
  z-index: 1;
}

@keyframes flicker {
  0% {
    height: 100px;
    opacity: 1;
  }
  100% {
    height: 120px;
    opacity: 1;
  }
}

@keyframes glow {
  0% {
    opacity: 0.7;
    box-shadow: 0 0 10px 5px rgba(47, 191, 255, 0.5);
  }
  100% {
    opacity: 0.9;
    box-shadow: 0 0 20px 10px rgba(47, 191, 255, 0.7);
  }
}

/* ===== HEADER ===== */
header {
  background-color: #acdae8;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 80px;
  width: auto;
  margin-right: 0px;
}

.logo2 {
  height: 120px;
  margin-right: 0;
  margin-left: 0;
  padding-bottom: 0px;
}

.logo-text {
  font-family: 'Audiowide', cursive;
  font-size: 1.5rem;
  color:white;
}

nav ul {
  display: flex;
  align-items: center;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
}

nav ul li a:hover {
  color: white;
}

nav ul li a.active {
  color: white;
}

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero {
  background: var(--gradient-bg);
  padding: 50px 0;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom:30px;
}

.hero-content {
  flex: 1;
  padding-right: 0;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #acdae8;
  
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: white;
}

.hero-buttons {
  display: flex;
  color:#1A1B41;
  gap: 15px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: right;
  margin-top: 60px;
}

.robot {
  max-width: 500px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ===== SLIDESHOW SECTION ===== 
.slideshow-section {
  background-color: white;
  text-align: center;
}

.slideshow-section h2 {
  margin-bottom: 40px;
}

.slideshow-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.slideshow {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  padding: 40px;
  text-align: center;
  max-width: 600px;
}

.slide-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.slide-content p {
  font-size: 1.2rem;
  color: var(--gray-color);
}

.slideshow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.prev-slide, .next-slide {
  background-color: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.prev-slide:hover, .next-slide:hover {
  background-color: var(--dark-color);
}

.slideshow-dots {
  display: flex;
  margin: 0 20px;
}


.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}
*/
/* ===== FEATURES SECTION ===== */
.features {
  background-color:white;
  text-align: center;
}

.features h2 {
  margin-bottom: 50px;
  color: #cc0099;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom:30px;

}

.feature-card {
  background-color:#acdae8;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  text-align:center;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  text-align:center;
  color: #0099cc;
}

.feature-card p {
  text-align:center;
  padding: 0 20px;
}

/* ===== CTA SECTION ===== */
.cta {
  background-color:#1A1B41;
  color: white;
  text-align: center;
  padding: 60px 0;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta .primary-button {
  background-color: #09c;
  color: var(--dark-color);
}

.cta .primary-button:hover {
  background-color: var(--dark-color);
  color: white;
}
.prototype .container {
}
/* ===== PROTOTYPES==== */
.proto-grid {
  display: flex ;
  text-align:center;
  justify-content: space-between;
}

.proto-image {
  width:200px;
  text-align: center;

}


/* ===== FOOTER ===== */
footer {
  background-color: #0099cc;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-img-small {
 
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column h4 {
  margin-bottom: 20px;
  color: #0099cc;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  color: #ccc;
}

.social-link:hover {
  color: white;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--gradient-bg);
  text-align: center;
  padding: 20px 0;
}

.page-header h1 {
  margin-bottom: 10px;
  margin-top: 10px;
}

.page-header p {
  color: var(--gray-color);
  font-size: 1.2rem;
}

/* ===== ONE-PAGER STYLES ===== */
.one-pager {
  background-color: white;
}

.one-pager-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.one-pager-section {
  margin-bottom: 30px;
}

.one-pager-section h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--primary-color);
}

.info-list li {
  margin-bottom: 10px;
}

.team-list li {
  margin-bottom: 10px;
}

.company-summary, .management, .problem, .product, .target-market, .business-model, .customers, .sales-marketing, .competitors, .competitive-advantage, .financials {
  grid-column: span 2;
}



.financials-table {
  overflow-x: auto;
  margin-bottom: 20px;
 background color: #acdae8;
}

.financials-table table {
  width: 100%;
  border-collapse: collapse;
  background color: #acdae8;
}

.financials-table th, .financials-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.financials-table th {
  background-color:#acdae8;
  font-weight: 500;
}

.financials-note {
  font-style: italic;
  color: var(--gray-color);
}

/* ===== SUMMARY STYLES ===== */
.summary {
  background-color: white;
}

.summary-section {
  margin-bottom: 20px;
}

.summary-section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--primary-color);
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 30px;
  margin-top: 25px;
  
}

.team-card {
  background-color: #acdae8;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);

}

.team-card h3 {
  margin-bottom: 5px;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.stat-card {
  background-color: #acdae8;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.stat-card h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.revenue-streams {
  margin-top: 20px;
  list-style: disc;
  padding-left: 20px;
}

.revenue-streams li {
  margin-bottom: 10px;
}

.chart {
  margin-top: 30px;
  margin-bottom: 30px;
}

.chart-bars {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 300px;
  margin-bottom: 20px;
}

.chart-year {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
}

.chart-bar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 250px;
  width: 80px;
  position: relative;
}

.chart-bar {
  width: 40px;
  position: absolute;
  bottom: 0;
  border-radius: 5px 5px 0 0;
  transition: height 1s ease-in-out;
}

.chart-bar.revenue {
  background-color: var(--primary-color);
  z-index: 1;
}

.chart-bar.profit {
  background-color: var(--accent-color);
  z-index: 2;
  left: 20px;
}

.chart-label {
  margin-top: 10px;
  font-weight: 500;
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.legend-item {
  display: flex;
  align-items: center;
}

.legend-color {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border-radius: 3px;
}

.legend-color.revenue {
  background-color: var(--primary-color);
}

.legend-color.profit {
  background-color: var(--accent-color);
}

.chart-note {
  text-align: center;
  font-style: italic;
  color: var(--gray-color);
}

.investment-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 30px;
  justify-content: space-around;
  margin: 0 0;
  text-align:center;
}

.investment-item {
  text-align: center;
  display: inline-block;
  background-color: #acdae8;
  padding: 20px;
  margin:30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  
}

.investment-item h3 {
  font-size: 2.5rem;
  color: #0099cc;
  margin: 30px;

}

.investment-use {
  text-align: center;
  margin: 0 auto;
}

/* Container helpers (optional) */
.projection-table-section {
  padding: 20px 0;
  background: #fff;
}
.projection-table-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.projection-subtitle {
  color: #6D6D6D;
  margin-bottom: 16px;
}

/* Table wrapper with keyboard focus for horizontal scroll on small screens */
.table-wrap {
  overflow-x: auto;
  border: 1px solid #e9edf3;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  background: #fff;
}
.table-wrap:focus {
  outline: 3px solid #2FBFBE33;
}

/* Table base styles */
.financial-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px; /* keep structure on narrow viewports */
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #1A1B41;
}

.financial-table th,
.financial-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #edf1f7;
  vertical-align: middle;
  text-align: right;
  white-space: nowrap;
}

.financial-table thead th {
  text-align: right;
  font-weight: 600;
  background: #f7fafc;
  color: #3c4153;
  border-bottom: 2px solid #e9edf3;
}
.financial-table thead th:first-child {
  text-align: left;
}

.financial-table tbody th[scope="row"] {
  text-align: left;
  font-weight: 600;
  color: #24304a;
}

/* Zebra striping for body rows */
.financial-table tbody tr:nth-child(odd) td,
.financial-table tbody tr:nth-child(odd) th[scope="row"] {
  background: #fcfeff;
}

/* Summary block (tfoot) styling with light blue shading */
.financial-table tfoot .summary th,
.financial-table tfoot .summary td {
  background: #E6F7F7; /* light blue highlight to match your style */
  font-weight: 600;
  border-top: 1px solid #d9eff0;
}

.financial-table tfoot .reserve th,
.financial-table tfoot .reserve td {
  background: #def3f3; /* slightly stronger tint for reserve row */
}

/* Value emphasis */
.bold { font-weight: 700; }
.pos  { color: #2e7d32; } /* green for positive (revenue) */
.neg  { color: #c0392b; } /* red for net negatives */

/* Screen-reader only text helper */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 20px;
    margin-top:80px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .one-pager-grid {
    grid-template-columns: 1fr;
  }
  
  .proto-grid {
    text-align: center;
  }
  .proto-image{
      display: flex ;
      width:200px;
  }
  
  .company-summary, .management, .the-problem, .the-solution, .product, .target-market, .business-model, .customers, .sales-marketing, .market-opportunity, .competitors, .competitive-advantage, .financials {
    grid-column: span 1;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  header .container {
    flex-direction: column;
  }
  
  nav ul {
    margin-top: 20px;
  }
  
  nav ul li {
    margin: 0 10px;
  }
  
  .slideshow {
    height: 300px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
  
  .investment-details {
    flex-direction: column;
    gap: 30px;
  }
}



@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .primary-button, .secondary-button {
    width: 100%;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 5px 10px;
  }
  
  .slideshow {
    height: 250px;
  }
  
  .slide-content {
    padding: 20px;
  }
  
  .slide-content h3 {
    font-size: 1.5rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .investment-grid {
    grid-template-columns: 1fr;
  }
  
  .proto-grid {
  text-align:center;
  width:100%;
  }
  .proto-image{
  display: relative;

  }
  
  .chart-bars {
    height: 200px;
  }
  
  .chart-bar-container {
    height: 150px;
    width: 60px;
  }
  
  .chart-bar {
    width: 30px;
  }
  
  .chart-bar.profit {
    left: 15px;
  }
  
}

/* Mobile-friendly stacked layout (optional)
   If you want a fully stacked view under 560px, uncomment below and ensure data-label attributes exist. */

@media (max-width: 560px) {
  .financial-table, .financial-table thead, .financial-table tbody, .financial-table tfoot, .financial-table tr, .financial-table th, .financial-table td {
    display: block;
    width: 73%;
  }

  .financial-table thead {
    display: none;
  }

  .financial-table tbody tr, .financial-table tfoot tr {
    border-bottom: 2px solid #edf1f7;
    margin-bottom: 10px;
  }

  .financial-table td {
    padding-left: 30%;
    position: relative;
  }

  .financial-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: #3c4153;
  }

  .financial-table tbody th[scope="row"] {
    display: block;
    text-align: left;
    padding-left: 16px;
    background: #f7fafc;
    border-bottom: 1px solid #e9edf3;
  }
}

:root{
  --bg: #0f1226;
  --card: #161a36;
  --ink: #eef3ff;
  --muted: #a9b3d6;
  --brand: #7bf5e3;
  --accent: #ffd166;
  --danger: #ff6b6b;
  --bar: linear-gradient(90deg,#7bf5e3,#86a3ff);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 14px;
  --radius-sm: 10px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font:16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: #000000;
  background:
    radial-gradient(1200px 600px at 20% -10%, #1e2350 0%, rgba(30,35,80,0) 70%),
    radial-gradient(1000px 700px at 120% 20%, #2a1d5a 0%, rgba(42,29,90,0) 70%),
    var(--bg);
}

.site-header, .site-footer{
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem; padding:12px 18px; position:sticky; z-index:5;
}
.site-header{top:0; background:linear-gradient(180deg,rgba(15,18,38,.9),rgba(15,18,38,.6))}
.site-footer{bottom:0; background:linear-gradient(0deg,rgba(15,18,38,.9),rgba(15,18,38,.0))}

.brand{display:flex; align-items:center; gap:.8rem}
.brand-title{font-size:18px; margin:0}
.brand-mark{
  display:inline-grid; place-items:center;
  width:28px; height:28px; border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  color:var(--brand); font-weight:700; font-size:12px;
}

.hdr-actions{display:flex; align-items:center; gap:.6rem}
.nav-btn{
  appearance:none; border:none; outline:none; cursor:pointer;
  width:44px; height:44px; border-radius:999px;
  background:#121534; color:var(--ink);
  box-shadow: var(--shadow);
  font-size:22px; line-height:44px;
}
.nav-btn:active{transform:translateY(1px)}
.counter{min-width:70px; text-align:center; color:var(--muted)}

.deck{
  max-width:1000px; margin:10px auto; padding:16px;
}

.slide{
  display:none;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.0)),
             var(--card);
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  padding:28px;
  box-shadow: var(--shadow);
  min-height:58vh;
}
.slide.active{display:block; animation:fadeIn .25s ease-out}
@keyframes fadeIn{from{opacity:0; transform:translateY(6px)} to{opacity:1; transform:none}}

h2{font-size:28px; margin:0 0 12px}
h3{margin:16px 0 8px; color:#0099cc;}
p{margin:8px 0 10px}
ul{margin:8px 0 12px; padding-left:0}
li+li{margin-top:.35rem}
.eyebrow{color:var(--muted); text-transform:uppercase; letter-spacing:.1em; font-size:12px}
.kicker{font-size:22px}
.tagline{color:var(--accent); font-weight:700}
.callout{
  border-left:4px solid var(--brand);
  padding-left:14px; color:#e9efff; font-size:18px
}
.footnote{color:var(--muted); font-size:12px; margin-top:10px}
.big{font-size:28px; color:#eaf6ff}

.grid.two{display:grid; grid-template-columns:1fr; gap:18px}

@media(min-width:820px){ 
    
.grid.two{ grid-template-columns:1fr; } 

.simple{
  width:100%; border-collapse:collapse; background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.06); border-radius:var(--radius-sm); overflow:hidden;
}
.simple td{padding:10px 12px; border-bottom:1px dashed rgba(255,255,255,.08)}
.simple tr:last-child td{border-bottom:none}

.note-card{
  background:rgba(123,245,227,.06);
  border:1px solid rgba(123,245,227,.18);
  border-radius:var(--radius-sm);
  padding:14px;
}

.team li{margin-bottom:10px}

.placeholder{
  background:rgba(255,255,255,.03);
  border:1px dashed rgba(255,255,255,.15);
  border-radius:var(--radius-sm);
  padding:14px;
}
.ph-bar{
  height:10px; margin:10px 0; background:var(--bar); border-radius:999px; opacity:.8;
}

.bar-rows{display:grid; gap:12px; margin-top:10px}
.bar-row{display:grid; grid-template-columns:110px 1fr 120px; gap:10px; align-items:center}
.bar-label{color:var(--muted)}
.bar{
  --w: 50%;
  height:14px; background:var(--bar); border-radius:999px; width:var(--w);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.bar-value{text-align:right}

.competitors .cols{
  columns: 2;
  gap: 24px;
  list-style: disc;
  padding-left: 1.2rem;
}

.progress{
  width:100%; height:6px; background:rgba(255,255,255,.07);
  border-radius:999px; overflow:hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.progress-bar{
  height:100%; width:0%;
  background:linear-gradient(90deg,#7bf5e3,#86a3ff 60%, #ffd166 100%);
  transition:width .2s ease;
}
.tips{color:var(--muted); font-size:12px; padding:6px 10px}
}