/* Design Tokens */
:root {
  --color-bg: #050505;
  --color-surface: rgba(255, 255, 255, 0.03);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-text: #FFFFFF;
  --color-muted: rgba(255, 255, 255, 0.6);
  --color-subtle: rgba(255, 255, 255, 0.3);
  --font-primary: 'Inter', sans-serif;
  --font-weight-light: 300;
  --font-weight-bold: 700;
  --border-radius: 16px;
  /* User screenshot shows rounded elements, diverging from strict brutalism to match the premium Framer look */
  --pill-radius: 100px;
  --letter-spacing: -1px;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-light);
  letter-spacing: var(--letter-spacing);
  line-height: 1.1;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}



/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  backdrop-filter: blur(10px);
}

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

.logo {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
}

.logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--color-muted);
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-cta {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: var(--pill-radius);
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 160px 24px 80px;
  position: relative;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: var(--pill-radius);
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.pill-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-text);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  margin-bottom: 24px;
  line-height: 1;
  max-width: 1000px;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--color-muted);
  margin-bottom: 48px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 16px 32px;
  border-radius: var(--pill-radius);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-primary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  background: transparent;
  border: 1px solid transparent;
  color: var(--color-muted);
}

.btn-secondary:hover {
  color: var(--color-text);
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-subtle);
  font-size: 12px;
  letter-spacing: 1px;
}

.scroll-indicator::before,
.scroll-indicator::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-border);
}

.arrow-down {
  width: 24px;
  height: 24px;
  color: var(--color-subtle);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* Horizontal Scroll Screenshots */
.screenshots-wrapper {
  height: 400vh;
  /* Determines how long the scroll lasts */
  position: relative;
}

.screenshots-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.screenshots-slider {
  display: flex;
  gap: 40px;
  padding: 0 50vw;
  will-change: transform;
}

.screenshot-item {
  flex: 0 0 auto;
  height: 80vh;
  aspect-ratio: 1284 / 2778;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: none;
  transition: transform 0.3s ease;
  transform: scale(0.9);
}

.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-item.active {
  transform: scale(1);
  filter: brightness(1);
}

/* Sections Base */
section.content-section {
  padding: 160px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--color-border);
}

.section-header {
  margin-bottom: 80px;
  text-align: center;
}

.section-title {
  font-size: clamp(32px, 5vw, 64px);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.features-grid.strict-grid .feature-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 32px;
  border-radius: 0;
  /* Strict brutalism */
  backdrop-filter: none;
  transition: border-color 0.3s ease;
}

.features-grid.strict-grid .feature-card:hover {
  transform: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.features-grid.strict-grid .feature-icon {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 24px;
}

.feature-title {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 500;
}

.feature-desc {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  padding: 40px;
  border-left: 2px solid var(--color-border);
  position: relative;
}

.step-number {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 24px;
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-surface);
  border-radius: var(--pill-radius);
  border: 1px solid var(--color-border);
}

.step-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.step-desc {
  color: var(--color-muted);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 48px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
}

.pricing-card.premium {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.pricing-card.premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #FFF, transparent);
}

.pricing-title {
  font-size: 24px;
  margin-bottom: 24px;
}

.pricing-list {
  list-style: none;
  margin-bottom: 48px;
  flex-grow: 1;
}

.pricing-list li {
  margin-bottom: 16px;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-list li::before {
  content: '✓';
  color: var(--color-text);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.pricing-options {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  margin-bottom: 32px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.price-item.highlight {
  color: var(--color-text);
}

.pricing-disclaimer {
  font-size: 11px;
  color: var(--color-subtle);
  line-height: 1.5;
  text-align: center;
  max-width: 800px;
  margin: 48px auto 0;
}

/* Legal Pages */
.legal-page {
  padding: 160px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 64px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 32px;
}

.legal-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.legal-header p {
  color: var(--color-muted);
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 24px;
  color: var(--color-text);
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--color-text);
}

.legal-content p {
  color: var(--color-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  color: var(--color-muted);
  margin-bottom: 24px;
  padding-left: 24px;
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 12px;
}

.legal-content a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--color-subtle);
  text-underline-offset: 4px;
}

.legal-content a:hover {
  text-decoration-color: #fff;
}

/* Footer */
footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-links a {
  font-size: 14px;
  color: var(--color-muted);
}

.footer-links a:hover {
  color: var(--color-text);
}

.footer-legal {
  color: var(--color-subtle);
  font-size: 12px;
}

.footer-legal p {
  margin-bottom: 8px;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-24 {
  margin-top: 24px;
}

.mt-48 {
  margin-top: 48px;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .features-grid,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .scroll-indicator::before,
  .scroll-indicator::after {
    width: 30px;
  }

  .screenshot-item {
    /* Full height automatically handles mobile screens */
  }
}