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

@import url('https://cdn.jsdelivr.net/npm/@fontsource/geist-sans/variable.min.css');

body {
  font-family: 'Geist Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;
  background: #FFFFFF;
  color: #09090B;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #09090B;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #71717A;
  font-weight: 500;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #E4E4E7 0%, #F4F4F5 100%);
  padding: 4rem 0;
  border-bottom: 4px solid #09090B;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-icon {
  margin-bottom: 1rem;
}

.hero-logo {
  width: 64px;
  height: 64px;
  filter: drop-shadow(4px 4px 0px #09090B);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #09090B;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-benefits {
  margin-bottom: 2rem;
}

.hero-benefit {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #09090B;
  line-height: 1.4;
  position: relative;
  padding-left: 1.5rem;
}

.hero-benefit::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #09090B;
  font-weight: 800;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  border: 4px solid #09090B;
  border-radius: 8px;
  transition: all 0.1s ease;
  display: inline-block;
  letter-spacing: 0.5px;
}

.btn-chrome {
  background: #FFFFFF;
  color: #09090B;
  box-shadow: 4px 4px 0px #09090B;
}

.btn-chrome:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #09090B;
}

.btn-premium {
  background: #09090B;
  color: #FFFFFF;
  box-shadow: 4px 4px 0px #71717A;
}

.btn-premium:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #71717A;
}

.hero-subtext {
  font-size: 0.9rem;
  color: #71717A;
  font-weight: 500;
}

/* Demo Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.demo-image-large {
  width: 100%;
  height: auto;
  max-width: 100%;
  min-width: 600px;
  border-radius: 12px;
  border: 4px solid #09090B;
  box-shadow: 8px 8px 0px #09090B;
  transition: all 0.2s ease;
}

.demo-image-large:hover {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0px #09090B;
}



/* Video Section */
.video-section {
  padding: 5rem 0;
  background: #F4F4F5;
  border-bottom: 4px solid #09090B;
}

.video-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  border: 4px solid #09090B;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #09090B;
  overflow: hidden;
}

.demo-video {
  width: 100%;
  height: auto;
  display: block;
}



.video-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-highlight {
  font-size: 1rem;
  font-weight: 600;
  color: #09090B;
  padding: 0.75rem;
  background: #FFFFFF;
  border: 3px solid #09090B;
  border-radius: 6px;
  box-shadow: 3px 3px 0px #09090B;
}

/* Problems Section */
.problems {
  padding: 5rem 0;
  background: #FFFFFF;
  border-bottom: 4px solid #09090B;
}

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

.problem-card {
  background: #F4F4F5;
  border: 4px solid #09090B;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #09090B;
  padding: 2rem;
  transition: all 0.2s ease;
}

.problem-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #09090B;
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.problem-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #09090B;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.problem-card p {
  color: #71717A;
  line-height: 1.6;
  font-weight: 500;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background: #F4F4F5;
  border-bottom: 4px solid #09090B;
}

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

.benefit-card {
  background: #FFFFFF;
  border: 4px solid #09090B;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #09090B;
  padding: 2rem;
  transition: all 0.2s ease;
}

.benefit-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #09090B;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #09090B;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.benefit-card p {
  color: #71717A;
  line-height: 1.6;
  font-weight: 500;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background: #FFFFFF;
  border-bottom: 4px solid #09090B;
}

.pricing-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-tier {
  background: #F4F4F5;
  border: 4px solid #09090B;
  border-radius: 12px;
  box-shadow: 6px 6px 0px #09090B;
  overflow: hidden;
  transition: all 0.2s ease;
}

.pricing-tier:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #09090B;
}

.premium-tier {
  background: #FFFFFF;
  border-color: #09090B;
  position: relative;
}

.tier-header {
  background: #09090B;
  color: #FFFFFF;
  padding: 2rem;
  text-align: center;
}

.free-tier .tier-header {
  background: #71717A;
}

.tier-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.tier-price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.tier-subtitle {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.tier-features {
  padding: 2rem;
}

.features-section {
  margin-bottom: 1.5rem;
}

.features-header {
  font-size: 1rem;
  font-weight: 800;
  color: #09090B;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.tier-feature {
  padding: 0.75rem 0;
  border-bottom: 1px solid #E4E4E7;
  font-weight: 500;
  color: #71717A;
}

.tier-feature:last-child {
  border-bottom: none;
}

.tier-feature.included {
  color: #09090B;
  font-weight: 600;
}

.tier-feature.premium {
  color: #09090B;
  font-weight: 600;
}

.tier-feature.highlight {
  background: #F4F4F5;
  padding: 0.75rem;
  border-radius: 6px;
  border: 2px solid #E4E4E7;
  margin: 0.5rem 0;
}

.tier-feature.limited {
  color: #A1A1AA;
  text-decoration: line-through;
}

.tier-cta {
  padding: 2rem;
  text-align: center;
}

.btn-tier {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  border: 4px solid #09090B;
  border-radius: 8px;
  transition: all 0.1s ease;
  display: inline-block;
  letter-spacing: 0.5px;
  width: 100%;
}

.btn-free {
  background: #FFFFFF;
  color: #09090B;
  box-shadow: 4px 4px 0px #09090B;
}

.btn-free:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #09090B;
}

.btn-premium {
  background: #09090B;
  color: #FFFFFF;
  box-shadow: 4px 4px 0px #71717A;
}

.btn-premium:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #71717A;
}

.tier-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #71717A;
  font-weight: 500;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background: #F4F4F5;
  border-bottom: 4px solid #09090B;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 4px solid #09090B;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #09090B;
  padding: 2rem;
  transition: all 0.2s ease;
}

.faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #09090B;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 800;
  color: #09090B;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.faq-answer {
  color: #71717A;
  line-height: 1.6;
  font-weight: 500;
}

/* Final CTA Section */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #E4E4E7 0%, #F4F4F5 100%);
  border-bottom: 4px solid #09090B;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #09090B;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.cta-content p {
  font-size: 1.2rem;
  color: #71717A;
  margin-bottom: 2rem;
  font-weight: 500;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.cta-subtext {
  font-size: 0.9rem;
  color: #71717A;
  font-weight: 500;
}

/* Support Section */
.support {
  padding: 5rem 0;
  background: #FFFFFF;
  border-bottom: 4px solid #09090B;
}

/* Privacy/Transformation Section */
.transformation {
  padding: 5rem 0;
  background: #F4F4F0;
  border-bottom: 4px solid #09090B;
}

/* How it Works Steps */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-number {
  background: #FFFFFF;
  color: #09090B;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 4px solid #09090B;
  box-shadow: 4px 4px 0px #09090B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #09090B;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.step-content p {
  font-size: 1rem;
  color: #71717A;
  font-weight: 500;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #09090B;
  color: #FFFFFF;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-main {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
}

.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-description {
  color: #A1A1AA;
  line-height: 1.6;
  font-weight: 500;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-section a {
  display: block;
  color: #A1A1AA;
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 2px solid #71717A;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #A1A1AA;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .btn-hero {
    flex: 1;
    min-width: 200px;
  }

  .demo-image-large {
    max-width: 100%;
    min-width: unset;
    margin: 0 auto;
  }

  .video-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-comparison {
    grid-template-columns: 1fr;
  }

  .how-it-works {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step {
    flex-direction: column;
    text-align: center;
    margin-top: 2rem;
  }

  .step-number {
    margin-bottom: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn-hero {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .problem-card,
  .benefit-card,
  .faq-item {
    padding: 1.5rem;
  }

  .tier-header,
  .tier-features,
  .tier-cta {
    padding: 1.5rem;
  }
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.demo-toggle.active {
  animation: pulse 2s infinite;
}

/* Touch and Accessibility */
.btn-hero:focus,
.btn-tier:focus {
  outline: 4px solid #A1A1AA;
  outline-offset: 2px;
}

.faq-item:focus-within {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #09090B;
}

/* Blog Styles */
.blog-nav {
  background: #FFFFFF;
  border-bottom: 1px solid #E4E4E7;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #09090B;
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #71717A;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #09090B;
}

.article-header {
  background: linear-gradient(135deg, #E4E4E7 0%, #F4F4F5 100%);
  padding: 4rem 0;
  text-align: center;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.article-category,
.article-date,
.article-read-time {
  background: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #71717A;
  border: 2px solid #09090B;
}

.article-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #09090B;
  letter-spacing: -1px;
}

.article-subtitle {
  font-size: 1.3rem;
  color: #71717A;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

.article-content {
  padding: 4rem 0;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-body h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 3rem 0 1.5rem 0;
  color: #09090B;
  letter-spacing: -0.5px;
}

.article-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
  color: #09090B;
}

.article-body p {
  margin-bottom: 1.5rem;
  color: #27272A;
}

.article-body ul,
.article-body ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 0.5rem;
  color: #27272A;
}

.article-body strong {
  font-weight: 700;
  color: #09090B;
}

.article-cta {
  background: linear-gradient(135deg, #E4E4E7 0%, #F4F4F5 100%);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
  border: 3px solid #09090B;
}

.article-cta h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #09090B;
}

.article-cta p {
  font-size: 1.1rem;
  color: #71717A;
  margin-bottom: 2rem;
}

.article-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.related-articles {
  background: #F4F4F5;
  padding: 4rem 0;
  margin-top: 4rem;
}

.related-articles h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: #09090B;
  text-transform: uppercase;
}

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

.related-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  border: 3px solid #09090B;
  transition: transform 0.2s ease;
}

.related-card:hover {
  transform: translateY(-2px);
}

.related-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.related-card h3 a {
  text-decoration: none;
  color: #09090B;
}

.related-card h3 a:hover {
  text-decoration: underline;
}

.related-card p {
  color: #71717A;
  line-height: 1.6;
}

/* Blog Preview Section (Main Landing Page) */
.blog-preview {
  background: #F4F4F5;
  padding: 4rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  border: 3px solid #09090B;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.blog-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #09090B;
}

.blog-card.featured {
  border-color: #4285F4;
}

.blog-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: #4285F4;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card h3 a {
  text-decoration: none;
  color: #09090B;
  transition: color 0.2s ease;
}

.blog-card h3 a:hover {
  color: #4285F4;
}

.blog-excerpt {
  color: #71717A;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.read-time,
.blog-category {
  background: #E4E4E7;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #71717A;
  border: 1px solid #09090B;
}

.blog-category {
  background: #4285F4;
  color: #FFFFFF;
  border-color: #4285F4;
}

.blog-cta-section {
  text-align: center;
}

.btn-blog-more {
  display: inline-block;
  background: #09090B;
  color: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border: 3px solid #09090B;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-blog-more:hover {
  background: #FFFFFF;
  color: #09090B;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0px #09090B;
}

/* Blog Mobile Styles */
@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .article-title {
    font-size: 2rem;
  }

  .article-subtitle {
    font-size: 1.1rem;
  }

  .article-meta {
    flex-direction: column;
    align-items: center;
  }

  .article-buttons {
    flex-direction: column;
    align-items: center;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-meta {
    justify-content: center;
  }
}
