/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* Modern Design System - Corporate Cyber Emerald & Teal */
:root {
  --primary-rgb: 16, 185, 129; /* Emerald Green */
  --primary: rgb(var(--primary-rgb));
  --primary-hover: #34d399;
  --secondary: #06b6d4; /* Cyber Cyan */
  --secondary-glow: rgba(6, 182, 212, 0.15);
  --primary-glow: rgba(16, 185, 129, 0.2);
  
  /* Extremely deep rich dark space colors */
  --bg-dark: #030605;
  --bg-darker: #010202;
  --bg-card: rgba(8, 14, 11, 0.45);
  --bg-card-hover: rgba(13, 22, 17, 0.65);
  
  --border-color: rgba(16, 185, 129, 0.1);
  --border-color-hover: rgba(16, 185, 129, 0.35);
  --border-glass: rgba(255, 255, 255, 0.04);
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  
  --navbar-height: 80px;
  --banner-height: 0px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-dark);
}

body {
  background-color: var(--bg-dark);
  /* Mesh background gradients */
  background-image: 
    radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.04) 0px, transparent 50%),
    radial-gradient(at 50% 0%, rgba(6, 182, 212, 0.04) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.03) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(6, 182, 212, 0.02) 0px, transparent 40%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

body.maintenance-active {
  overflow: hidden;
}

/* Webkit Scrollbars */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

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

/* Sticky Announcement Banner */
.announcement-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--banner-height);
  background: linear-gradient(90deg, #047857 0%, var(--primary) 50%, var(--secondary) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem 0 2rem;
  z-index: 1100;
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 30px rgba(16, 185, 129, 0.25);
  transition: var(--transition-smooth);
}

.announcement-banner p {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.announcement-banner .close-banner {
  position: absolute;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.announcement-banner .close-banner:hover {
  background: white;
  color: #047857;
  transform: scale(1.05);
}

/* Floating Premium Navbar */
.navbar {
  position: fixed;
  top: var(--banner-height);
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  background: rgba(3, 6, 5, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5rem;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(1, 2, 2, 0.85);
  height: 72px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
  transition: var(--transition-smooth);
}

.navbar.scrolled .logo-img {
  height: 40px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 60%, var(--primary-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition-smooth);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Premium Gradient Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #047857 100%);
  color: white;
  padding: 0.7rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(16, 185, 129, 0.45),
    0 0 30px rgba(6, 182, 212, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  padding: 0.7rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-icon {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition-smooth);
}

.btn-icon:hover {
  background: rgba(16, 185, 129, 0.08);
  color: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
}

/* Mobile Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Section Containers */
section {
  padding: 10rem 5rem;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 6rem;
  z-index: 10;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  color: var(--primary-hover);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1.15rem;
  border-radius: 100px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 8px rgba(16, 185, 129, 0.05);
}

.section-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff 40%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Hero Landing Area */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--navbar-height) + var(--banner-height) + 3rem);
  padding-bottom: 8rem;
  overflow: hidden;
  background: radial-gradient(circle at 80% 25%, rgba(16, 185, 129, 0.06) 0%, transparent 55%);
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 6rem;
  width: 100%;
}

.hero-content {
  z-index: 10;
}

.hero-h1 {
  font-size: 4.8rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  background: linear-gradient(135deg, #ffffff 30%, rgba(255,255,255,0.85) 60%, var(--primary-hover) 85%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.hero-buttons .btn-primary {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
}
.hero-buttons .btn-secondary {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
}

.hero-stats {
  display: flex;
  gap: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2.5rem;
}

.stat-item h3 {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.2rem;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Premium Visual Graphic Layout (Circle and shadowed logo composition) */
.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 520px;
}

/* Green curve layers backdrop */
.bg-circles-asset {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  border-radius: 30px;
  mask-image: radial-gradient(circle, black 35%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle, black 35%, transparent 90%);
  animation: floatBG 24s ease-in-out infinite alternate;
  filter: saturate(1.1) brightness(0.9);
}

/* Ambient glow orb behind logo */
.logo-asset-container {
  position: relative;
  width: 320px;
  height: 320px;
  background: rgba(2, 4, 3, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 
    0 0 80px rgba(16, 185, 129, 0.15),
    inset 0 0 40px rgba(16, 185, 129, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: floatLogo 8s ease-in-out infinite;
  z-index: 5;
}

/* Floating graphic overlays */
.logo-asset-container::before {
  content: '';
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  border-radius: 50%;
  border: 1px dashed rgba(16, 185, 129, 0.25);
  animation: spinSlow 40s linear infinite;
}

.logo-asset-container::after {
  content: '';
  position: absolute;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border-radius: 50%;
  border: 1px solid rgba(6, 182, 212, 0.15);
  animation: spinSlow 20s linear infinite reverse;
}

.logo-asset-img {
  width: 78%;
  height: auto;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.85));
}

/* Floating particles/indicators */
.hero-graphic::after {
  content: '<luau_engine>';
  position: absolute;
  bottom: 10%;
  left: 5%;
  background: rgba(13, 22, 17, 0.85);
  border: 1px solid var(--border-color);
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--primary-hover);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 10;
  animation: floatMini 5s ease-in-out infinite;
}

.hero-graphic::before {
  content: 'jwt_verified';
  position: absolute;
  top: 15%;
  right: 5%;
  background: rgba(13, 22, 17, 0.85);
  border: 1px solid rgba(6, 182, 212, 0.2);
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--secondary);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 10;
  animation: floatMini 6s ease-in-out infinite alternate;
}

