/* Base styles */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", Helvetica, Arial, sans-serif;
  color: #2c3e50;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  line-height: 1.7;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
header.hero {
  background: linear-gradient(120deg, #e0f4ff 0%, #c9e7ff 45%, #ffe9d2 100%);
  color: #0f172a;
  padding: 80px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

header.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}
header.hero .content {
  flex: 1 1 50%;
  max-width: 600px;
  position: relative;
  z-index: 1;
  margin-left: 40px;
}
header.hero h1 {
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header.hero p {
  font-size: 1.35rem;
  margin: 0;
  max-width: 520px;
  opacity: 0.95;
  font-weight: 400;
}
header.hero .content p:first-of-type {
  margin-top: 46px;
}
header.hero .content p + p {
  margin-top: 24px;
}
.download-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 36px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}
.download-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.download-prompt {
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
}
.download-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.download-icon-link {
  display: inline-flex;
  border-radius: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.download-icon-link:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.download-icon {
  width: 92px;
  height: 92px;
  flex-shrink: 0;
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  margin: 6px 0;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
  padding: 6px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.download-copy h3 {
  margin: 6px 0 8px 0;
  font-size: 1.35rem;
  color: #0f172a;
}
.download-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: rgba(15, 23, 42, 0.65);
}
.download-description {
  margin: 0 0 14px 0;
  color: rgba(51, 65, 85, 0.9);
  font-size: 1.05rem;
}
.download-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.download-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #56ccf2 0%, #7f7eff 50%, #ff6fb1 100%);
  color: #0b1026;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.download-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}
.download-meta {
  color: rgba(51, 65, 85, 0.9);
  font-weight: 500;
}
header.hero .hero-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Activity Demo Styling */
.activity-demo {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 750px;
  width: 100%;
}

.demo-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.demo-header h3 {
  color: #4a5568;
  margin: 0 0 8px 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.demo-date {
  color: #718096;
  font-size: 1.1rem;
  font-weight: 500;
}

.demo-logs {
  margin-bottom: 20px;
}

.demo-log-entry {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
}

.demo-log-entry:last-child {
  border-bottom: none;
}

.demo-time {
  color: #667eea;
  font-weight: 600;
  min-width: 45px;
  margin-right: 12px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.95rem;
}

.demo-action {
  color: #2d3748;
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.5;
}

.demo-summary {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.demo-summary h4 {
  color: #4a5568;
  margin: 0 0 12px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.summary-stats {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-label {
  display: block;
  color: #718096;
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.stat-value {
  display: block;
  color: #667eea;
  font-weight: 600;
  font-size: 0.9rem;
}

.demo-insights {
  background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
  border-radius: 12px;
  padding: 16px;
  border-left: 4px solid #48bb78;
}

.demo-insights h4 {
  color: #4a5568;
  margin: 0 0 12px 0;
  font-size: 1.35rem;
  font-weight: 600;
}

.demo-insights ul {
  margin: 0;
  padding-left: 16px;
}

.demo-insights li {
  color: #2d3748;
  font-size: 1.05rem;
  margin-bottom: 6px;
  line-height: 1.6;
}

.demo-insights li:last-child {
  margin-bottom: 0;
}
main {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 60px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #4a5568;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section h2::before {
  content: "✨";
  font-size: 1.5rem;
}
.section p {
  margin-top: 0;
  font-size: 1.1rem;
  color: #2d3748;
}

.prominent-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  color: #4a5568;
  margin: 24px 0;
  margin-left: 120px;
  padding: 24px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 16px;
  border-left: 4px solid #667eea;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.features ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 20px;
}
.features li {
  margin-bottom: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
}
.features li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.features li::before {
  content: "🎯";
  margin-right: 12px;
  font-size: 1.2rem;
}
.form-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(102, 126, 234, 0.1);
}
.form-container label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #4a5568;
  font-size: 1.1rem;
}
.form-container input,
.form-container textarea {
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}
.form-container input:focus,
.form-container textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  background: #ffffff;
}
.form-container button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
  width: 100%;
}
.form-container button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}
/* Logs example section */
.logs-container {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.log-entry {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.log-entry:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.log-time {
  flex: 0 0 120px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  margin-right: 20px;
  padding-top: 2px;
}

.log-content {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.log-content strong {
  color: #0a1931;
  font-weight: 600;
}

.logs-note {
  font-style: italic;
  color: #666;
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}
.feedback-section h2,
.feedback-subtitle {
  text-align: center;
}
.feedback-section h2 {
  justify-content: center;
}
.feedback-section h2::before {
  content: none;
}

/* Built with Privacy Section */
.built-with-privacy {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 4px solid #48bb78;
}

.built-with-privacy h2 {
  color: #2d3748;
  margin-bottom: 20px;
}

.built-with-privacy p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 16px;
}

.built-with-privacy p:last-child {
  margin-bottom: 0;
  font-weight: 500;
}

/* Privacy Screenshot Section */
.privacy-screenshot {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.pii-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.pii-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  color: #2d3748;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: transform 0.2s ease;
}

.pii-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.screenshot-demo {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid rgba(102, 126, 234, 0.2);
}

.screenshot-demo h3 {
  color: #4a5568;
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-align: center;
}

.screenshot-description {
  text-align: center;
  color: #4a5568;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.screenshot-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(102, 126, 234, 0.2);
}

.redacted-screenshot {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
  background: #f8f9fa;
  min-height: 400px;
  object-fit: contain;
}

.screenshot-caption {
  text-align: center;
  margin-top: 16px;
  color: #4a5568;
  font-style: italic;
  font-size: 0.95rem;
}

/* Discord community section */
.discord-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 50px 30px;
  border-radius: 20px;
  margin: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.discord-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="discord-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23discord-pattern)"/></svg>');
  opacity: 0.2;
}

.discord-section h2 {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.discord-section h2::before {
  content: "🎮";
}

.discord-section p {
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
}

.discord-invite {
  text-align: center;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.discord-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #87cefa;
  color: white;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(135, 206, 250, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  text-align: center;
  min-width: 280px;
}

.discord-button:hover {
  background: #6bb6ff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(135, 206, 250, 0.6);
  border-color: rgba(255, 255, 255, 0.6);
}

.discord-icon {
  font-size: 1.3rem;
}

.discord-note {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* Discord page specific styles */
.discord-logo {
  font-size: 4rem;
  text-align: center;
  margin: 20px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.benefit-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.benefit-card h3 {
  color: #0a1931;
  margin-bottom: 10px;
}

.discord-join {
  background-color: #f0f8ff;
  padding: 40px 20px;
  border-radius: 12px;
  margin: 40px 0;
  text-align: center;
}

.expectations {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.expectation-item {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

.expectation-item:last-child {
  border-bottom: none;
}

.expectation-item strong {
  color: #5865f2;
  font-weight: 600;
}

footer {
  background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
  font-size: 1rem;
  margin-top: 60px;
}

@media (max-width: 768px) {
  header.hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 30px;
  }
  header.hero .content,
  header.hero .hero-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
  header.hero .content {
    margin-left: 0;
  }
  header.hero .hero-image {
    margin-top: 30px;
  }
  .download-cta {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .download-button {
    width: 100%;
    justify-content: center;
  }
  .download-meta {
    width: 100%;
    text-align: center;
  }

  main {
    padding: 60px 30px;
  }

  .prominent-text {
    margin-left: 20px;
  }

  .activity-demo {
    max-width: 100%;
    padding: 20px;
  }

  .summary-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .stat:last-child {
    border-bottom: none;
  }

  .stat-label,
  .stat-value {
    display: inline;
  }

  .pii-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .screenshot-container {
    padding: 15px;
  }

  .redacted-screenshot {
    min-height: 250px;
  }

  .log-entry {
    flex-direction: column;
  }

  .log-time {
    flex: none;
    margin-right: 0;
    margin-bottom: 8px;
    font-size: 0.85rem;
  }

  .logs-container {
    padding: 15px;
    margin: 15px 0;
  }
}
