:root {
  --sl-bg: #060606;
  --sl-bg-card: #0e0e0e;
  --sl-bg-card-2: #151515;
  --sl-border: #1a1a1a;
  --sl-border-2: #252525;
  --sl-gray: #848a94;
  --sl-gray-light: #b0b6c0;
  --sl-green: #16a34a;
  --sl-green-light: #86efac;
  --sl-green-dark: #059669;
  --sl-text: #f0f2f5;
  --sl-hover: #ffffff08;
  --sl-glass: #ffffff0d;
  --sl-glass-border: #ffffff1a;
  --sl-header-bg: #060606e6;
  --sl-grad-1: #16a34a1f;
  --sl-grad-2: #16a34a0f;
}

[data-mode="light"] {
  --sl-bg: #f7f8fa;
  --sl-bg-card: #fff;
  --sl-bg-card-2: #f0f1f3;
  --sl-border: #e2e4e8;
  --sl-border-2: #d1d5db;
  --sl-gray: #5c6370;
  --sl-gray-light: #6b7280;
  --sl-green: #16a34a;
  --sl-green-light: #16a34a;
  --sl-green-dark: #059669;
  --sl-text: #1a1d23;
  --sl-hover: #00000008;
  --sl-glass: #fffc;
  --sl-glass-border: #0000001a;
  --sl-header-bg: #f7f8faeb;
  --sl-grad-1: #16a34a0f;
  --sl-grad-2: #16a34a08;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--sl-bg);
  color: var(--sl-text);
  font-family: DM Sans, sans-serif;
  transition: background .25s, color .25s;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: .3;
  }

  50% {
    opacity: 1;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.fade-up {
  opacity: 0;
  animation: .8s forwards fadeUp;
}

.delay-1 {
  animation-delay: .2s;
}

.delay-2 {
  animation-delay: .4s;
}

.delay-3 {
  animation-delay: .6s;
}

.delay-4 {
  animation-delay: .8s;
}

.delay-5 {
  animation-delay: 1.2s;
}

.grain-overlay {
  pointer-events: none;
  z-index: 1000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  position: fixed;
  inset: 0;
}

.bg-gradient {
  z-index: -1;
  background: radial-gradient(ellipse at 20% 20%, var(--sl-grad-1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, var(--sl-grad-2) 0%, transparent 50%),
    var(--sl-bg);
  transition: background .25s;
  position: fixed;
  inset: 0;
}

.site-nav {
  z-index: 100;
  background: var(--sl-glass);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--sl-glass-border);
  border-radius: 100px;
  align-items: center;
  gap: 24px;
  max-width: 95vw;
  padding: 10px 28px;
  display: flex;
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo {
  color: var(--sl-green-light);
  letter-spacing: -.01em;
  white-space: nowrap;
  font-family: Playfair Display, serif;
  font-size: 1.3rem;
  font-weight: 900;
}

.nav-right, .nav-links {
  align-items: center;
  gap: 28px;
  display: flex;
}

.nav-links a {
  color: var(--sl-gray-light);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 500;
  transition: color .2s;
}

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

.nav-login {
  background: var(--sl-green);
  white-space: nowrap;
  border-radius: 100px;
  padding: 10px 24px;
  font-size: .82rem;
  font-weight: 600;
  transition: all .2s;
  color: #fff !important;
}

.nav-login:hover {
  background: var(--sl-green-dark);
}

.hero {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 120px 40px 80px;
  display: flex;
  position: relative;
}

.hero-glow {
  background: radial-gradient(ellipse at 50% 30%, var(--sl-grad-1) 0%, transparent 60%);
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.hero-eyebrow {
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sl-green);
  margin-bottom: 20px;
  font-size: .72rem;
  font-weight: 600;
}

.hero-h1 {
  letter-spacing: -.03em;
  color: var(--sl-text);
  margin-bottom: 28px;
  font-family: Playfair Display, serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: .95;
}

.hero-h1 em {
  color: var(--sl-green-light);
  font-style: italic;
}

.hero-subtitle {
  color: var(--sl-gray-light);
  max-width: 560px;
  margin-bottom: 44px;
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.7;
}

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

.btn-primary {
  background: var(--sl-green);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 100px;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--sl-green-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--sl-text);
  border: 1px solid var(--sl-border);
  cursor: pointer;
  background: none;
  border-radius: 100px;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 500;
  transition: all .2s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--sl-border-2);
  transform: translateY(-1px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  background: linear-gradient(to bottom, var(--sl-green), transparent);
  width: 1px;
  height: 60px;
  animation: 2s infinite scrollPulse;
}

.marquee-wrap {
  border-top: 1px solid var(--sl-border);
  border-bottom: 1px solid var(--sl-border);
  white-space: nowrap;
  background: var(--sl-bg);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track {
  gap: 48px;
  animation: 30s linear infinite marquee;
  display: inline-flex;
}

.marquee-item {
  align-items: center;
  gap: 48px;
  display: inline-flex;
}

.marquee-text {
  color: var(--sl-gray-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .9rem;
  font-weight: 700;
}

.marquee-dot {
  color: var(--sl-green);
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 40px;
}

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

.section-label {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sl-green);
  margin-bottom: 16px;
  font-size: .72rem;
  font-weight: 600;
}

.section-title {
  letter-spacing: -.02em;
  color: var(--sl-text);
  margin-bottom: 20px;
  font-family: Playfair Display, serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
}

.section-desc {
  color: var(--sl-gray-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
}

.feature-card {
  background: var(--sl-bg-card);
  border: 1px solid var(--sl-border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color .2s;
}

.feature-card:hover {
  border-color: var(--sl-border-2);
}

.feature-num {
  letter-spacing: .12em;
  color: var(--sl-green);
  margin-bottom: 16px;
  font-size: .72rem;
  font-weight: 700;
}

.feature-title {
  color: var(--sl-text);
  margin-bottom: 12px;
  font-size: 1.05rem;
  font-weight: 600;
}

.feature-desc {
  color: var(--sl-gray-light);
  font-size: .9rem;
  line-height: 1.65;
}

.mock-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}

.mock-row {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  display: grid;
}

.mock-row:last-child {
  margin-bottom: 0;
}

.mock-screen {
  background: var(--sl-bg-card);
  border: 1px solid var(--sl-border);
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  max-height: 500px;
  display: flex;
}

.mock-screen-label {
  color: var(--sl-gray);
  font-size: .8rem;
  font-weight: 500;
}

.mock-content .section-label {
  text-align: left;
}

.mock-title {
  letter-spacing: -.02em;
  color: var(--sl-text);
  margin-bottom: 20px;
  font-family: Playfair Display, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
}

.mock-title em {
  color: var(--sl-green-light);
  font-style: italic;
}

.mock-body {
  color: var(--sl-gray-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.mock-bullets {
  flex-direction: column;
  gap: 10px;
  list-style: none;
  display: flex;
}

.mock-bullets li {
  color: var(--sl-gray-light);
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  display: flex;
}

.bullet-check {
  color: var(--sl-green);
  flex-shrink: 0;
}

.recap-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
}

.recap-card {
  background: var(--sl-bg-card);
  border: 1px solid var(--sl-border);
  border-radius: 16px;
  padding: 28px 24px;
}

.recap-style {
  color: var(--sl-green-light);
  margin-bottom: 16px;
  font-size: .8rem;
  font-weight: 600;
}

.recap-quote {
  color: var(--sl-gray-light);
  font-size: .92rem;
  font-style: italic;
  line-height: 1.7;
}

.events-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  display: grid;
}

.event-card {
  background: var(--sl-bg-card);
  border: 1px solid var(--sl-border);
  border-left: 3px solid var(--sl-green);
  border-radius: 16px;
  padding: 32px 28px;
}

.event-card h4 {
  color: var(--sl-text);
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.event-card p {
  color: var(--sl-gray-light);
  line-height: 1.65;
}

.pricing-toggle-wrap {
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  display: flex;
}

.billing-toggle {
  background: var(--sl-bg-card);
  border: 1px solid var(--sl-border);
  border-radius: 100px;
  gap: 4px;
  padding: 4px;
  display: flex;
}

.billing-btn {
  cursor: pointer;
  color: var(--sl-gray-light);
  background: none;
  border: none;
  border-radius: 100px;
  padding: 8px 24px;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 600;
  transition: all .2s;
}

.billing-btn.active {
  background: var(--sl-green);
  color: #fff;
}

.annual-pill {
  color: var(--sl-green-light);
  letter-spacing: .06em;
  background: #16a34a26;
  border: 1px solid #16a34a4d;
  border-radius: 100px;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 700;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
}

.pricing-card {
  background: var(--sl-bg-card);
  border: 1px solid var(--sl-border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
}

.pricing-card.highlighted {
  border-color: var(--sl-green);
  box-shadow: 0 0 40px #16a34a1f;
}

.pricing-badge {
  background: var(--sl-green);
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 100px;
  padding: 4px 16px;
  font-size: .72rem;
  font-weight: 700;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-tier {
  color: var(--sl-gray);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: .8rem;
  font-weight: 600;
}

.pricing-price {
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
  display: flex;
}

.pricing-amount {
  color: var(--sl-text);
  font-family: Playfair Display, serif;
  font-size: 3rem;
  font-weight: 900;
}

.pricing-period {
  color: var(--sl-gray);
  font-size: .9rem;
}

.pricing-savings {
  color: var(--sl-green-light);
  letter-spacing: .04em;
  white-space: nowrap;
  background: #16a34a1f;
  border: 1px solid #16a34a40;
  border-radius: 100px;
  align-self: center;
  margin-left: 4px;
  padding: 3px 10px;
  font-size: .72rem;
  font-weight: 700;
}

.pricing-billed-note {
  color: var(--sl-gray);
  min-height: 18px;
  margin-top: 4px;
  font-size: .75rem;
}

.pricing-divider {
  background: var(--sl-border);
  height: 1px;
  margin: 24px 0;
}

.pricing-bullets {
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  list-style: none;
  display: flex;
}

.pricing-bullets li {
  color: var(--sl-gray-light);
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  display: flex;
}

.pricing-cta {
  text-align: center;
  cursor: pointer;
  border-radius: 100px;
  padding: 14px 24px;
  font-size: .92rem;
  font-weight: 600;
  transition: all .2s;
  display: block;
}

.pricing-cta.primary {
  background: var(--sl-green);
  color: #fff;
  border: 1px solid var(--sl-green);
}

.pricing-cta.primary:hover {
  background: var(--sl-green-dark);
}

.pricing-cta.secondary {
  color: var(--sl-text);
  border: 1px solid var(--sl-border);
  background: none;
}

.pricing-cta.secondary:hover {
  border-color: var(--sl-border-2);
}

footer {
  border-top: 1px solid var(--sl-border);
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 40px;
}

.footer-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
  display: grid;
}

.footer-logo {
  color: var(--sl-green-light);
  margin-bottom: 8px;
  font-family: Playfair Display, serif;
  font-size: 1.4rem;
  font-weight: 900;
}

.footer-tagline {
  color: var(--sl-gray);
  font-size: .88rem;
  line-height: 1.6;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 32px;
  display: flex;
}

.footer-links a {
  color: var(--sl-gray);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 500;
  transition: color .2s;
}

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

.footer-copy {
  border-top: 1px solid var(--sl-border);
  text-align: center;
  color: var(--sl-gray);
  padding-top: 24px;
  font-size: .8rem;
}

.theme-toggle {
  z-index: 60;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  display: flex;
  position: fixed;
  bottom: 24px;
  right: 24px;
}

.theme-panel {
  background: var(--sl-bg-card);
  border: 1px solid var(--sl-border-2);
  border-radius: 16px;
  width: 180px;
  padding: 16px;
  box-shadow: 0 8px 32px #0000004d;
}

.theme-panel-label {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sl-gray);
  margin-bottom: 10px;
  font-size: .7rem;
  font-weight: 600;
}

.theme-buttons {
  gap: 8px;
  margin-bottom: 10px;
  display: flex;
}

.theme-btn {
  cursor: pointer;
  border: 1px solid var(--sl-border);
  color: var(--sl-gray-light);
  background: none;
  border-radius: 10px;
  flex: 1;
  padding: 8px;
  font-family: inherit;
  font-size: .8rem;
  font-weight: 600;
  transition: all .2s;
}

.theme-btn.active {
  color: var(--sl-green-light);
  background: #16a34a1a;
  border-color: #16a34a66;
}

.theme-note {
  color: var(--sl-gray);
  font-size: .65rem;
  line-height: 1.5;
}

.theme-fab {
  cursor: pointer;
  background: var(--sl-bg-card-2);
  border: 1px solid var(--sl-border-2);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  transition: all .2s;
  display: flex;
  box-shadow: 0 4px 16px #0003;
}

.theme-fab:hover {
  border-color: #16a34a80;
}

@media (width <= 768px) {
  .nav-links {
    display: none;
  }

  .mock-row {
    grid-template-columns: 1fr;
  }

  .mock-row.flipped .mock-screen {
    order: -1;
  }

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

  .footer-grid {
    text-align: center;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: center;
  }
}
/*# sourceMappingURL=repo.5eb89208.css.map */
