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

:root {
  --bg-dark: #070913;
  --bg-gradient: radial-gradient(circle at top left, #121533, #070913);
  --primary: #00e5ff;
  --primary-glow: rgba(0, 229, 255, 0.5);
  --secondary: #ff007f;
  --secondary-glow: rgba(255, 0, 127, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  --text-main: #ffffff;
  --text-muted: #a0a5b5;
  --card-bg: linear-gradient(145deg, rgba(20, 25, 45, 0.6), rgba(10, 15, 30, 0.4));
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  background-image: var(--bg-gradient);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
}

.glass-panel {
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

h1 { 
    font-size: clamp(3rem, 6vw, 4.5rem); 
    font-weight: 800; 
    line-height: 1.1; 
    margin-bottom: 1.5rem; 
    background: linear-gradient(135deg, #fff 0%, #a0a5b5 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1.5rem; }
h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 1rem; color: #fff; }
p { color: var(--text-muted); line-height: 1.7; font-size: 1.15rem; margin-bottom: 1.5rem; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--primary), #0099ff);
  color: #000;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 25px rgba(0, 153, 255, 0.5);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 10; }

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90vh;
  gap: 60px;
  padding: 4rem 0;
  flex-wrap: wrap;
}

.hero-content { flex: 1; min-width: 320px; }
.hero-visuals { 
    flex: 1.2; 
    min-width: 320px; 
    position: relative;
    border-radius: 24px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(0,229,255,0.2) 0%, rgba(255,0,127,0.2) 100%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Beautiful Clean Uniform Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 4rem 0;
}

.bento-item {
  background: var(--card-bg);
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
}

.bento-item:hover {
  border-color: rgba(0,229,255,0.3);
  transform: translateY(-5px);
}

.bento-item p {
    font-size: 1.05rem;
    margin-bottom: 0;
    flex-grow: 1;
}

.bento-wide { grid-column: span 2; }
.bento-normal { grid-column: span 1; }

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 2; }
  .bento-normal { grid-column: span 1; }
}

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide, .bento-normal { grid-column: span 1; }
  .hero-section { flex-direction: column; text-align: center; padding-top: 2rem;}
  .hero-content { align-items: center; display: flex; flex-direction: column; }
}

/* Local Image Placeholder */
.banner-placeholder {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 21/9;
    border-radius: 24px;
    margin: 3rem auto 2rem auto;
    background: linear-gradient(145deg, rgba(20, 25, 45, 0.8), rgba(0, 0, 0, 0.4));
    border: 2px dashed rgba(0, 229, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.banner-placeholder img.real-banner {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 24px;
    z-index: 5;
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 229, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 229, 255, 0.2);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}
.brand-logo { 
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem; 
    font-weight: 800; 
    color: #fff; 
    text-decoration: none; 
    display: flex; 
    align-items:center; 
    gap: 12px;
    letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; font-weight: 500; }
.nav-links a:hover { color: #fff; }

footer {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--glass-border);
  margin-top: 6rem;
  color: var(--text-muted);
}