/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--primary-background-color);
  color: #fff;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.65;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

.hero,
.sobre,
.features-section,
.cta-section,
.stats {
  width: 100%;
}

/* ==========================================================================
   SCROLLBAR
   ========================================================================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 100px;
  background: rgba(26, 26, 26, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand {
  max-width: 110px;
  width: 100%;
  height: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--status-info-bg);
  border: 1px solid var(--status-info-border);
  color: var(--status-info-text);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--status-info-text);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary-custom,
.btn-outline-dark-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  letter-spacing: 0.01em;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  box-shadow: 0 4px 18px rgba(242, 92, 5, 0.28);
}

.btn-primary-custom:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(242, 92, 5, 0.4);
  color: #fff;
  text-decoration: none;
}

.btn-outline-dark-custom {
  background: transparent;
  border: 1px solid var(--border-medium);
  color: rgba(255, 255, 255, 0.65);
}

.btn-outline-dark-custom:hover {
  background: var(--border-medium);
  color: #fff;
  text-decoration: none;
}

.btn-header {
  padding: 8px 18px;
  font-size: 12px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  padding: 96px 48px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-eyebrow-line {
  width: 26px;
  height: 1px;
  background: var(--primary-color);
  display: inline-block;
}

.hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -1.4px;
  color: #fff;
  margin-bottom: 22px;
}

.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 430px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   DASHBOARD CARD & COMPONENTS
   ========================================================================== */
.dashboard-card {
  background: var(--card-bg);
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dash-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.dash-date {
  font-size: 11px;
  color: var(--text-faint);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.stat-item .stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.stat-item .stat-value.orange {
  color: var(--primary-color);
}

.stat-item .stat-value.green {
  color: var(--status-info-text);
}

.stat-item .stat-value.blue {
  color: var(--status-success-text);
}

.stat-item .stat-label {
  font-size: 10px;
  color: var(--text-faint);
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dash-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}

.dash-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.dash-icon.orange {
  background: rgba(242, 92, 5, 0.15);
  color: var(--primary-color);
}

.dash-icon.green {
  background: var(--status-info-bg);
  color: var(--status-info-text);
}

.dash-icon.blue {
  background: var(--status-success-bg);
  color: var(--status-success-text);
}

.dash-row-info {
  flex: 1;
  min-width: 0;
}

.dash-row-name {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-row-sub {
  font-size: 10px;
  color: var(--text-faint);
}

.status-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.status-badge.info {
  background: var(--status-info-bg);
  color: var(--status-info-text);
  border: 1px solid var(--status-info-border);
}

.status-badge.warning {
  background: var(--status-warning-bg);
  color: var(--status-warning-text);
  border: 1px solid var(--status-warning-border);
}

.status-badge.success {
  background: var(--status-success-bg);
  color: var(--status-success-text);
  border: 1px solid var(--status-success-border);
}

/* --- Mini Cards --- */
.mini-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.mini-card-tl {
  left: -38px;
  top: 56px;
  animation: float 5s ease-in-out 1s infinite;
}

.mini-card-br {
  right: -34px;
  bottom: 56px;
  animation: float 5s ease-in-out 0.5s infinite;
}

.mini-card-label {
  font-size: 10px;
  color: var(--text-faint);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mini-card-value {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}

/* ==========================================================================
   SHARED SECTION STYLES & DIVIDERS
   ========================================================================== */
.section-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0 48px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
  color: #fff;
  text-align: left;
}

.section-sub {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 0;
  text-align: left;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 48px;
}

.sobre-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 380px;
  border: 1px solid var(--border-medium);
  filter: brightness(0.85) contrast(1.05);
}

.sobre-text p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.sobre-text strong {
  color: #fff;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section {
  padding: 80px 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 28px;
  text-align: left;
  box-shadow: none;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.feature-card:hover {
  border-color: rgba(242, 92, 5, 0.22);
  transform: translateY(-3px);
}

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

.feature-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(242, 92, 5, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 72px 48px;
  background: rgba(255, 255, 255, 0.02);
}

.stat-box {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.stat-box h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box p {
  color: var(--text-faint);
  font-size: 13px;
  letter-spacing: 0.02em;
  margin: 0;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-medium);
  flex-shrink: 0;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(242, 92, 5, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-eyebrow {
  justify-content: center;
}

.cta-section .section-title {
  text-align: center;
}

.cta-section .section-sub {
  text-align: center;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-faint);
}

.footer-brand span {
  color: var(--primary-color);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-faint);
  margin: 0;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATION
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* --- Large Screens & Laptops (max-width: 992px) --- */
@media (max-width: 992px) {
  header {
    padding: 0 24px;
  }

  .nav-badge {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 96px 24px 56px;
    gap: 48px;
  }

  .hero-visual {
    display: none;
  }

  .section-divider {
    margin: 0 24px;
  }

  .sobre {
    grid-template-columns: 1fr;
    padding: 56px 24px;
  }

  .features-section {
    padding: 56px 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
    padding: 56px 24px;
    gap: 32px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .cta-section {
    padding: 56px 24px;
  }

  footer {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
  }
}

/* --- Tablets (max-width: 768px) --- */
@media (max-width: 768px) {
  header {
    height: auto;
    min-height: 80px;
    padding: 16px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand {
    max-width: 90px;
  }

  .hero {
    padding: 120px 20px 60px;
    gap: 32px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.15;
  }

  .hero-content p {
    max-width: 100%;
  }

  .sobre {
    gap: 32px;
  }

  .section-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .dashboard-card {
    max-width: 100%;
  }

  .dash-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-box {
    padding: 0;
  }

  .feature-card {
    padding: 24px;
  }
}

/* --- Smartphones (max-width: 576px) --- */
@media (max-width: 576px) {
  header {
    padding: 12px 16px;
    justify-content: center;
    text-align: center;
  }

  .nav-right {
    width: 100%;
    justify-content: center;
  }

  .btn-header {
    display: none;
  }

  .hero {
    padding: 110px 16px 50px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
    line-height: 1.15;
  }

  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-custom,
  .btn-outline-dark-custom {
    width: 100%;
    justify-content: center;
  }

  .section-divider {
    margin: 0 16px;
  }

  .sobre,
  .features-section,
  .cta-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-card {
    padding: 20px;
  }

  .stats {
    padding: 50px 16px;
  }

  .stat-box h3 {
    font-size: 2rem;
  }

  .mini-card {
    display: none;
  }

  .cta-glow {
    width: 100%;
    max-width: 400px;
  }

  footer {
    padding: 24px 16px;
  }
}

/* --- Small Mobile Devices (max-width: 360px) --- */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .btn-primary-custom,
  .btn-outline-dark-custom {
    font-size: 12px;
    padding: 12px;
  }

  .dash-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    width: 100%;
  }
}

/* --- Ultrawide Monitors (min-width: 1600px) --- */
@media (min-width: 1600px) {

  .hero,
  .sobre,
  .features-section,
  .cta-section {
    max-width: 1600px;
    margin: 0 auto;
  }
}