@font-face {
  font-family: "Rajdhani";
  src: url("./fonts/rajdhani-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("./fonts/geist-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("./fonts/geist-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("./fonts/geist-mono-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #05070a;
  --bg-deep: #030406;
  --surface: #0d131a;
  --surface-2: #090f15;
  --surface-3: #121a23;
  --border: rgba(86, 204, 242, 0.15);
  --border-hover: rgba(86, 204, 242, 0.3);
  --text: #f4f7fb;
  --text-soft: #c8d1dc;
  --muted: #8f9cab;
  --accent: #2f80ed;
  --accent-light: #56ccf2;
  --accent-deep: #1b4f91;
  --gold: #c8a75a;
  
  --font-display: "Rajdhani", "Geist", system-ui, sans-serif;
  --font-body: "Geist", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
  
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 4px;
  --max-width: 1240px;
  --gutter: clamp(16px, 4vw, 32px);
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Shell container */
.coming-soon-shell {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  isolation: isolate;
}

/* SECTION 1: Intro Logo Section */
.intro-section {
  position: relative;
  width: 100%;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--gutter);
}

.intro-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.logo-giant {
  width: min(85vw, 600px);
  height: auto;
  filter: drop-shadow(0 12px 36px rgba(47, 128, 237, 0.25));
  animation: fadeInScale 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: scale(0.95);
}

.scroll-indicator {
  position: absolute;
  bottom: clamp(24px, 6vh, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
  animation: fadeIn 1.2s ease 0.6s forwards;
  opacity: 0;
}

.scroll-indicator:hover {
  color: var(--accent-light);
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  animation: bounce 2s infinite;
}

/* SECTION 2: Details Content Section */
.details-section {
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 8vh, 96px) 0;
  position: relative;
}

/* Animations */
@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: 
    linear-gradient(rgba(86, 204, 242, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 204, 242, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,1) 30%, rgba(0,0,0,0.15) 100%);
  opacity: 0.85;
}

/* Glowing accent light spots */
.grid-bg::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 15%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.grid-bg::before {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(86, 204, 242, 0.05) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

/* Symmetrical layout container */
.main-container {
  width: min(100% - (var(--gutter) * 2), var(--max-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 64px);
}

/* Brand header */
.brand-header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-logo {
  height: clamp(64px, 9vw, 98px);
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

/* Split columns content */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}

/* Left section copy */
.copy-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  min-width: 0;
}

#page-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 5.5vw, 84px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  text-transform: uppercase;
}

#page-title .highlight {
  color: var(--accent);
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lede {
  font-size: 16.5px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 540px;
}

/* Service Tabs row */
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(9, 15, 21, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(9, 15, 21, 0.95);
}

.tab-btn.active {
  color: var(--accent-light);
  border-color: rgba(86, 204, 242, 0.4);
  background: rgba(47, 128, 237, 0.12);
  box-shadow: 0 0 16px rgba(47, 128, 237, 0.1);
}

.tab-icon {
  width: 14px;
  height: 14px;
  transition: stroke 0.25s ease;
}

/* Contact Actions buttons */
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-whatsapp {
  color: var(--text);
  background: var(--accent);
  border: 1px solid rgba(86, 204, 242, 0.25);
  box-shadow: 0 8px 24px rgba(47, 128, 237, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: #2572d7;
  box-shadow: 0 12px 32px rgba(47, 128, 237, 0.45);
}

.btn-email {
  color: var(--text-soft);
  background: rgba(9, 15, 21, 0.48);
  border: 1px solid var(--border);
}

.btn-email:hover {
  transform: translateY(-2px);
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(9, 15, 21, 0.85);
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* Right column (Large Interactive Card) */
.card-section {
  min-width: 0;
}

.interactive-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 
    0 30px 90px -20px rgba(0, 0, 0, 0.95),
    0 0 40px -10px rgba(47, 128, 237, 0.15);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.interactive-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(86, 204, 242, 0.3), transparent);
}

/* Card Header */
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(244, 247, 251, 0.08);
  padding-bottom: 18px;
}

.header-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.nav-controls {
  display: flex;
  gap: 8px;
}

.nav-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(244, 247, 251, 0.12);
  background: rgba(244, 247, 251, 0.03);
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nav-arrow:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(244, 247, 251, 0.08);
}

.nav-arrow svg {
  width: 14px;
  height: 14px;
}

/* Featured Stage containing Slides */
.featured-stage {
  position: relative;
  min-height: 240px;
}

.service-slide {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transform: scale(0.96) translateY(4px);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transform: scale(1) translateY(0);
}

.slide-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.slide-info .kicker {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.slide-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}

.slide-info .description {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Features checklist */
.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 6px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-soft);
}

.features-list li::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10" fill="%232f80ed" opacity="0.12"/><path d="m9 12 2 2 4-4" stroke="%232f80ed" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
  background-size: contain;
  flex-shrink: 0;
}

.slide-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.slide-visual svg {
  width: 100%;
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5));
}

/* Mini Cards bottom row grid */
.mini-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-top: 1px solid rgba(244, 247, 251, 0.06);
  padding-top: 24px;
}

.mini-card {
  background: rgba(244, 247, 251, 0.02);
  border: 1px solid rgba(244, 247, 251, 0.06);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-card:hover {
  background: rgba(244, 247, 251, 0.04);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.mini-card.active {
  background: rgba(47, 128, 237, 0.05);
  border-color: rgba(47, 128, 237, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.mini-card-icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: color 0.25s ease;
}

.mini-card.active .mini-card-icon {
  color: var(--accent-light);
}

.mini-card h3 {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mini-card p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

/* Progress track and bar */
.progress-track {
  width: 100%;
  height: 3px;
  background: rgba(244, 247, 251, 0.06);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  width: 33.33%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 99px;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
}

/* Footer style */
.brand-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid rgba(244, 247, 251, 0.08);
  padding-top: clamp(20px, 4vw, 36px);
  font-size: 12.5px;
  color: var(--muted);
}

.footer-left {
  display: flex;
  align-items: center;
}

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

.social-links a {
  color: var(--muted);
  transition: color 0.25s ease, transform 0.2s ease;
  display: inline-flex;
}

.social-links a:hover {
  color: var(--text);
  transform: scale(1.15);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-right {
  text-align: right;
}

/* Animation / transitions */
@keyframes pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.4; }
}

/* Responsive styles */
@media (max-width: 1024px) {
  .content-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .copy-section {
    align-items: center;
    text-align: center;
  }

  .lede {
    max-width: 100%;
  }

  .service-tabs, .contact-actions {
    justify-content: center;
  }

  .brand-footer {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-left {
    justify-content: center;
  }

  .footer-right {
    text-align: center;
  }
}

@media (max-width: 580px) {
  .service-slide {
    grid-template-columns: 1fr;
  }
  
  .slide-visual {
    order: -1;
    margin-bottom: 12px;
  }

  .mini-cards-grid {
    grid-template-columns: 1fr;
  }

  .nav-controls {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* End of stylesheet */
