﻿/* stylelint-disable */
:root {
  --gold: #d4af37;
  --gold-light: #e6c86e;
  --navy: #0b1f3a;
  --navy-dark: #08192f;
  --navy-light: #102b4e;
  --navy-hover: #13345f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--navy);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--gold-light);
  line-height: 1.6;
}

/* ===== TOP BAR ===== */
.top-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 72px 40px 30px;
  background: var(--navy-dark);
  font-size: 11px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-center {
  flex: 1;
  min-width: 220px;
  display: flex;
  justify-content: center;
}

.signal-line {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(230, 200, 110, 0.7);
  background: rgba(8, 25, 47, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.16);
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}


.top-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.live-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 10px;
}

.clock {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.dot {
  opacity: 0.6;
}

.location {
  opacity: 0.75;
}

.market-mini {
  font-size: 10px;
  opacity: 0.55;
  letter-spacing: 0.08em;
}


/* ===== TOP NAV ===== */
.top-nav {
  background: rgba(8, 25, 47, 0.96);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  padding: 18px 32px 14px;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 18px;
  background: var(--navy-light);
  color: var(--gold-light);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}

.filter-tab:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.filter-tab.active {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 140px 20px 64px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero > * {
  max-width: 720px;
}

.hero h1 {
  color: var(--gold);
  font-size: 56px;
  margin: 0;
  font-weight: 900;
  letter-spacing: 2.4px;
  line-height: 1.05;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero .subtitle {
  margin: 0;
  font-size: 18px;
  opacity: 0.85;
  font-weight: 600;
  max-width: 680px;
}

.hero .tagline {
  margin: 0;
  font-size: 14px;
  opacity: 0.65;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.btn-primary {
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.btn-secondary {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  background: rgba(8, 25, 47, 0.35);
}

.btn-ghost {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: rgba(230, 200, 110, 0.7);
  text-decoration: none;
  font-weight: 600;
  background: transparent;
}

.hero-note {
  margin: 6px 0 0;
  font-size: 12.5px;
  opacity: 0.55;
  max-width: 560px;
}

/* ===== SEARCH ===== */
.search-container {
  max-width: 660px;
  margin: 24px auto 0;
}

.search-caption {
  margin-top: 6px;
  font-size: 12.5px;
  opacity: 0.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.search-input {
  width: 100%;
  padding: 16px 22px;
  background: rgba(8, 25, 47, 0.92);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(8, 25, 47, 0.35);
}

.search-input:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
  transform: scale(1.02);
}

.search-input::placeholder {
  color: rgba(230, 200, 110, 0.5);
}


/* ===== GRID ===== */
.wrapper {
  max-width: 1400px;
  margin: auto;
  padding: 24px 20px 80px;
}

.section-title {
  font-size: 28px;
  color: var(--gold);
  margin: 40px 0 24px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.cin-box {
  background: var(--navy-light);
  color: var(--gold);
  padding: 32px 20px;
  border-radius: 16px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cin-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s;
}

.cin-box:hover::before {
  left: 100%;
}

.cin-box:hover {
  transform: translateY(-6px);
  background: var(--navy-hover);
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.cin-box a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.cin-name {
  font-size: 18px;
  margin-bottom: 12px;
}

.cin-main-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.cin-main-link:hover {
  text-decoration: underline;
}

.cin-box span {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: normal;
  opacity: 0.7;
  line-height: 1.4;
}

.cin-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cin-action {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  transition: all 0.3s ease;
}

.cin-action:hover {
  background: rgba(212, 175, 55, 0.2);
}

.pending-note {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.7;
}

.pending-cta {
  margin: 10px auto 0;
}

.cin-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.status-open {
  background: rgba(76, 175, 80, 0.2);
  color: #7CFF8B;
  border-color: rgba(76, 175, 80, 0.4);
}

.status-demo {
  background: rgba(33, 150, 243, 0.18);
  color: #7CC8FF;
  border-color: rgba(33, 150, 243, 0.35);
}

.status-soon {
  background: rgba(255, 193, 7, 0.2);
  color: #FFD56A;
  border-color: rgba(255, 193, 7, 0.4);
}

.status-pending {
  background: rgba(230, 200, 110, 0.14);
  color: #E6C86E;
  border-color: rgba(230, 200, 110, 0.35);
}

.status-paused {
  background: rgba(200, 200, 200, 0.12);
  color: #C8C8C8;
  border-color: rgba(200, 200, 200, 0.3);
}

.status-concept {
  background: rgba(156, 39, 176, 0.2);
  color: #D7A6FF;
  border-color: rgba(156, 39, 176, 0.4);
}

.status-redirect {
  background: rgba(0, 188, 212, 0.2);
  color: #7DEAFF;
  border-color: rgba(0, 188, 212, 0.35);
}

.cin-hostinger {
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 8px 24px rgba(8, 25, 47, 0.4);
}

/* ===== NEWSLETTER ===== */

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 60px 20px 40px;
  font-size: 14px;
  opacity: 0.6;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-actions {
  max-width: 640px;
  margin: 0 auto 24px;
  opacity: 0.9;
}

.footer-cta {
  display: inline-flex;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold);
  font-weight: 600;
  margin-top: 12px;
  text-decoration: none;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 24px 0;
}

.social-links a {
  color: var(--gold);
  font-size: 24px;
  transition: transform 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  transform: scale(1.2);
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .top-bar {
    padding: 48px 16px 22px;
  }

  .top-nav {
    padding: 14px 16px 10px;
  }

  .hero {
    padding: 120px 16px 60px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .search-input {
    font-size: 15px;
  }

  .search-caption {
    font-size: 12px;
  }

  .cin-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }
}

/* ===== PLATFORM CORE ===== */
.app-actions {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.app-link {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(8, 25, 47, 0.5);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.app-link:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}



.page-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

.page-hero {
  text-align: center;
  margin-bottom: 40px;
}

.page-hero h1 {
  color: var(--gold);
  font-size: 42px;
  margin-bottom: 12px;
}

.page-hero p {
  opacity: 0.8;
}

.card {
  background: var(--navy-light);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 18px;
  padding: 28px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.form-grid label {
  font-size: 13px;
  opacity: 0.8;
  display: block;
  margin-bottom: 6px;
}

.form-grid input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: var(--navy-dark);
  color: var(--gold-light);
}

.primary-btn {
  margin-top: 18px;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  cursor: pointer;
}

.secondary-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
}

.grid-2 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.metric-card {
  background: rgba(8, 25, 47, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 20px;
}

.metric-card h3 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 16px;
}

.metric-value {
  font-size: 28px;
  color: var(--gold-light);
  font-weight: 700;
}

@media (max-width: 768px) {
  .app-actions {
    width: 100%;
    justify-content: center;
  }
}



/* lint refreshed */

/* ===== PROOF ===== */
.proof {
  padding: 60px 20px 40px;
  background: rgba(8, 25, 47, 0.92);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  text-align: center;
}

.proof h2 {
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 8px;
}

.proof-subtitle {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 24px;
}

.proof-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.proof-item {
  background: var(--navy-light);
  border-radius: 16px;
  padding: 18px 16px;
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.proof-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.proof-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.7;
}

/* ===== FALLBACK LIST ===== */
.cin-fallback {
  margin-top: 30px;
  padding: 26px;
  border-radius: 18px;
  background: rgba(8, 25, 47, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.cin-fallback h2 {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 6px;
}

.cin-fallback p {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 16px;
}

.cin-fallback-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.cin-fallback-list li {
  font-size: 13px;
  opacity: 0.85;
}

.cin-fallback-list a {
  color: var(--gold);
  text-decoration: none;
}

.cin-fallback-list a:hover {
  text-decoration: underline;
}


/* lint refresh */

/* lint refresh */
