:root {
  --font-paragraphs: "IBM Plex Sans Hebrew", sans-serif;
  --font-headings: "Montserrat", sans-serif;
  --copy-text: 21px;
  --h1-size: 80px;
  --h2-size: 52px;
  --feature-title: 38px;
  --feature-small-title: 24px;
  --gradient-01: #111932;
  --gradient-02: #070b18;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --bg-primary: #0a0f1c;
  --bg-card: radial-gradient(circle farthest-corner at 50% 0%, var(--gradient-01), var(--gradient-02));
  --accent-color: #6366f1;
  --accent-hover: #4f46e5;
}

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

body {
  font-family: var(--font-paragraphs);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 600;
}

h1 {
  font-size: var(--h1-size);
  line-height: 1.1;
}

h2 {
  font-size: var(--h2-size);
  line-height: 1.2;
}

p {
  font-size: var(--copy-text);
  color: var(--text-secondary);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
}
.header .logo img {
  width: 24px;
  height: 24px;
}
.header .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.header .nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.header .nav-links a:hover {
  color: var(--text-primary);
}
.header .subscribers-btn {
  padding: 0.5rem 1rem;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-paragraphs);
  transition: background 0.3s ease;
}
.header .subscribers-btn:hover {
  background: var(--accent-hover);
}

.main-content {
  margin-top: 80px;
}

.hero {
  text-align: center;
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.hero h1 {
  margin-bottom: 2rem;
}
.hero h1 sup {
  font-size: 0.6em;
  vertical-align: super;
}
.hero .hero-text {
  font-size: var(--copy-text);
  margin-bottom: 3rem;
  color: var(--text-secondary);
}
.hero .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .cta-buttons .btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: var(--font-paragraphs);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero .cta-buttons .btn.primary {
  background: var(--text-primary);
  color: var(--bg-primary);
}
.hero .cta-buttons .btn.primary:hover {
  background: var(--text-secondary);
}
.hero .cta-buttons .btn.secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.hero .cta-buttons .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}
.hero .subtitle {
  margin-top: 2rem;
  font-size: 14px;
  color: var(--text-secondary);
}

.danger-section {
  text-align: center;
  padding: 6rem 2rem;
}
.danger-section h2 {
  margin-bottom: 2rem;
}
.danger-section .description {
  max-width: 700px;
  margin: 0 auto 4rem;
  color: var(--text-secondary);
}
.danger-section .tldr {
  font-weight: 600;
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.features-grid .feature-card {
  background-image: var(--bg-card);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.features-grid .feature-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-grid .feature-card h3 {
  font-size: var(--feature-small-title);
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.features-grid .feature-card p {
  font-size: 16px;
  color: var(--text-secondary);
}

.elite-stack {
  text-align: center;
  padding: 6rem 2rem;
}
.elite-stack h2 {
  margin-bottom: 2rem;
}
.elite-stack .description {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-secondary);
}
.elite-stack .tldr {
  font-weight: 600;
  margin-bottom: 4rem;
}

.carousel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.carousel .carousel-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}
.carousel .carousel-container::-webkit-scrollbar {
  height: 8px;
}
.carousel .carousel-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.carousel .carousel-container::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}
.carousel .carousel-card {
  flex: 0 0 400px;
  background-image: var(--bg-card);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  scroll-snap-align: start;
}
.carousel .carousel-card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel .carousel-card h3 {
  font-size: var(--feature-small-title);
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.carousel .carousel-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.carousel .carousel-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.carousel .carousel-nav button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel .carousel-nav button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.subscription {
  text-align: center;
  padding: 6rem 2rem;
  background-image: var(--bg-card);
  margin: 4rem 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.subscription h2 {
  margin-bottom: 1rem;
}
.subscription .description {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-secondary);
}
.subscription .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.subscription .cta-buttons .btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: var(--font-paragraphs);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.subscription .cta-buttons .btn.primary {
  background: var(--text-primary);
  color: var(--bg-primary);
}
.subscription .cta-buttons .btn.primary:hover {
  background: var(--text-secondary);
}
.subscription .cta-buttons .btn.secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.subscription .cta-buttons .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer {
  padding: 4rem 2rem 2rem;
}
.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}
.footer .footer-section h3 {
  font-size: 18px;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.footer .footer-section p, .footer .footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 1.8;
}
.footer .footer-section p:hover, .footer .footer-section a:hover {
  color: var(--text-primary);
}
.footer .footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 14px;
}

.signup-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: var(--bg-primary);
}

.signup-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.logo-section {
  margin-bottom: 4rem;
}
.logo-section img {
  width: 150px;
  height: 150px;
  margin-bottom: 1.5rem;
}

.brand-name {
  font-family: var(--font-headings);
  font-size: 64px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.02em;
}

.signup-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.form-container {
  background-image: var(--bg-card);
  border-radius: 16px;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.form-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.email-input {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-family: var(--font-paragraphs);
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.email-input:focus {
  outline: none;
  border-color: var(--accent-color);
}
.email-input::placeholder {
  color: var(--text-secondary);
}

.gradient-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: var(--font-paragraphs);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transition: all 0.3s ease;
}
.gradient-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
  filter: brightness(1.1);
}
.gradient-btn:active {
  transform: translateY(0);
}
.gradient-btn:disabled {
  background: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  filter: none;
}

.features-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-preview {
  text-align: left;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.feature-preview h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.feature-preview p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.social-proof {
  text-align: center;
  margin-bottom: 2rem;
}

.success-message {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #10b981;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  display: none;
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  display: none;
}

@media (max-width: 768px) {
  :root {
    --h1-size: 48px;
    --h2-size: 36px;
    --copy-text: 18px;
    --feature-title: 28px;
    --feature-small-title: 20px;
  }
  .header {
    padding: 1rem;
  }
  .header .nav-links {
    display: none;
  }
  .hero {
    padding: 4rem 1rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  .carousel-card {
    flex: 0 0 300px;
  }
  .subscription {
    margin: 4rem 1rem;
  }
  .signup-hero {
    padding: 1rem;
  }
  .logo-section {
    margin-bottom: 3rem;
  }
  .logo-section img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
  }
  .brand-name {
    font-size: 42px;
  }
  .form-container {
    padding: 2rem 1.5rem;
  }
  .email-form {
    gap: 1rem;
  }
  .features-preview {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=styles.css.map */
