/* Color Palette Variables derived from Show Stop Logo */
:root {
  --color-pink: #e026a5;
  --color-purple: #7c3aed;
  --color-teal: #00c9a7;
  --gradient-main: linear-gradient(135deg, #e026a5 0%, #7c3aed 50%, #00c9a7 100%);
  --gradient-text: linear-gradient(90deg, #e026a5, #00c9a7);
  --bg-dark: #0a0a0c;
  --bg-card: #121216;
  --bg-light: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #94a3b8;
  --border-dark: #22222e;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
  color: #0f172a;
}

/* Header & Nav */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
}

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

.nav-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}


/* Buttons */
.btn {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-main);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(224, 38, 165, 0.3);
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 201, 167, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid var(--color-teal);
}

.btn-secondary:hover {
  background: rgba(0, 201, 167, 0.1);
  border-color: var(--color-pink);
  color: #ffffff;
}

.btn-large {
  padding: 0.85rem 1.8rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  margin-top: 1rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 1.5rem 5rem 1.5rem;
  background-color: var(--bg-dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-brand {
  margin-bottom: 1.5rem;
}

.hero-logo {
  max-width: 380px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(224, 38, 165, 0.2);}

.tagline {
  font-size: 1.35rem;
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  color: #e2e8f0;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

/* Features Section */
.features {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.features h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 3rem;
  background: var(--gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.card {
  background-color: #ffffff;
  padding: 2.2rem;
  border-radius: 14px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--color-pink);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  color: var(--color-purple);
}

.card p {
  color: #475569;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: var(--text-muted);
  padding: 3.5rem 1.5rem 1.5rem 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-dark);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}


.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 0.75rem;
  object-fit: contain;}

.footer-info p {
  color: var(--text-muted);
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.footer-contact h3 {
  color: #ffffff;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.footer-contact a {
  color: var(--color-teal);
  text-decoration: none;
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--color-pink);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
  text-align: center;
  font-size: 0.875rem;
}

/* Modal Window */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  width: 90%;
  max-width: 480px;
  position: relative;
  border-top: 4px solid var(--color-pink);
}

.modal-content h2 {
  color: var(--bg-dark);
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.75rem;
  cursor: pointer;
  color: #64748b;
}

.close-btn:hover {
  color: var(--color-pink);
}

.modal form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.modal label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #334155;
}

.modal input, .modal textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.modal input:focus, .modal textarea:focus {
  outline: none;
  border-color: var(--color-purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}