snow-flow 3.6.23 → 3.6.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -483,12 +483,8 @@ a.link-animated:hover::after {
483
483
  font-weight: 900;
484
484
  letter-spacing: var(--tracking-tighter);
485
485
  margin-bottom: var(--space-6);
486
- background: linear-gradient(135deg, var(--white) 0%, var(--gray-400) 50%, var(--white) 100%);
487
- -webkit-background-clip: text;
488
- -webkit-text-fill-color: transparent;
489
- background-clip: text;
490
- background-size: 200% auto;
491
- animation: gradientShift 15s ease infinite;
486
+ position: relative;
487
+ display: inline-block;
492
488
  }
493
489
 
494
490
  @keyframes gradientShift {
@@ -505,6 +501,649 @@ a.link-animated:hover::after {
505
501
  letter-spacing: var(--tracking-wide);
506
502
  }
507
503
 
504
+ /* =========================================
505
+ ENHANCED HERO ELEMENTS
506
+ ========================================= */
507
+
508
+ /* Animated Background Elements */
509
+ .hero-bg-animation {
510
+ position: absolute;
511
+ top: 0;
512
+ left: 0;
513
+ width: 100%;
514
+ height: 100%;
515
+ overflow: hidden;
516
+ z-index: 0;
517
+ }
518
+
519
+ .floating-orb {
520
+ position: absolute;
521
+ border-radius: 50%;
522
+ filter: blur(40px);
523
+ opacity: 0.5;
524
+ animation: float 20s infinite ease-in-out;
525
+ }
526
+
527
+ .orb-1 {
528
+ width: 400px;
529
+ height: 400px;
530
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
531
+ top: -200px;
532
+ left: -200px;
533
+ animation-delay: 0s;
534
+ }
535
+
536
+ .orb-2 {
537
+ width: 300px;
538
+ height: 300px;
539
+ background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
540
+ bottom: -150px;
541
+ right: -150px;
542
+ animation-delay: 5s;
543
+ }
544
+
545
+ .orb-3 {
546
+ width: 250px;
547
+ height: 250px;
548
+ background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
549
+ top: 50%;
550
+ left: 50%;
551
+ transform: translate(-50%, -50%);
552
+ animation-delay: 10s;
553
+ }
554
+
555
+ .orb-4 {
556
+ width: 200px;
557
+ height: 200px;
558
+ background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
559
+ top: 20%;
560
+ right: 10%;
561
+ animation-delay: 15s;
562
+ }
563
+
564
+ .orb-5 {
565
+ width: 350px;
566
+ height: 350px;
567
+ background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
568
+ bottom: 20%;
569
+ left: 5%;
570
+ animation-delay: 7s;
571
+ opacity: 0.3;
572
+ }
573
+
574
+ @keyframes float {
575
+ 0%, 100% { transform: translate(0, 0) scale(1); }
576
+ 33% { transform: translate(30px, -30px) scale(1.1); }
577
+ 66% { transform: translate(-20px, 20px) scale(0.9); }
578
+ }
579
+
580
+ .grid-overlay {
581
+ position: absolute;
582
+ top: 0;
583
+ left: 0;
584
+ width: 100%;
585
+ height: 100%;
586
+ background-image:
587
+ linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
588
+ linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
589
+ background-size: 50px 50px;
590
+ animation: gridMove 20s linear infinite;
591
+ }
592
+
593
+ @keyframes gridMove {
594
+ 0% { transform: translate(0, 0); }
595
+ 100% { transform: translate(50px, 50px); }
596
+ }
597
+
598
+ /* Enhanced Logo */
599
+ .hero-logo-container {
600
+ margin-bottom: var(--space-8);
601
+ position: relative;
602
+ }
603
+
604
+ .logo-glow-container {
605
+ position: relative;
606
+ display: inline-block;
607
+ }
608
+
609
+ .hero-mountain {
610
+ font-size: 6rem;
611
+ display: inline-block;
612
+ animation: float-subtle 6s ease-in-out infinite;
613
+ }
614
+
615
+ .pulse-glow {
616
+ filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5))
617
+ drop-shadow(0 0 40px rgba(102, 126, 234, 0.3));
618
+ animation: pulse-glow 2s ease-in-out infinite;
619
+ }
620
+
621
+ @keyframes pulse-glow {
622
+ 0%, 100% { filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5)); }
623
+ 50% { filter: drop-shadow(0 0 40px rgba(102, 126, 234, 0.8)); }
624
+ }
625
+
626
+ @keyframes float-subtle {
627
+ 0%, 100% { transform: translateY(0); }
628
+ 50% { transform: translateY(-10px); }
629
+ }
630
+
631
+ .logo-particles {
632
+ position: absolute;
633
+ top: 50%;
634
+ left: 50%;
635
+ transform: translate(-50%, -50%);
636
+ pointer-events: none;
637
+ }
638
+
639
+ .particle {
640
+ position: absolute;
641
+ width: 4px;
642
+ height: 4px;
643
+ background: white;
644
+ border-radius: 50%;
645
+ opacity: 0;
646
+ animation: particle-float 4s infinite;
647
+ }
648
+
649
+ .particle:nth-child(1) { animation-delay: 0s; top: -30px; left: 10px; }
650
+ .particle:nth-child(2) { animation-delay: 1.3s; top: 20px; right: -20px; }
651
+ .particle:nth-child(3) { animation-delay: 2.6s; bottom: -10px; left: -15px; }
652
+
653
+ @keyframes particle-float {
654
+ 0% { opacity: 0; transform: translateY(0) scale(0); }
655
+ 20% { opacity: 1; transform: translateY(-20px) scale(1); }
656
+ 100% { opacity: 0; transform: translateY(-60px) scale(0); }
657
+ }
658
+
659
+ /* Enhanced Title */
660
+ .gradient-text {
661
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #667eea 100%);
662
+ -webkit-background-clip: text;
663
+ -webkit-text-fill-color: transparent;
664
+ background-clip: text;
665
+ background-size: 200% auto;
666
+ animation: gradient-animate 5s ease infinite;
667
+ }
668
+
669
+ @keyframes gradient-animate {
670
+ 0% { background-position: 0% 50%; }
671
+ 50% { background-position: 100% 50%; }
672
+ 100% { background-position: 0% 50%; }
673
+ }
674
+
675
+ .version-badge {
676
+ position: absolute;
677
+ top: -20px;
678
+ right: -60px;
679
+ background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
680
+ color: white;
681
+ padding: 4px 12px;
682
+ border-radius: 20px;
683
+ font-size: 0.8rem;
684
+ font-weight: 600;
685
+ animation: badge-pulse 2s ease-in-out infinite;
686
+ }
687
+
688
+ @keyframes badge-pulse {
689
+ 0%, 100% { transform: scale(1); }
690
+ 50% { transform: scale(1.05); }
691
+ }
692
+
693
+ /* Typewriter Effect */
694
+ .typewriter {
695
+ overflow: hidden;
696
+ white-space: nowrap;
697
+ animation: typing 3s steps(40, end);
698
+ }
699
+
700
+ @keyframes typing {
701
+ from { width: 0; }
702
+ to { width: 100%; }
703
+ }
704
+
705
+ .gradient-text-subtle {
706
+ background: linear-gradient(90deg, #e0e0e0 0%, #ffffff 50%, #e0e0e0 100%);
707
+ -webkit-background-clip: text;
708
+ -webkit-text-fill-color: transparent;
709
+ background-clip: text;
710
+ }
711
+
712
+ .highlight-text {
713
+ color: #f5576c;
714
+ font-weight: 600;
715
+ }
716
+
717
+ /* Feature Pills */
718
+ .feature-pills {
719
+ display: flex;
720
+ gap: 1rem;
721
+ justify-content: center;
722
+ flex-wrap: wrap;
723
+ margin: 2rem 0;
724
+ }
725
+
726
+ .pill {
727
+ background: rgba(255, 255, 255, 0.1);
728
+ backdrop-filter: blur(10px);
729
+ border: 1px solid rgba(255, 255, 255, 0.2);
730
+ padding: 0.5rem 1rem;
731
+ border-radius: 50px;
732
+ font-size: 0.85rem;
733
+ color: white;
734
+ animation: pill-intro 0.5s ease-out;
735
+ }
736
+
737
+ .pill-glow { animation: pill-glow 3s ease-in-out infinite; }
738
+ .pill-pulse { animation: pill-pulse 2s ease-in-out infinite; }
739
+ .pill-float { animation: pill-float 4s ease-in-out infinite; }
740
+ .pill-shine {
741
+ background: linear-gradient(90deg,
742
+ rgba(255,255,255,0.1) 0%,
743
+ rgba(255,255,255,0.1) 40%,
744
+ rgba(255,255,255,0.3) 50%,
745
+ rgba(255,255,255,0.1) 60%,
746
+ rgba(255,255,255,0.1) 100%);
747
+ background-size: 200% 100%;
748
+ animation: pill-shine 3s linear infinite;
749
+ }
750
+
751
+ @keyframes pill-glow {
752
+ 0%, 100% { box-shadow: 0 0 10px rgba(102, 126, 234, 0.3); }
753
+ 50% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.6); }
754
+ }
755
+
756
+ @keyframes pill-pulse {
757
+ 0%, 100% { transform: scale(1); }
758
+ 50% { transform: scale(1.05); }
759
+ }
760
+
761
+ @keyframes pill-float {
762
+ 0%, 100% { transform: translateY(0); }
763
+ 50% { transform: translateY(-5px); }
764
+ }
765
+
766
+ @keyframes pill-shine {
767
+ 0% { background-position: -100% 0; }
768
+ 100% { background-position: 200% 0; }
769
+ }
770
+
771
+ /* Enhanced CTA Buttons */
772
+ .hero-actions {
773
+ display: flex;
774
+ gap: 1.5rem;
775
+ justify-content: center;
776
+ margin: 3rem 0;
777
+ }
778
+
779
+ .btn-glow {
780
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
781
+ color: white;
782
+ padding: 1rem 2rem;
783
+ border-radius: 50px;
784
+ font-weight: 600;
785
+ text-transform: uppercase;
786
+ letter-spacing: 1px;
787
+ position: relative;
788
+ overflow: hidden;
789
+ transition: all 0.3s ease;
790
+ }
791
+
792
+ .btn-glow:hover {
793
+ transform: translateY(-2px);
794
+ box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
795
+ }
796
+
797
+ .btn-glow::before {
798
+ content: '';
799
+ position: absolute;
800
+ top: 0;
801
+ left: -100%;
802
+ width: 100%;
803
+ height: 100%;
804
+ background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
805
+ transition: left 0.5s;
806
+ }
807
+
808
+ .btn-glow:hover::before {
809
+ left: 100%;
810
+ }
811
+
812
+ .btn-glass {
813
+ background: rgba(255, 255, 255, 0.1);
814
+ backdrop-filter: blur(10px);
815
+ border: 2px solid rgba(255, 255, 255, 0.2);
816
+ color: white;
817
+ padding: 1rem 2rem;
818
+ border-radius: 50px;
819
+ font-weight: 600;
820
+ text-transform: uppercase;
821
+ letter-spacing: 1px;
822
+ position: relative;
823
+ transition: all 0.3s ease;
824
+ }
825
+
826
+ .btn-glass:hover {
827
+ background: rgba(255, 255, 255, 0.2);
828
+ transform: translateY(-2px);
829
+ }
830
+
831
+ .btn-icon {
832
+ margin-left: 0.5rem;
833
+ transition: transform 0.3s ease;
834
+ }
835
+
836
+ .btn:hover .btn-icon {
837
+ transform: translateX(3px);
838
+ }
839
+
840
+ .btn-badge {
841
+ position: absolute;
842
+ top: -8px;
843
+ right: -8px;
844
+ background: #f5576c;
845
+ color: white;
846
+ padding: 2px 8px;
847
+ border-radius: 10px;
848
+ font-size: 0.6rem;
849
+ font-weight: 700;
850
+ animation: badge-bounce 2s ease-in-out infinite;
851
+ }
852
+
853
+ @keyframes badge-bounce {
854
+ 0%, 100% { transform: translateY(0); }
855
+ 50% { transform: translateY(-3px); }
856
+ }
857
+
858
+ /* Code Rain Effect */
859
+ .code-rain {
860
+ position: absolute;
861
+ width: 100%;
862
+ height: 100%;
863
+ overflow: hidden;
864
+ opacity: 0.1;
865
+ }
866
+
867
+ .code-drop {
868
+ position: absolute;
869
+ top: -50px;
870
+ font-family: 'Courier New', monospace;
871
+ font-size: 14px;
872
+ color: #00ff00;
873
+ animation: code-fall 15s linear infinite;
874
+ white-space: nowrap;
875
+ }
876
+
877
+ @keyframes code-fall {
878
+ 0% {
879
+ top: -50px;
880
+ opacity: 0;
881
+ }
882
+ 10% {
883
+ opacity: 0.5;
884
+ }
885
+ 90% {
886
+ opacity: 0.5;
887
+ }
888
+ 100% {
889
+ top: 100%;
890
+ opacity: 0;
891
+ }
892
+ }
893
+
894
+ /* Logo Orbit Rings */
895
+ .logo-orbit {
896
+ position: absolute;
897
+ top: 50%;
898
+ left: 50%;
899
+ transform: translate(-50%, -50%);
900
+ width: 200px;
901
+ height: 200px;
902
+ pointer-events: none;
903
+ }
904
+
905
+ .orbit-ring {
906
+ position: absolute;
907
+ width: 100%;
908
+ height: 100%;
909
+ border: 1px solid rgba(102, 126, 234, 0.2);
910
+ border-radius: 50%;
911
+ animation: orbit-rotate 20s linear infinite;
912
+ }
913
+
914
+ .orbit-ring-2 {
915
+ width: 150%;
916
+ height: 150%;
917
+ top: -25%;
918
+ left: -25%;
919
+ animation-duration: 30s;
920
+ animation-direction: reverse;
921
+ border-color: rgba(240, 147, 251, 0.2);
922
+ }
923
+
924
+ .orbit-ring-3 {
925
+ width: 200%;
926
+ height: 200%;
927
+ top: -50%;
928
+ left: -50%;
929
+ animation-duration: 40s;
930
+ border-color: rgba(79, 172, 254, 0.2);
931
+ }
932
+
933
+ @keyframes orbit-rotate {
934
+ 0% { transform: rotate(0deg); }
935
+ 100% { transform: rotate(360deg); }
936
+ }
937
+
938
+ /* Title Letter Animation */
939
+ .title-letter {
940
+ display: inline-block;
941
+ animation: letter-pop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
942
+ opacity: 0;
943
+ }
944
+
945
+ @keyframes letter-pop {
946
+ 0% {
947
+ opacity: 0;
948
+ transform: translateY(50px) scale(0.5);
949
+ }
950
+ 100% {
951
+ opacity: 1;
952
+ transform: translateY(0) scale(1);
953
+ }
954
+ }
955
+
956
+ /* Animated Badge */
957
+ .animated-badge {
958
+ animation: badge-intro 0.8s ease-out 1s forwards;
959
+ opacity: 0;
960
+ transform: scale(0) rotate(-180deg);
961
+ }
962
+
963
+ @keyframes badge-intro {
964
+ 0% {
965
+ opacity: 0;
966
+ transform: scale(0) rotate(-180deg);
967
+ }
968
+ 100% {
969
+ opacity: 1;
970
+ transform: scale(1) rotate(0);
971
+ }
972
+ }
973
+
974
+ /* Fade In Words */
975
+ .fade-in-word span {
976
+ display: inline-block;
977
+ opacity: 0;
978
+ animation: word-fade-in 0.6s ease-out forwards;
979
+ }
980
+
981
+ @keyframes word-fade-in {
982
+ 0% {
983
+ opacity: 0;
984
+ transform: translateY(20px);
985
+ }
986
+ 100% {
987
+ opacity: 1;
988
+ transform: translateY(0);
989
+ }
990
+ }
991
+
992
+ .subtitle-line-2 {
993
+ display: block;
994
+ margin-top: 0.5rem;
995
+ }
996
+
997
+ .ai-text {
998
+ background: linear-gradient(90deg, #f093fb 0%, #f5576c 50%, #feca57 100%);
999
+ -webkit-background-clip: text;
1000
+ -webkit-text-fill-color: transparent;
1001
+ background-clip: text;
1002
+ font-weight: 700;
1003
+ font-size: 1.2em;
1004
+ }
1005
+
1006
+ /* Enhanced Pills */
1007
+ .pill {
1008
+ opacity: 0;
1009
+ animation: pill-intro 0.5s ease-out forwards;
1010
+ display: inline-flex;
1011
+ align-items: center;
1012
+ gap: 0.5rem;
1013
+ }
1014
+
1015
+ @keyframes pill-intro {
1016
+ 0% {
1017
+ opacity: 0;
1018
+ transform: translateY(20px) scale(0.8);
1019
+ }
1020
+ 100% {
1021
+ opacity: 1;
1022
+ transform: translateY(0) scale(1);
1023
+ }
1024
+ }
1025
+
1026
+ .pill-icon {
1027
+ font-size: 1.2em;
1028
+ }
1029
+
1030
+ /* Magnetic Button Effect */
1031
+ .magnetic-btn {
1032
+ position: relative;
1033
+ transition: transform 0.2s ease;
1034
+ }
1035
+
1036
+ .btn-inner {
1037
+ position: relative;
1038
+ z-index: 1;
1039
+ display: flex;
1040
+ align-items: center;
1041
+ gap: 0.5rem;
1042
+ }
1043
+
1044
+ .btn-particles {
1045
+ position: absolute;
1046
+ top: 50%;
1047
+ left: 50%;
1048
+ transform: translate(-50%, -50%);
1049
+ width: 100%;
1050
+ height: 100%;
1051
+ pointer-events: none;
1052
+ }
1053
+
1054
+ /* Floating Animation */
1055
+ .floating {
1056
+ animation: float-element 4s ease-in-out infinite;
1057
+ }
1058
+
1059
+ @keyframes float-element {
1060
+ 0%, 100% { transform: translateY(0); }
1061
+ 50% { transform: translateY(-10px); }
1062
+ }
1063
+
1064
+ /* Stat Icon */
1065
+ .stat-icon {
1066
+ font-size: 2rem;
1067
+ display: block;
1068
+ margin-bottom: 0.5rem;
1069
+ opacity: 0.7;
1070
+ }
1071
+
1072
+ /* Stats Bar */
1073
+ .hero-stats {
1074
+ display: flex;
1075
+ justify-content: center;
1076
+ align-items: center;
1077
+ gap: 3rem;
1078
+ margin-top: 4rem;
1079
+ padding: 2rem;
1080
+ background: rgba(255, 255, 255, 0.05);
1081
+ backdrop-filter: blur(10px);
1082
+ border-radius: 20px;
1083
+ border: 1px solid rgba(255, 255, 255, 0.1);
1084
+ }
1085
+
1086
+ .stat-item {
1087
+ text-align: center;
1088
+ }
1089
+
1090
+ .stat-number {
1091
+ font-size: 2.5rem;
1092
+ font-weight: 900;
1093
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
1094
+ -webkit-background-clip: text;
1095
+ -webkit-text-fill-color: transparent;
1096
+ background-clip: text;
1097
+ }
1098
+
1099
+ .stat-label {
1100
+ display: block;
1101
+ font-size: 0.85rem;
1102
+ color: #888;
1103
+ text-transform: uppercase;
1104
+ letter-spacing: 1px;
1105
+ margin-top: 0.5rem;
1106
+ }
1107
+
1108
+ .stat-divider {
1109
+ width: 1px;
1110
+ height: 40px;
1111
+ background: rgba(255, 255, 255, 0.2);
1112
+ }
1113
+
1114
+ /* Scroll Indicator */
1115
+ .scroll-indicator {
1116
+ position: absolute;
1117
+ bottom: 2rem;
1118
+ left: 50%;
1119
+ transform: translateX(-50%);
1120
+ text-align: center;
1121
+ animation: bounce 2s ease-in-out infinite;
1122
+ }
1123
+
1124
+ .scroll-text {
1125
+ display: block;
1126
+ font-size: 0.8rem;
1127
+ color: rgba(255, 255, 255, 0.5);
1128
+ text-transform: uppercase;
1129
+ letter-spacing: 2px;
1130
+ margin-bottom: 0.5rem;
1131
+ }
1132
+
1133
+ .scroll-arrow {
1134
+ width: 20px;
1135
+ height: 20px;
1136
+ border-right: 2px solid rgba(255, 255, 255, 0.5);
1137
+ border-bottom: 2px solid rgba(255, 255, 255, 0.5);
1138
+ transform: rotate(45deg);
1139
+ margin: 0 auto;
1140
+ }
1141
+
1142
+ @keyframes bounce {
1143
+ 0%, 100% { transform: translateX(-50%) translateY(0); }
1144
+ 50% { transform: translateX(-50%) translateY(10px); }
1145
+ }
1146
+
508
1147
  /* =========================================
509
1148
  7. BUTTONS
510
1149
  ========================================= */