/* ==========================================================================
   KNOCKAT.CO.ZA - COMING SOON LAUNCH PAGE STYLESHEET
   Aesthetics: Ultra-Clean, High-Converting Light Theme Matching Main Website
   ========================================================================== */

:root {
  --bg-body: #f8fafc;
  --bg-gradient: linear-gradient(180deg, #f0f7fc 0%, #e2effa 100%);
  --color-primary: #0284c7;
  --color-primary-dark: #0369a1;
  --color-emerald: #10b981;
  --color-gold: #f59e0b;
  --color-purple: #8b5cf6;
  --color-text-title: #0f172a;
  --color-text-body: #334155;
  --color-text-muted: #64748b;
  --bg-card: #ffffff;
  --border-card: rgba(2, 132, 199, 0.16);
  --border-subtle: #e2e8f0;
  --shadow-card: 0 16px 40px -8px rgba(2, 132, 199, 0.1), 0 2px 6px rgba(0, 0, 0, 0.04);
  --font-heading: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

body {
  background: var(--bg-gradient);
  color: var(--color-text-body);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Header */
.cs-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.cs-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cs-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 900;
  color: #0284c7;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-tld {
  color: #0369a1;
}

.brand-sub {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-sponsor-login {
  background: #f0f9ff;
  border: 1px solid rgba(2, 132, 199, 0.25);
  color: #0284c7;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 9999px;
  transition: all 0.2s;
}

.btn-sponsor-login:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

/* Main Container */
.cs-main {
  max-width: 860px;
  margin: 36px auto 50px auto;
  padding: 0 20px;
  text-align: center;
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid rgba(2, 132, 199, 0.25);
  color: #0284c7;
  padding: 6px 18px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0284c7;
  box-shadow: 0 0 8px #0284c7;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.cs-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  color: var(--color-text-title);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cs-title .text-gradient {
  background: linear-gradient(135deg, #0284c7 0%, #6366f1 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs-subtitle {
  font-size: 16.5px;
  color: var(--color-text-body);
  max-width: 720px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

/* Countdown Timer */
.countdown-box {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.countdown-unit {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 16px 20px;
  min-width: 95px;
  box-shadow: var(--shadow-card);
}

.countdown-num {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  color: #0284c7;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.countdown-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Waitlist Card */
.waitlist-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: var(--shadow-card);
  max-width: 620px;
  margin: 0 auto 36px auto;
}

.waitlist-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text-title);
  margin-bottom: 6px;
}

.waitlist-card p {
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.waitlist-form {
  display: flex;
  gap: 10px;
}

.waitlist-input {
  flex: 1;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 13px 16px;
  color: #0f172a;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  transition: all 0.2s;
}

.waitlist-input:focus {
  border-color: #0284c7;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.btn-waitlist-submit {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.btn-waitlist-submit:hover {
  background: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.45);
}

.waitlist-alert {
  font-size: 12.5px;
  font-weight: 700;
  color: #10b981;
  margin-top: 12px;
  display: none;
}

/* 3 Core Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
  margin-bottom: 28px;
}

.highlight-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.highlight-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: inline-block;
}

.highlight-item h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text-title);
  margin-bottom: 4px;
}

.highlight-item p {
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.45;
}

/* Sponsor Pitch Strip */
.sponsor-strip {
  background: #ffffff;
  border: 1.5px solid var(--border-card);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 16px;
  box-shadow: var(--shadow-card);
}

.sponsor-strip strong {
  font-size: 14.5px;
  color: var(--color-text-title);
  display: block;
  margin-bottom: 2px;
}

.sponsor-strip p {
  font-size: 12.5px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.btn-sponsor-cta {
  background: #0284c7;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 10px;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.btn-sponsor-cta:hover {
  background: #0369a1;
  transform: translateY(-1px);
}

/* Footer */
.cs-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  padding: 18px 20px;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .cs-title {
    font-size: 30px;
  }
  .countdown-box {
    gap: 8px;
  }
  .countdown-unit {
    min-width: 65px;
    padding: 10px;
  }
  .countdown-num {
    font-size: 26px;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .waitlist-form {
    flex-direction: column;
  }
  .sponsor-strip {
    flex-direction: column;
    text-align: center;
  }
}