/* Keyframe Animations */
@keyframes floatLogo {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatBG {
  0% { transform: scale(1) translate(0px, 0px) rotate(0deg); }
  100% { transform: scale(1.1) translate(15px, -15px) rotate(3deg); }
}

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

@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Services / Solutions Card Styling */
.services {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.2),
    inset 0 0 1px 1px rgba(255, 255, 255, 0.03);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(16, 185, 129, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 58px;
  height: 58px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-hover);
  font-size: 1.55rem;
  border: 1px solid rgba(16, 185, 129, 0.15);
  margin-bottom: 2.5rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.35);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.service-features {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2rem;
}

.service-features li {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.service-features li i {
  color: var(--primary-hover);
  font-size: 0.9rem;
}

/* Products Layout Overhaul */
.products {
  background: var(--bg-darker);
}

.products-container {
  max-width: 1400px;
  margin: 0 auto;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 8rem;
}

.product-row:last-child {
  margin-bottom: 0;
}

.product-row:nth-child(even) {
  grid-template-columns: 1.1fr 1fr;
  direction: rtl;
}

.product-row:nth-child(even) .product-info {
  direction: ltr;
}

.product-display {
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.05) 0%, transparent 65%);
  border-radius: 24px;
  padding: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.01);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 420px;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}

.product-display::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  filter: blur(140px);
  opacity: 0.15;
  z-index: 1;
}

.product-mockup-ui {
  background: rgba(5, 9, 7, 0.85);
  border: 1px solid rgba(16, 185, 129, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  width: 95%;
  height: 280px;
  z-index: 2;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.8),
    inset 0 0 1px 1px rgba(255,255,255,0.05);
  padding: 1.75rem;
  font-family: 'Courier New', Courier, monospace;
  overflow: hidden;
  position: relative;
}

.mockup-header {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.mockup-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f56;
}
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #27c93f; }

