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

:root {
  --bg-dark: #020617; /* Slate 950 */
  --bento-bg: rgba(255, 255, 255, 0.02);
  --bento-border: rgba(255, 255, 255, 0.06);
  --bento-hover: rgba(255, 255, 255, 0.15);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  
  --accent-1: #38bdf8; /* Sky */
  --accent-2: #818cf8; /* Indigo */
  --accent-3: #c084fc; /* Purple */
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
  padding: 3rem 1rem;
}

/* --- Advanced Aurora Background --- */
.aurora-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg-dark);
}

.aurora-bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.4;
  border-radius: 50%;
  animation: float-aurora 25s infinite ease-in-out alternate;
  will-change: transform;
}

.aurora-1 {
  width: 600px; height: 600px;
  background: var(--accent-2);
  top: -20%; left: -10%;
}

.aurora-2 {
  width: 500px; height: 500px;
  background: var(--accent-1);
  bottom: -20%; right: -10%;
  animation-delay: -5s;
}

.aurora-3 {
  width: 400px; height: 400px;
  background: var(--accent-3);
  top: 30%; left: 40%;
  animation-delay: -12s;
  opacity: 0.2;
}

@keyframes float-aurora {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 80px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(0.9); }
}

/* --- Main Layout Wrapper --- */
.layout-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- Bento Grid System --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento-box {
  background: var(--bento-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--bento-border);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.bento-box:hover {
  border-color: var(--bento-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }
.row-span-2 { grid-row: span 2; }

/* --- Hero Section (Bento Box) --- */
.hero-box {
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 2rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1.2rem;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-1);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(56, 189, 248, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

.title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -1px;
  background: linear-gradient(to right, #ffffff, var(--accent-1), var(--accent-3));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 6s linear infinite;
  word-break: break-word;
}

@keyframes gradientText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Newsletter Input */
.notify-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.notify-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--bento-border);
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.notify-input::placeholder { color: #64748b; }
.notify-input:focus { border-color: var(--accent-1); }

.notify-btn {
  background: var(--text-main);
  color: var(--bg-dark);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
}
.notify-btn:hover {
  background: var(--accent-1);
  color: white;
  transform: translateY(-2px);
}

/* --- Services Bento --- */
.bento-header {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bento-header svg { color: var(--accent-1); }

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  justify-content: center;
}

.service-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.service-icon-wrap {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(129, 140, 248, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-1);
  flex-shrink: 0;
}

.service-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}
.service-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Status Bento --- */
.status-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.status-step {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.status-step.active {
  border-color: rgba(56, 189, 248, 0.2);
  background: rgba(56, 189, 248, 0.03);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.step-title {
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-title svg { width: 16px; height: 16px; color: var(--accent-2); }
.step-badge {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}
.active .step-badge {
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-1);
}

/* --- Contact & Social Bento --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 100%;
}

.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bento-border);
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  transition: all 0.3s;
}

.contact-btn:hover {
  background: var(--bento-hover);
  transform: translateY(-3px);
}

.contact-btn svg {
  width: 28px; height: 28px;
  color: var(--accent-1);
}

.social-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.social-link {
  width: 45px; height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
  border: 1px solid var(--bento-border);
}
.social-link svg { width: 20px; height: 20px; }
.social-link:hover {
  color: #fff;
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 20px rgba(129, 140, 248, 0.4);
}

/* --- Footer --- */
.site-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  z-index: 10;
}
.site-footer a {
  color: var(--accent-1);
  text-decoration: none;
  font-weight: 500;
}
.site-footer a:hover { text-decoration: underline; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .col-span-3 { grid-column: span 2; }
}

@media (max-width: 600px) {
  body { padding: 1.5rem 1rem; }
  .layout-wrapper { gap: 1rem; }
  .bento-grid { grid-template-columns: 1fr; gap: 1rem; }
  .col-span-2, .col-span-3 { grid-column: span 1; }
  .row-span-2 { grid-row: span 1; }
  .bento-box { padding: 1.5rem; border-radius: 20px; }
  .hero-box { padding: 2.2rem 1.2rem; }
  .title { font-size: 2.2rem; margin-bottom: 0.8rem; }
  .subtitle { font-size: 1.2rem; margin-bottom: 1rem; }
  .desc { font-size: 1rem; margin-bottom: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 0.8rem; }
  .contact-btn { padding: 1.2rem; gap: 0.5rem; }
  .contact-btn svg { width: 24px; height: 24px; }
  .notify-form { flex-direction: column; }
  .service-item { gap: 0.8rem; }
  .service-icon-wrap { width: 42px; height: 42px; border-radius: 12px; }
  .service-info h4 { font-size: 1.05rem; }
  .badge { font-size: 0.75rem; padding: 0.4rem 1rem; margin-bottom: 1.2rem; }
  .bento-header { font-size: 1.15rem; margin-bottom: 1.2rem; }
}
