* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #26272a;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 16px;
  --primary-color: hsl(245, 59%, 50%);
  --primary-color-hover: hsl(245, 59%, 55%);
  --secondary-color: #4ecd76;
  --question-color: #cd4e63;
}

h2 {
  color: #aaa; font-size: 1rem;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: hsla(240, 6%, 12%, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 1000;
}
.logo {
  width: 32px;
  height: 32px;
  background-image: url('/marketingAssets/icon-only.png');
  background-size: 100%;
  border-radius: 8px;
  cursor: pointer;
}
.header-buttons {
  display: flex;
  gap: 0.5rem;
}
.header-btn {
  padding: 6px 12px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-size: 12px;
}
.header-btn:hover {
  background: rgba(255,255,255,0.1);
}
.primary:hover {
  background: var(--primary-color-hover) !important;
}
.primary {
  background: var(--primary-color) !important;
}
.header-btn.primary {
  background: var(--primary-color);
  border: none;
}
/* Hero Section */
.hero { 
  min-height: 100vh; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  text-align: center;
  position: relative;
  background-image: url('./marketingAssets/examplePaintings.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  cursor: pointer;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0) 0%,
    rgba(26, 26, 26, 0.3) 40%,
    rgba(26, 26, 26, 0.8) 70%,
    #1a1a1a 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 { 
  font-size: 2rem; 
  font-weight: 600;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.hero-content .subtitle { 
  font-size: 1rem; 
  margin-bottom: 3rem; 
  opacity: 0.6;
  max-width: 600px;
  line-height: 1.4;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.signature {
  font-size: 1rem;
  margin-top: 1.5rem;
  opacity: 0.6;
  text-align: center;
}

/* CTA Buttons */
.cta-buttons { 
  display: flex; 
  gap: 1.5rem; 
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 4rem 0;
}
.cta-btn { 
  height: 50px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  font-weight: 600;
}
a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}
.cta-btn:hover { 
  background: var(--primary-color-hover) !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.cta-btn.primary {
  background: var(--primary-color);
  color: white;
}
.app-store-btn {
  height: 50px;
  width: 180px;
  cursor: pointer;
  transition: all 0.2s;
}
.hover-shadow:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
}
.app-store-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.version-info {
  position: absolute;
  bottom: -4rem;
  font-size: 14px;
  opacity: 0.7;
  text-align: center;
  width: 100%;
}

/* Instagram Section */
.instagram {
  padding: 2rem 0;
  text-align: center;
}
.instagram h3 {
  font-size: 1.125rem;
  opacity: 0.8;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.instagram-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.instagram-btn {
  padding: 12px 24px;
  background: rgba(255,255,255,0.1);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
  font-size: 1rem;
  font-weight: 600;
}
.instagram-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* FAQ Specific Styles */
.main-content {
  padding: 2rem 0;
  margin-top: 60px;
}
.faq-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0.9;
  font-weight: 600;
}
.faq-item {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.faq-question {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--question-color);
}
.faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
}
.faq-answer ul {
  margin: 1rem 0;
  padding-left: 2rem;
}
.faq-answer li {
  margin: 0.5rem 0;
}
.faq-answer a {
  color: var(--secondary-color);
  text-decoration: none;
}
.faq-answer a:hover {
  text-decoration: underline;
}
.contact-section {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  margin-top: 3rem;
}
.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #4ecdc4;
}
.contact-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  margin: 0.5rem;
  transition: all 0.2s;
  font-size: 1rem;
  font-weight: 600;
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
  background: #1a1a1a;
  padding: 3rem 0;
  margin-top: 4rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.footer-link {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 1rem;
  opacity: 0.7;
  transition: opacity 0.2s;
  cursor: pointer;
}
.footer-link:hover {
  color: var(--secondary-color);
  opacity: 1;
}
