/* ==========================================================================
   CS DESIGN & BUILD - CLEAN MINIMAL LANDING PAGE (csdesignbuild.in)
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-main: #0b0c0e;
  --bg-card: rgba(18, 20, 26, 0.78);
  --bg-subtle: rgba(25, 28, 36, 0.6);
  --bg-hover: rgba(32, 36, 47, 0.85);

  --accent-gold: #d5ab6f;
  --accent-gold-light: #f0d8b4;
  --accent-gold-dark: #b58c50;
  --accent-glow: rgba(213, 171, 111, 0.12);

  --whatsapp-color: #25d366;
  --whatsapp-hover: #20bd5a;

  --text-primary: #ffffff;
  --text-secondary: #9da0ae;
  --text-muted: #6b6e7c;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(213, 171, 111, 0.3);

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* Background Grids & Ambient Lighting */
.blueprint-lines {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow {
  position: fixed;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 90vw);
  height: 500px;
  background: radial-gradient(circle, rgba(213, 171, 111, 0.09) 0%, rgba(11, 12, 14, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Layout Wrapper */
.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 20px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

/* Header */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-symbol svg {
  width: 38px;
  height: 38px;
  display: block;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
}

.brand-domain {
  font-size: 12px;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
}

/* Main Content Card */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.launch-card {
  width: 100%;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: border-color var(--transition);
}

.launch-card:hover {
  border-color: rgba(213, 171, 111, 0.25);
}

/* Status Pill */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(213, 171, 111, 0.08);
  border: 1px solid rgba(213, 171, 111, 0.25);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--accent-gold-light);
  margin-bottom: 24px;
}

.status-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.85); }
}

/* Title & Description */
.main-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5.5vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
  color: #ffffff;
}

.title-gradient {
  background: linear-gradient(135deg, #ffffff 15%, var(--accent-gold) 70%, var(--accent-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-description {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 30px;
}

/* Services Pill Bar */
.services-wrapper {
  margin-bottom: 34px;
  padding-top: 14px;
}

.services-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.services-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pill {
  font-size: 13px;
  font-weight: 500;
  color: #cfd2dc;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}

.pill:hover {
  border-color: var(--border-gold);
  color: #ffffff;
  background: rgba(35, 40, 52, 0.7);
  transform: translateY(-1px);
}

/* Contact Box */
.contact-box {
  background: rgba(14, 16, 21, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  max-width: 680px;
  margin: 0 auto;
}

.contact-box-header {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  transition: all var(--transition);
}

.contact-item:hover {
  background: var(--bg-hover);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-item.full-width {
  grid-column: span 2;
}

.contact-action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  text-decoration: none;
  color: inherit;
  padding: 6px 4px;
  text-align: left;
}

.contact-action-btn .icon {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

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

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

.contact-text .value {
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
}

/* WhatsApp button styling */
.whatsapp-btn .icon {
  color: var(--whatsapp-color);
}

.whatsapp-btn:hover .value {
  color: var(--whatsapp-color);
}

/* Copy Button */
.btn-copy {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.btn-copy svg {
  width: 15px;
  height: 15px;
}

.btn-copy:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-subtle);
}

/* Footer */
.footer {
  text-align: center;
  padding: 16px 0 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer a {
  color: var(--accent-gold);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1d212b;
  border: 1px solid var(--accent-gold);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28), opacity 0.2s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .page-wrapper {
    padding: 16px 14px;
  }

  .launch-card {
    padding: 32px 20px;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .contact-item.full-width {
    grid-column: span 1;
  }

  .pill {
    font-size: 12px;
    padding: 5px 11px;
  }
}
