/* Remove YouTube Shorts — Landing & Privacy
   Brand-aligned with Sumant Studio: Poppins font, #ff533d accent, dark mode support
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body { height: 100%; }

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: background 0.3s, color 0.3s;
}

body.dark {
  background: #121212;
  color: #f0f0f0;
}

/* ============================================================================
   NAVBAR
   ============================================================================ */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  height: 56px;
  background: #ff533d;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.brand-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.site-header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.site-header nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.site-header nav a:hover,
.site-header nav a.active {
  opacity: 1;
}

#theme-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: background 0.2s;
}

#theme-btn:hover { background: rgba(255,255,255,0.2); }

/* ============================================================================
   HERO
   ============================================================================ */

main { flex: 1; }

.hero {
  text-align: center;
  padding: 3.5rem 1.25rem 3rem;
  max-width: 720px;
  margin: 0 auto;
}

.hero-logo {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(204, 0, 0, 0.15);
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hero-tagline {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 1.75rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

body.dark .hero-tagline { color: #bbb; }

.cta-primary {
  display: inline-block;
  background: #ff533d;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(255, 83, 61, 0.25);
}

.cta-primary:hover {
  background: #e14a31;
  transform: translateY(-1px);
}

.cta-primary:active { transform: translateY(0); }

.cta-primary:focus-visible {
  outline: 2px solid #3498db;
  outline-offset: 3px;
}

.hero-meta {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}

body.dark .hero-meta { color: #aaa; }

/* ============================================================================
   FEATURES GRID
   ============================================================================ */

.features {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.features h2,
.how-it-works h2,
.faq h2,
.final-cta h2 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: -0.3px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 720px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

body.dark .feature-card { background: #1e1e1e; }

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ff533d;
}

.feature-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

body.dark .feature-card p { color: #bbb; }

/* ============================================================================
   HOW IT WORKS
   ============================================================================ */

.how-it-works {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.steps li {
  display: flex;
  gap: 1rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

body.dark .steps li { background: #1e1e1e; }

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ff533d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

.steps li h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.steps li p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

body.dark .steps li p { color: #bbb; }

/* ============================================================================
   FAQ
   ============================================================================ */

.faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
  padding-left: calc(1.25rem + 12px);
}

body.dark .faq-item { background: #1e1e1e; }

.faq-item::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 3px;
  border-radius: 3px;
  background: #ff533d;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
}

body.dark .faq-item p { color: #bbb; }

.faq-item a {
  color: #ff533d;
  text-decoration: none;
  font-weight: 500;
}

.faq-item a:hover { text-decoration: underline; }

/* ============================================================================
   FINAL CTA
   ============================================================================ */

.final-cta {
  text-align: center;
  padding: 3rem 1.25rem 3.5rem;
  background: linear-gradient(135deg, #fff5f3, #ffffff);
}

body.dark .final-cta {
  background: linear-gradient(135deg, #3a2a28, #1e1e1e);
}

/* ============================================================================
   PRIVACY PAGE NARROW LAYOUT
   ============================================================================ */

.page-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

.page-narrow h1 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}

.last-updated {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 2rem;
}

body.dark .last-updated { color: #aaa; }

.page-narrow section {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

body.dark .page-narrow section { background: #1e1e1e; }

.page-narrow h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ff533d;
}

.page-narrow p,
.page-narrow li {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

body.dark .page-narrow p,
body.dark .page-narrow li { color: #bbb; }

.page-narrow ul {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.page-narrow code {
  background: #fff5f3;
  color: #ff533d;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.88rem;
}

body.dark .page-narrow code {
  background: #3a2a28;
}

.page-narrow strong { color: #333; font-weight: 600; }
body.dark .page-narrow strong { color: #f0f0f0; }

.page-narrow a {
  color: #ff533d;
  text-decoration: none;
  font-weight: 500;
}

.page-narrow a:hover { text-decoration: underline; }

/* ============================================================================
   FOOTER
   ============================================================================ */

.site-footer {
  text-align: center;
  padding: 2rem 1.25rem;
  background: #fff;
  border-top: 1px solid #eaeaea;
  font-size: 0.85rem;
  color: #888;
}

body.dark .site-footer {
  background: #1a1a1a;
  border-color: #2a2a2a;
  color: #aaa;
}

.site-footer p { margin-bottom: 0.25rem; }

.site-footer a {
  color: #ff533d;
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover { text-decoration: underline; }

.version { font-size: 0.78rem; color: #aaa; }
body.dark .version { color: #777; }