.mockup-code {
  color: #a7f3d0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.mockup-code .keyword { color: #f43f5e; font-weight: 600; }
.mockup-code .string { color: #f59e0b; }
.mockup-code .comment { color: #4b5563; font-style: italic; }
.mockup-code .func { color: #38bdf8; }

.product-info {
  z-index: 2;
}

.product-info h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.product-info p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.spec-box {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.spec-box i {
  color: var(--primary-hover);
  font-size: 1.2rem;
  margin-top: 0.25rem;
  filter: drop-shadow(0 0 5px rgba(16,185,129,0.3));
}

.spec-box h4 {
  font-size: 1.05rem;
  color: white;
  margin-bottom: 0.35rem;
}

.spec-box p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 0;
  line-height: 1.5;
}

.product-info .btn-primary {
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
}

/* Meet the Team Segment (Executive Card Design) */
.team {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.founder-card {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 5rem;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 1px 1px rgba(255, 255, 255, 0.03);
}

.founder-card::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.founder-card::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.founder-img-wrapper {
  position: relative;
  width: 340px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  padding: 3px; /* Frame Border spacer */
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(16, 185, 129, 0.2);
  z-index: 2;
  transition: var(--transition-smooth);
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 17px;
  transition: var(--transition-smooth);
}

.founder-card:hover .founder-img {
  transform: scale(1.03) saturate(1.05);
}

.founder-info {
  z-index: 2;
}

.founder-role {
  display: inline-block;
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.founder-name {
  font-size: 3.2rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 60%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.founder-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.03);
}

.founder-handle i {
  color: var(--primary-hover);
  font-size: 0.9rem;
}

.founder-bio {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.founder-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2rem;
}

.founder-meta-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.founder-meta-item i {
  color: var(--primary-hover);
  font-size: 1.3rem;
  filter: drop-shadow(0 0 5px rgba(16,185,129,0.3));
}

.founder-meta-item div h4 {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.founder-meta-item div p {
  font-size: 1rem;
  color: white;
  font-weight: 600;
}

/* Blog & Announcements Grid */
.blog {
  background: var(--bg-dark);
}

.blog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.blog-filters {
  display: flex;
  gap: 0.85rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  padding: 0.55rem 1.3rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(16, 185, 129, 0.08);
  border-color: var(--primary-hover);
  color: var(--primary-hover);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 0 1px 1px rgba(255, 255, 255, 0.03);
}

.blog-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(16, 185, 129, 0.08);
}

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

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.blog-category {
  background: rgba(16, 185, 129, 0.06);
  color: var(--primary-hover);
  border: 1px solid rgba(16, 185, 129, 0.15);
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-title {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.15rem;
  line-height: 1.3;
  font-weight: 700;
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
  line-height: 1.6;
}

.blog-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.15);
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.blog-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--primary-hover);
  font-weight: 800;
}

.blog-author-name {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.blog-read-more {
  font-size: 0.9rem;
  color: var(--primary-hover);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.blog-read-more:hover {
  color: white;
}

.blog-read-more i {
  transition: var(--transition-fast);
}

.blog-read-more:hover i {
  transform: translateX(4px);
  color: var(--primary-hover);
}

/* Contact Segment & Form Fields */
.contact {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 6rem;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details {
  margin: 4rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-hover);
  font-size: 1.3rem;
  border: 1px solid rgba(16, 185, 129, 0.15);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-item-text h3 {
  font-size: 1.15rem;
  color: white;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.contact-item-text p {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 1.25rem;
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 4.5rem 4rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 1px 1px rgba(255, 255, 255, 0.03);
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: rgba(2, 4, 3, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 0.95rem 1.25rem;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-hover);
  background: rgba(2, 4, 3, 0.9);
  box-shadow: 
    inset 0 2px 4px rgba(0,0,0,0.5),
    0 0 15px rgba(16, 185, 129, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* Footer layout */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding: 6rem 5rem 3rem;
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
  max-width: 340px;
}

.footer-col h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

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

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-links a:hover {
  color: white;
  transform: translateX(6px);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* Sleek Dashboard Modals & Terminals */
.admin-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  padding: 2.5rem;
}

.admin-modal.open {
  opacity: 1;
  pointer-events: all;
}

.admin-modal-card {
  background: #050806;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 24px;
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.9),
    0 0 50px rgba(16, 185, 129, 0.05);
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: var(--transition-smooth);
}

.admin-modal.open .admin-modal-card {
  transform: translateY(0) scale(1);
}

.admin-modal-header {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-modal-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  letter-spacing: -0.01em;
}

.admin-modal-header h3 i {
  color: var(--primary-hover);
  filter: drop-shadow(0 0 5px rgba(16,185,129,0.4));
}

.admin-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.35rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.admin-close:hover {
  background: rgba(255, 255, 255, 0.04);
  color: white;
  transform: rotate(90deg);
}

.admin-modal-body {
  padding: 2.5rem;
}

.admin-section {
  display: none;
}

.admin-section.active {
  display: block;
}

/* Login Auth Form UI */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  text-align: center;
}

.auth-form i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 10px rgba(16,185,129,0.3));
}

.auth-form h4 {
  font-size: 1.65rem;
  font-weight: 800;
  color: white;
}

.auth-form p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: -0.85rem;
}

.auth-error {
  color: #f87171;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.2);
  padding: 0.6rem;
  border-radius: 8px;
  font-size: 0.85rem;
  display: none;
  font-weight: 600;
}

/* Control Panel Actions */
.dashboard-actions {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.admin-subsection-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 0.65rem;
}

.admin-subsection-title i {
  color: var(--primary-hover);
}

.toggle-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.01);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.toggle-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.toggle-label h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

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

/* Apple styled toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.08);
  transition: .4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

input:checked + .slider {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

/* Post Detailed Modal View */
.post-detail-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  padding: 2.5rem;
}

.post-detail-modal.open {
  opacity: 1;
  pointer-events: all;
}

.post-detail-card {
  background: #050806;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 24px;
  width: 100%;
  max-width: 850px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(16, 185, 129, 0.05);
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: var(--transition-smooth);
}

.post-detail-modal.open .post-detail-card {
  transform: translateY(0) scale(1);
}

.post-detail-header {
  padding: 3.5rem 4rem 2rem;
}

.post-detail-meta {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.post-detail-title {
  font-size: 2.75rem;
  font-weight: 900;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.post-detail-body {
  padding: 2.5rem 4rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Under Maintenance Page Cover */
.maintenance-overlay {
  position: fixed;
  inset: 0;
  background: #010202;
  background-image: 
    radial-gradient(circle at center, rgba(16, 185, 129, 0.03) 0%, transparent 60%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-in-out;
  padding: 2.5rem;
  text-align: center;
}

.maintenance-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.maintenance-card {
  max-width: 640px;
  background: rgba(8, 14, 11, 0.5);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 28px;
  padding: 5rem 4rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 
    0 35px 80px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(16, 185, 129, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.maintenance-logo-container {
  width: 150px;
  height: 150px;
  background: rgba(3, 6, 5, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 
    0 0 40px rgba(16, 185, 129, 0.1),
    inset 0 0 20px rgba(16, 185, 129, 0.1);
  animation: floatLogo 6s ease-in-out infinite;
}

.maintenance-logo-container::before {
  content: '';
  position: absolute;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border-radius: 50%;
  border: 1px dashed rgba(16, 185, 129, 0.15);
  animation: spinSlow 30s linear infinite;
}

.maintenance-logo-container img {
  width: 72%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

.maintenance-badge {
  background: rgba(245, 158, 11, 0.06);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 0.45rem 1.25rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 10px rgba(245, 158, 11, 0.02);
}

.maintenance-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.25;
}

.maintenance-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.maintenance-links {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  width: 100%;
}

.maintenance-links .btn-secondary,
.maintenance-links .btn-primary {
  padding: 0.8rem 2rem;
  flex: 1;
  justify-content: center;
}

/* Floating Admin Access Trigger for Maintenance Mode */
.maintenance-admin-trigger {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.maintenance-admin-trigger.show {
  opacity: 1;
  pointer-events: all;
}

/* Custom Toast Notifications (High Tech Glass Cards) */
.toast-notification {
  border-radius: 12px !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  font-family: var(--font-heading) !important;
  letter-spacing: 0.01em;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .navbar {
    padding: 0 3rem;
  }
  .hero-h1 {
    font-size: 3.8rem;
  }
  .hero-container {
    gap: 3rem;
  }
  .hero-graphic {
    height: 420px;
  }
  .logo-asset-container {
    width: 250px;
    height: 250px;
  }
  section {
    padding: 8rem 3rem;
  }
  .founder-card {
    padding: 4rem;
    grid-template-columns: 290px 1fr;
    gap: 4rem;
  }
  .founder-img-wrapper {
    width: 290px;
    height: 340px;
  }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
    gap: 3rem;
  }
  .hero-graphic {
    order: -1;
    height: 360px;
    margin-bottom: 3rem;
  }
  .logo-asset-container {
    width: 220px;
    height: 220px;
  }
  .product-row, 
  .product-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    direction: ltr;
  }
  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 4rem 3rem;
  }
  .founder-img-wrapper {
    margin: 0 auto 3rem;
  }
  .founder-meta-grid {
    text-align: left;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .contact-info {
    text-align: center;
  }
  .contact-item {
    justify-content: center;
    text-align: left;
  }
  .social-links {
    justify-content: center;
  }
  .footer-top {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: var(--navbar-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--navbar-height));
    background: #030605;
    flex-direction: column;
    padding: 4rem 3rem;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    align-items: flex-start;
    z-index: 999;
  }
  .nav-links.open {
    left: 0;
  }
  .nav-actions {
    margin-right: 3rem;
  }
  .hero-h1 {
    font-size: 3rem;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .announcement-banner {
    padding: 0 3rem 0 1rem;
    font-size: 0.8rem;
  }
  .post-detail-header,
  .post-detail-body {
    padding: 2.5rem 2rem;
  }
  .post-detail-title {
    font-size: 2rem;
  }
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
