.elementor-kit-6{--e-global-color-primary:#b542c7;--e-global-color-secondary:#2c1330;--e-global-color-text:#B5B4A3;--e-global-color-accent:#121218;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* =========================
   RESET
========================= */

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

/* =========================
   GLOBAL
========================= */

body {
  font-family: 'Inter', sans-serif;
  background-color: #0B0F14;
  color: #E6EDF3;
}

/* =========================
   HERO LAYOUT
========================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 8%;
  gap: 80px;
}

.left {
  flex: 1;
}

.right {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* =========================
   STATUS BADGE
========================= */

.status-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #00FF88;
  background-color: #0E1A12;
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 30px;
}

/* =========================
   HEADINGS
========================= */

h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
}

.accent {
  color: #FF3B3B;
  text-shadow: 0 0 12px rgba(255, 59, 59, 0.6);
}

.hero-sub {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 6px;
  color: #FF3B3B;
  margin-bottom: 30px;
}

/* =========================
   PARAGRAPH
========================= */

.hero-text {
  font-size: 18px;
  line-height: 1.8;
  color: #8B949E;
  max-width: 520px;
}

/* =========================
   TERMINAL CARD
========================= */

.terminal-card {
  width: 100%;
  max-width: 520px;
  background-color: #0D1117;
  border: 1px solid #1F2937;
  border-radius: 16px;
  padding: 30px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02),
    0 20px 40px rgba(0,0,0,0.6);
  position: relative;
}

/* Terminal top circles */

.terminal-card::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: #FF5F56;
  border-radius: 50%;
  box-shadow:
    20px 0 0 #FFBD2E,
    40px 0 0 #27C93F;
}

/* Header text */

.terminal-header {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 12px;
  color: #6B7280;
  letter-spacing: 1px;
}

/* =========================
   TERMINAL CONTENT
========================= */

.terminal-content {
  margin-top: 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  line-height: 1.7;
  color: #C9D1D9;
  white-space: pre-wrap;
}

.alert {
  color: #FF4D4D;
}

.success {
  color: #00FF88;
}

/* =========================
   BUTTON
========================= */

.terminal-btn {
  margin-top: 30px;
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid #FF3B3B;
  border-radius: 8px;
  color: #FF3B3B;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.terminal-btn:hover {
  background-color: #FF3B3B;
  color: #0B0F14;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 80px 20px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-text {
    font-size: 16px;
  }
}/* End custom CSS */