Buckets:
| /* ======================================== | |
| NeuralFlow AI - Apple-Inspired Styles | |
| ======================================== */ | |
| /* CSS Variables */ | |
| :root { | |
| /* Colors */ | |
| --color-primary: #007AFF; | |
| --color-primary-dark: #0056CC; | |
| --color-secondary: #5856D6; | |
| --color-accent: #FF9500; | |
| --color-success: #34C759; | |
| /* Neutrals */ | |
| --color-white: #FFFFFF; | |
| --color-black: #000000; | |
| --color-gray-50: #F5F5F7; | |
| --color-gray-100: #EBEDF0; | |
| --color-gray-200: #D2D2D7; | |
| --color-gray-300: #AEAEB2; | |
| --color-gray-400: #86868B; | |
| --color-gray-500: #636366; | |
| --color-gray-600: #48484A; | |
| --color-gray-700: #3A3A3C; | |
| --color-gray-800: #1D1D1F; | |
| --color-gray-900: #111111; | |
| /* Gradients */ | |
| --gradient-primary: linear-gradient(135deg, #007AFF 0%, #5856D6 100%); | |
| --gradient-secondary: linear-gradient(135deg, #5856D6 0%, #AF52DE 100%); | |
| --gradient-dark: linear-gradient(180deg, #1D1D1F 0%, #111111 100%); | |
| --gradient-hero: linear-gradient(135deg, #007AFF 0%, #00C7BE 50%, #5856D6 100%); | |
| /* Glass effect */ | |
| --glass-bg: rgba(255, 255, 255, 0.7); | |
| --glass-bg-dark: rgba(29, 29, 31, 0.8); | |
| --glass-border: rgba(255, 255, 255, 0.2); | |
| --glass-border-dark: rgba(255, 255, 255, 0.1); | |
| --glass-blur: blur(20px); | |
| --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); | |
| /* Shadows */ | |
| --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08); | |
| --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12); | |
| --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16); | |
| --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.2); | |
| --shadow-glow: 0 0 40px rgba(0, 122, 255, 0.3); | |
| /* Typography */ | |
| --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif; | |
| --font-size-xs: 0.75rem; | |
| --font-size-sm: 0.875rem; | |
| --font-size-base: 1rem; | |
| --font-size-lg: 1.125rem; | |
| --font-size-xl: 1.25rem; | |
| --font-size-2xl: 1.5rem; | |
| --font-size-3xl: 1.875rem; | |
| --font-size-4xl: 2.25rem; | |
| --font-size-5xl: 3rem; | |
| --font-size-6xl: 3.75rem; | |
| --font-size-7xl: 4.5rem; | |
| --font-size-8xl: 6rem; | |
| /* Spacing */ | |
| --spacing-xs: 0.5rem; | |
| --spacing-sm: 0.75rem; | |
| --spacing-md: 1rem; | |
| --spacing-lg: 1.5rem; | |
| --spacing-xl: 2rem; | |
| --spacing-2xl: 3rem; | |
| --spacing-3xl: 4rem; | |
| --spacing-4xl: 6rem; | |
| --spacing-5xl: 8rem; | |
| /* Border Radius */ | |
| --radius-sm: 8px; | |
| --radius-md: 12px; | |
| --radius-lg: 16px; | |
| --radius-xl: 20px; | |
| --radius-2xl: 24px; | |
| --radius-3xl: 32px; | |
| --radius-full: 9999px; | |
| /* Transitions */ | |
| --transition-fast: 150ms ease; | |
| --transition-base: 250ms ease; | |
| --transition-slow: 350ms ease; | |
| --transition-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1); | |
| /* Layout */ | |
| --container-max: 1200px; | |
| --nav-height: 64px; | |
| } | |
| /* ======================================== | |
| Reset & Base Styles | |
| ======================================== */ | |
| *, *::before, *::after { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| html { | |
| font-size: 16px; | |
| scroll-behavior: smooth; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| body { | |
| font-family: var(--font-family); | |
| font-size: var(--font-size-base); | |
| line-height: 1.6; | |
| color: var(--color-gray-800); | |
| background-color: var(--color-white); | |
| overflow-x: hidden; | |
| } | |
| img, svg { | |
| display: block; | |
| max-width: 100%; | |
| height: auto; | |
| } | |
| a { | |
| color: inherit; | |
| text-decoration: none; | |
| transition: color var(--transition-fast); | |
| } | |
| ul { | |
| list-style: none; | |
| } | |
| button { | |
| font-family: inherit; | |
| font-size: inherit; | |
| cursor: pointer; | |
| border: none; | |
| background: none; | |
| color: inherit; | |
| } | |
| /* ======================================== | |
| Typography | |
| ======================================== */ | |
| h1, h2, h3, h4, h5, h6 { | |
| font-weight: 600; | |
| line-height: 1.1; | |
| color: var(--color-gray-900); | |
| } | |
| h1 { font-size: var(--font-size-7xl); letter-spacing: -0.02em; } | |
| h2 { font-size: var(--font-size-5xl); letter-spacing: -0.015em; } | |
| h3 { font-size: var(--font-size-3xl); letter-spacing: -0.01em; } | |
| h4 { font-size: var(--font-size-2xl); letter-spacing: -0.005em; } | |
| h5 { font-size: var(--font-size-xl); } | |
| h6 { font-size: var(--font-size-lg); } | |
| p { | |
| line-height: 1.7; | |
| color: var(--color-gray-500); | |
| } | |
| .gradient-text { | |
| background: var(--gradient-primary); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| } | |
| /* ======================================== | |
| Buttons | |
| ======================================== */ | |
| .btn { | |
| display: inline-flex; | |
| align-items: center; | |
| justify-content: center; | |
| gap: var(--spacing-sm); | |
| padding: var(--spacing-md) var(--spacing-xl); | |
| font-size: var(--font-size-base); | |
| font-weight: 500; | |
| border-radius: var(--radius-full); | |
| transition: all var(--transition-base); | |
| cursor: pointer; | |
| } | |
| .btn-primary { | |
| background: var(--gradient-primary); | |
| color: var(--color-white); | |
| box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3); | |
| } | |
| .btn-primary:hover { | |
| transform: translateY(-2px); | |
| box-shadow: 0 8px 24px rgba(0, 122, 255, 0.4); | |
| } | |
| .btn-primary:active { | |
| transform: translateY(0); | |
| } | |
| .btn-secondary { | |
| background: transparent; | |
| color: var(--color-primary); | |
| border: 2px solid var(--color-primary); | |
| } | |
| .btn-secondary:hover { | |
| background: rgba(0, 122, 255, 0.05); | |
| } | |
| .btn-outline { | |
| background: transparent; | |
| color: var(--color-gray-700); | |
| border: 2px solid var(--color-gray-300); | |
| } | |
| .btn-outline:hover { | |
| border-color: var(--color-gray-600); | |
| color: var(--color-gray-900); | |
| } | |
| .btn-large { | |
| padding: var(--spacing-lg) var(--spacing-2xl); | |
| font-size: var(--font-size-lg); | |
| } | |
| .btn-full { | |
| width: 100%; | |
| } | |
| /* ======================================== | |
| Navigation | |
| ======================================== */ | |
| .nav { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| z-index: 1000; | |
| background: transparent; | |
| transition: all var(--transition-smooth); | |
| height: var(--nav-height); | |
| } | |
| .nav-scrolled { | |
| background: rgba(255, 255, 255, 0.8); | |
| backdrop-filter: var(--glass-blur); | |
| -webkit-backdrop-filter: var(--glass-blur); | |
| box-shadow: var(--shadow-sm); | |
| } | |
| .nav-container { | |
| max-width: var(--container-max); | |
| margin: 0 auto; | |
| padding: 0 var(--spacing-xl); | |
| height: 100%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| } | |
| .nav-logo { | |
| display: flex; | |
| align-items: center; | |
| gap: var(--spacing-sm); | |
| } | |
| .logo-icon { | |
| width: 32px; | |
| height: 32px; | |
| } | |
| .logo-text { | |
| font-size: var(--font-size-lg); | |
| font-weight: 600; | |
| color: var(--color-gray-900); | |
| } | |
| .nav-menu { | |
| display: flex; | |
| align-items: center; | |
| gap: var(--spacing-xl); | |
| } | |
| .nav-link { | |
| font-size: var(--font-size-sm); | |
| font-weight: 500; | |
| color: var(--color-gray-600); | |
| transition: color var(--transition-fast); | |
| } | |
| .nav-link:hover { | |
| color: var(--color-primary); | |
| } | |
| .nav-cta { | |
| display: block; | |
| } | |
| .nav-toggle { | |
| display: none; | |
| flex-direction: column; | |
| gap: 5px; | |
| padding: var(--spacing-sm); | |
| } | |
| .nav-toggle span { | |
| width: 24px; | |
| height: 2px; | |
| background: var(--color-gray-800); | |
| transition: all var(--transition-base); | |
| } | |
| .nav-toggle.active span:nth-child(1) { | |
| transform: rotate(45deg) translate(5px, 5px); | |
| } | |
| .nav-toggle.active span:nth-child(2) { | |
| opacity: 0; | |
| } | |
| .nav-toggle.active span:nth-child(3) { | |
| transform: rotate(-45deg) translate(5px, -5px); | |
| } | |
| /* ======================================== | |
| Hero Section | |
| ======================================== */ | |
| .hero { | |
| position: relative; | |
| min-height: 100vh; | |
| display: flex; | |
| align-items: center; | |
| padding: calc(var(--nav-height) + var(--spacing-5xl)) var(--spacing-xl) var(--spacing-5xl); | |
| overflow: hidden; | |
| } | |
| .hero-background { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| z-index: -1; | |
| background: var(--color-white); | |
| } | |
| .gradient-orb { | |
| position: absolute; | |
| border-radius: 50%; | |
| filter: blur(80px); | |
| opacity: 0.4; | |
| animation: float 20s ease-in-out infinite; | |
| } | |
| .orb-1 { | |
| width: 600px; | |
| height: 600px; | |
| background: var(--gradient-hero); | |
| top: -200px; | |
| right: -200px; | |
| animation-delay: 0s; | |
| } | |
| .orb-2 { | |
| width: 400px; | |
| height: 400px; | |
| background: var(--gradient-secondary); | |
| bottom: -100px; | |
| left: -100px; | |
| animation-delay: -5s; | |
| } | |
| .orb-3 { | |
| width: 300px; | |
| height: 300px; | |
| background: var(--gradient-primary); | |
| top: 50%; | |
| left: 50%; | |
| transform: translate(-50%, -50%); | |
| animation-delay: -10s; | |
| } | |
| @keyframes float { | |
| 0%, 100% { | |
| transform: translate(0, 0) scale(1); | |
| } | |
| 25% { | |
| transform: translate(30px, -30px) scale(1.05); | |
| } | |
| 50% { | |
| transform: translate(-20px, 20px) scale(0.95); | |
| } | |
| 75% { | |
| transform: translate(20px, 10px) scale(1.02); | |
| } | |
| } | |
| .hero-container { | |
| max-width: var(--container-max); | |
| margin: 0 auto; | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: var(--spacing-4xl); | |
| align-items: center; | |
| } | |
| .hero-content { | |
| max-width: 600px; | |
| } | |
| .hero-subtitle { | |
| font-size: var(--font-size-lg); | |
| font-weight: 500; | |
| color: var(--color-primary); | |
| margin-bottom: var(--spacing-lg); | |
| letter-spacing: 0.05em; | |
| text-transform: uppercase; | |
| } | |
| .hero-title { | |
| margin-bottom: var(--spacing-xl); | |
| line-height: 1.05; | |
| } | |
| .hero-description { | |
| font-size: var(--font-size-xl); | |
| color: var(--color-gray-500); | |
| margin-bottom: var(--spacing-2xl); | |
| max-width: 500px; | |
| } | |
| .hero-cta { | |
| display: flex; | |
| gap: var(--spacing-md); | |
| margin-bottom: var(--spacing-3xl); | |
| } | |
| .play-icon { | |
| width: 20px; | |
| height: 20px; | |
| } | |
| .hero-stats { | |
| display: flex; | |
| gap: var(--spacing-3xl); | |
| padding-top: var(--spacing-xl); | |
| border-top: 1px solid var(--color-gray-200); | |
| } | |
| .stat-value { | |
| font-size: var(--font-size-3xl); | |
| font-weight: 700; | |
| color: var(--color-gray-900); | |
| line-height: 1; | |
| } | |
| .stat-label { | |
| font-size: var(--font-size-sm); | |
| color: var(--color-gray-400); | |
| margin-top: var(--spacing-xs); | |
| } | |
| .hero-visual { | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| } | |
| .hero-scroll { | |
| position: absolute; | |
| bottom: var(--spacing-xl); | |
| left: 50%; | |
| transform: translateX(-50%); | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| gap: var(--spacing-sm); | |
| font-size: var(--font-size-xs); | |
| font-weight: 500; | |
| color: var(--color-gray-400); | |
| text-transform: uppercase; | |
| letter-spacing: 0.1em; | |
| } | |
| .scroll-indicator { | |
| width: 24px; | |
| height: 40px; | |
| border: 2px solid var(--color-gray-300); | |
| border-radius: var(--radius-full); | |
| position: relative; | |
| } | |
| .scroll-indicator::after { | |
| content: ''; | |
| position: absolute; | |
| top: 8px; | |
| left: 50%; | |
| transform: translateX(-50%); | |
| width: 4px; | |
| height: 8px; | |
| background: var(--color-gray-400); | |
| border-radius: var(--radius-full); | |
| animation: scroll 2s ease-in-out infinite; | |
| } | |
| @keyframes scroll { | |
| 0%, 100% { | |
| opacity: 1; | |
| transform: translateX(-50%) translateY(0); | |
| } | |
| 50% { | |
| opacity: 0; | |
| transform: translateX(-50%) translateY(12px); | |
| } | |
| } | |
| /* ======================================== | |
| Glass Cards | |
| ======================================== */ | |
| .glass-card { | |
| background: var(--glass-bg); | |
| backdrop-filter: var(--glass-blur); | |
| -webkit-backdrop-filter: var(--glass-blur); | |
| border: 1px solid var(--glass-border); | |
| border-radius: var(--radius-xl); | |
| box-shadow: var(--glass-shadow); | |
| } | |
| .glass-card-light { | |
| background: rgba(255, 255, 255, 0.8); | |
| backdrop-filter: blur(10px); | |
| -webkit-backdrop-filter: blur(10px); | |
| border: 1px solid var(--color-gray-200); | |
| border-radius: var(--radius-xl); | |
| box-shadow: var(--shadow-sm); | |
| padding: var(--spacing-2xl); | |
| transition: all var(--transition-base); | |
| } | |
| .glass-card-light:hover { | |
| transform: translateY(-4px); | |
| box-shadow: var(--shadow-lg); | |
| } | |
| .hero-card { | |
| max-width: 500px; | |
| width: 100%; | |
| } | |
| .card-header { | |
| padding: var(--spacing-md); | |
| border-bottom: 1px solid var(--color-gray-200); | |
| } | |
| .card-dots { | |
| display: flex; | |
| gap: var(--spacing-sm); | |
| } | |
| .card-dots span { | |
| width: 12px; | |
| height: 12px; | |
| border-radius: 50%; | |
| } | |
| .card-dots span:nth-child(1) { background: #FF5F57; } | |
| .card-dots span:nth-child(2) { background: #FEBC2E; } | |
| .card-dots span:nth-child(3) { background: #28C840; } | |
| .card-body { | |
| padding: var(--spacing-xl); | |
| font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace; | |
| font-size: var(--font-size-sm); | |
| line-height: 1.8; | |
| overflow-x: auto; | |
| } | |
| .code-line { | |
| display: block; | |
| } | |
| .code-indented { | |
| padding-left: var(--spacing-2xl); | |
| } | |
| .code-double-indented { | |
| padding-left: calc(var(--spacing-2xl) + var(--spacing-lg)); | |
| } | |
| .code-keyword { color: #C678DD; } | |
| .code-variable { color: #E06C75; } | |
| .code-operator { color: #56B6C2; } | |
| .code-function { color: #61AFEF; } | |
| .code-punctuation { color: var(--color-gray-400); } | |
| .code-method { color: #D19A66; } | |
| .code-string { color: #98C379; } | |
| .code-property { color: #E06C75; } | |
| .code-number { color: #D19A66; } | |
| .code-object { color: #E5C07B; } | |
| .code-comment { color: var(--color-gray-400); font-style: italic; } | |
| .code-response { | |
| margin-top: var(--spacing-lg); | |
| padding-top: var(--spacing-lg); | |
| border-top: 1px solid var(--color-gray-200); | |
| } | |
| .response-label { color: var(--color-gray-400); } | |
| .response-text { color: var(--color-success); } | |
| /* ======================================== | |
| Section Styles | |
| ======================================== */ | |
| .section { | |
| padding: var(--spacing-5xl) var(--spacing-xl); | |
| } | |
| .section-white { | |
| background: var(--color-white); | |
| } | |
| .section-dark { | |
| background: var(--gradient-dark); | |
| color: var(--color-white); | |
| } | |
| .section-dark .section-title, | |
| .section-dark .section-description { | |
| color: var(--color-white); | |
| } | |
| .section-dark .section-description { | |
| color: var(--color-gray-400); | |
| } | |
| .section-gradient { | |
| background: var(--gradient-primary); | |
| color: var(--color-white); | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .section-gradient::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); | |
| opacity: 0.5; | |
| } | |
| .section-container { | |
| max-width: var(--container-max); | |
| margin: 0 auto; | |
| } | |
| .section-header { | |
| text-align: center; | |
| max-width: 700px; | |
| margin: 0 auto var(--spacing-4xl); | |
| } | |
| .section-tag { | |
| font-size: var(--font-size-sm); | |
| font-weight: 600; | |
| color: var(--color-primary); | |
| text-transform: uppercase; | |
| letter-spacing: 0.1em; | |
| margin-bottom: var(--spacing-md); | |
| } | |
| .section-title { | |
| margin-bottom: var(--spacing-lg); | |
| } | |
| .section-description { | |
| font-size: var(--font-size-xl); | |
| color: var(--color-gray-500); | |
| } | |
| /* ======================================== | |
| Features Section | |
| ======================================== */ | |
| .features-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); | |
| gap: var(--spacing-xl); | |
| } | |
| .feature-card { | |
| display: flex; | |
| flex-direction: column; | |
| gap: var(--spacing-lg); | |
| } | |
| .feature-icon { | |
| width: 56px; | |
| height: 56px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| background: var(--gradient-primary); | |
| border-radius: var(--radius-lg); | |
| } | |
| .feature-icon svg { | |
| width: 28px; | |
| height: 28px; | |
| } | |
| .feature-title { | |
| font-size: var(--font-size-2xl); | |
| font-weight: 600; | |
| } | |
| .feature-description { | |
| font-size: var(--font-size-base); | |
| color: var(--color-gray-500); | |
| } | |
| /* ======================================== | |
| How It Works Section | |
| ======================================== */ | |
| .steps { | |
| display: flex; | |
| flex-direction: column; | |
| gap: var(--spacing-3xl); | |
| margin-bottom: var(--spacing-4xl); | |
| } | |
| .step { | |
| display: grid; | |
| grid-template-columns: auto 1fr; | |
| gap: var(--spacing-xl); | |
| align-items: start; | |
| } | |
| .step-number { | |
| font-size: var(--font-size-4xl); | |
| font-weight: 800; | |
| background: var(--gradient-primary); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| line-height: 1; | |
| } | |
| .step-content { | |
| padding-top: var(--spacing-xs); | |
| } | |
| .step-title { | |
| font-size: var(--font-size-2xl); | |
| font-weight: 600; | |
| margin-bottom: var(--spacing-md); | |
| color: var(--color-white); | |
| } | |
| .step-description { | |
| font-size: var(--font-size-lg); | |
| color: var(--color-gray-400); | |
| } | |
| .code-showcase { | |
| margin-top: var(--spacing-4xl); | |
| } | |
| .code-window { | |
| max-width: 800px; | |
| margin: 0 auto; | |
| } | |
| .code-header { | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| padding: var(--spacing-md) var(--spacing-xl); | |
| border-bottom: 1px solid rgba(255, 255, 255, 0.1); | |
| } | |
| .code-dots { | |
| display: flex; | |
| gap: var(--spacing-sm); | |
| } | |
| .code-dots span { | |
| width: 12px; | |
| height: 12px; | |
| border-radius: 50%; | |
| background: rgba(255, 255, 255, 0.3); | |
| } | |
| .code-title { | |
| font-size: var(--font-size-sm); | |
| color: var(--color-gray-400); | |
| font-family: 'SF Mono', Monaco, monospace; | |
| } | |
| .code-content { | |
| padding: var(--spacing-xl); | |
| overflow-x: auto; | |
| font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace; | |
| font-size: var(--font-size-sm); | |
| line-height: 1.8; | |
| color: var(--color-gray-300); | |
| } | |
| /* ======================================== | |
| Pricing Section | |
| ======================================== */ | |
| .pricing-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); | |
| gap: var(--spacing-xl); | |
| max-width: 1000px; | |
| margin: 0 auto; | |
| } | |
| .pricing-card { | |
| background: var(--color-white); | |
| border: 1px solid var(--color-gray-200); | |
| border-radius: var(--radius-2xl); | |
| padding: var(--spacing-2xl); | |
| display: flex; | |
| flex-direction: column; | |
| transition: all var(--transition-base); | |
| } | |
| .pricing-card:hover { | |
| border-color: var(--color-gray-300); | |
| box-shadow: var(--shadow-lg); | |
| } | |
| .pricing-card-featured { | |
| border: 2px solid var(--color-primary); | |
| box-shadow: var(--shadow-glow); | |
| position: relative; | |
| } | |
| .pricing-badge { | |
| position: absolute; | |
| top: -12px; | |
| left: 50%; | |
| transform: translateX(-50%); | |
| background: var(--gradient-primary); | |
| color: var(--color-white); | |
| font-size: var(--font-size-xs); | |
| font-weight: 600; | |
| padding: var(--spacing-xs) var(--spacing-md); | |
| border-radius: var(--radius-full); | |
| text-transform: uppercase; | |
| letter-spacing: 0.05em; | |
| } | |
| .pricing-tier { | |
| font-size: var(--font-size-xl); | |
| font-weight: 600; | |
| margin-bottom: var(--spacing-lg); | |
| } | |
| .pricing-price { | |
| margin-bottom: var(--spacing-md); | |
| } | |
| .price-amount { | |
| font-size: var(--font-size-5xl); | |
| font-weight: 700; | |
| color: var(--color-gray-900); | |
| } | |
| .price-period { | |
| font-size: var(--font-size-base); | |
| color: var(--color-gray-400); | |
| } | |
| .pricing-description { | |
| font-size: var(--font-size-base); | |
| color: var(--color-gray-500); | |
| margin-bottom: var(--spacing-xl); | |
| } | |
| .pricing-features { | |
| flex: 1; | |
| display: flex; | |
| flex-direction: column; | |
| gap: var(--spacing-md); | |
| margin-bottom: var(--spacing-xl); | |
| } | |
| .pricing-feature { | |
| display: flex; | |
| align-items: center; | |
| gap: var(--spacing-md); | |
| font-size: var(--font-size-base); | |
| color: var(--color-gray-600); | |
| } | |
| .check-icon { | |
| width: 20px; | |
| height: 20px; | |
| flex-shrink: 0; | |
| color: var(--color-success); | |
| } | |
| /* ======================================== | |
| Use Cases Section | |
| ======================================== */ | |
| .use-cases-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); | |
| gap: var(--spacing-xl); | |
| position: relative; | |
| z-index: 1; | |
| } | |
| .use-case-card { | |
| background: rgba(255, 255, 255, 0.1); | |
| backdrop-filter: blur(10px); | |
| -webkit-backdrop-filter: blur(10px); | |
| border: 1px solid rgba(255, 255, 255, 0.2); | |
| border-radius: var(--radius-xl); | |
| padding: var(--spacing-2xl); | |
| display: flex; | |
| flex-direction: column; | |
| gap: var(--spacing-lg); | |
| transition: all var(--transition-base); | |
| } | |
| .use-case-card:hover { | |
| background: rgba(255, 255, 255, 0.15); | |
| transform: translateY(-4px); | |
| } | |
| .use-case-icon { | |
| width: 56px; | |
| height: 56px; | |
| background: rgba(255, 255, 255, 0.2); | |
| border-radius: var(--radius-lg); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| .use-case-icon svg { | |
| width: 28px; | |
| height: 28px; | |
| } | |
| .use-case-title { | |
| font-size: var(--font-size-xl); | |
| font-weight: 600; | |
| color: var(--color-white); | |
| } | |
| .use-case-description { | |
| font-size: var(--font-size-base); | |
| color: rgba(255, 255, 255, 0.8); | |
| } | |
| /* ======================================== | |
| CTA Section | |
| ======================================== */ | |
| .cta-section { | |
| background: var(--color-gray-50); | |
| border-radius: var(--radius-3xl); | |
| padding: var(--spacing-5xl) var(--spacing-3xl); | |
| text-align: center; | |
| } | |
| .cta-title { | |
| font-size: var(--font-size-5xl); | |
| font-weight: 700; | |
| margin-bottom: var(--spacing-lg); | |
| } | |
| .cta-description { | |
| font-size: var(--font-size-xl); | |
| max-width: 600px; | |
| margin: 0 auto var(--spacing-2xl); | |
| } | |
| .cta-buttons { | |
| display: flex; | |
| gap: var(--spacing-md); | |
| justify-content: center; | |
| margin-bottom: var(--spacing-lg); | |
| } | |
| .cta-note { | |
| font-size: var(--font-size-sm); | |
| color: var(--color-gray-400); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| gap: var(--spacing-sm); | |
| } | |
| .check-icon-small { | |
| width: 16px; | |
| height: 16px; | |
| color: var(--color-success); | |
| } | |
| /* ======================================== | |
| Newsletter Section | |
| ======================================== */ | |
| .newsletter { | |
| display: grid; | |
| grid-template-columns: 1fr auto; | |
| gap: var(--spacing-xl); | |
| align-items: center; | |
| max-width: 900px; | |
| margin: 0 auto; | |
| } | |
| .newsletter-title { | |
| font-size: var(--font-size-3xl); | |
| font-weight: 700; | |
| margin-bottom: var(--spacing-sm); | |
| color: var(--color-white); | |
| } | |
| .newsletter-description { | |
| font-size: var(--font-size-base); | |
| color: var(--color-gray-400); | |
| } | |
| .newsletter-form { | |
| display: flex; | |
| gap: var(--spacing-md); | |
| width: 100%; | |
| max-width: 450px; | |
| } | |
| .newsletter-input { | |
| flex: 1; | |
| padding: var(--spacing-md) var(--spacing-lg); | |
| font-size: var(--font-size-base); | |
| border: 1px solid var(--color-gray-600); | |
| border-radius: var(--radius-full); | |
| background: rgba(255, 255, 255, 0.1); | |
| color: var(--color-white); | |
| outline: none; | |
| transition: all var(--transition-fast); | |
| } | |
| .newsletter-input::placeholder { | |
| color: var(--color-gray-500); | |
| } | |
| .newsletter-input:focus { | |
| border-color: var(--color-primary); | |
| background: rgba(255, 255, 255, 0.15); | |
| } | |
| /* ======================================== | |
| Footer | |
| ======================================== */ | |
| .footer { | |
| background: var(--color-gray-50); | |
| padding: var(--spacing-4xl) var(--spacing-xl) var(--spacing-xl); | |
| } | |
| .footer-container { | |
| max-width: var(--container-max); | |
| margin: 0 auto; | |
| } | |
| .footer-top { | |
| display: grid; | |
| grid-template-columns: 300px 1fr; | |
| gap: var(--spacing-4xl); | |
| margin-bottom: var(--spacing-4xl); | |
| } | |
| .footer-tagline { | |
| font-size: var(--font-size-base); | |
| color: var(--color-gray-500); | |
| margin-top: var(--spacing-md); | |
| } | |
| .footer-links { | |
| display: grid; | |
| grid-template-columns: repeat(4, 1fr); | |
| gap: var(--spacing-xl); | |
| } | |
| .footer-column-title { | |
| font-size: var(--font-size-sm); | |
| font-weight: 600; | |
| color: var(--color-gray-900); | |
| margin-bottom: var(--spacing-lg); | |
| text-transform: uppercase; | |
| letter-spacing: 0.05em; | |
| } | |
| .footer-column-links { | |
| display: flex; | |
| flex-direction: column; | |
| gap: var(--spacing-md); | |
| } | |
| .footer-column-links a { | |
| font-size: var(--font-size-sm); | |
| color: var(--color-gray-500); | |
| transition: color var(--transition-fast); | |
| } | |
| .footer-column-links a:hover { | |
| color: var(--color-primary); | |
| } | |
| .footer-bottom { | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| padding-top: var(--spacing-xl); | |
| border-top: 1px solid var(--color-gray-200); | |
| } | |
| .footer-copyright { | |
| font-size: var(--font-size-sm); | |
| color: var(--color-gray-400); | |
| } | |
| .footer-social { | |
| display: flex; | |
| gap: var(--spacing-md); | |
| } | |
| .social-link { | |
| width: 40px; | |
| height: 40px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| border-radius: var(--radius-full); | |
| background: var(--color-white); | |
| border: 1px solid var(--color-gray-200); | |
| color: var(--color-gray-600); | |
| transition: all var(--transition-fast); | |
| } | |
| .social-link:hover { | |
| border-color: var(--color-primary); | |
| color: var(--color-primary); | |
| transform: translateY(-2px); | |
| } | |
| .social-link svg { | |
| width: 20px; | |
| height: 20px; | |
| } | |
| /* ======================================== | |
| Animations | |
| ======================================== */ | |
| .fade-in { | |
| opacity: 0; | |
| animation: fadeIn 1s ease forwards; | |
| } | |
| .fade-in:nth-child(1) { animation-delay: 0.2s; } | |
| .fade-in:nth-child(2) { animation-delay: 0.4s; } | |
| .fade-in:nth-child(3) { animation-delay: 0.6s; } | |
| .fade-in:nth-child(4) { animation-delay: 0.8s; } | |
| @keyframes fadeIn { | |
| from { | |
| opacity: 0; | |
| transform: translateY(20px); | |
| } | |
| to { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| } | |
| .animate-on-scroll { | |
| opacity: 0; | |
| transform: translateY(30px); | |
| transition: all var(--transition-smooth); | |
| } | |
| .animate-in { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| /* Stagger children */ | |
| .features-grid .feature-card:nth-child(1) { transition-delay: 0ms; } | |
| .features-grid .feature-card:nth-child(2) { transition-delay: 100ms; } | |
| .features-grid .feature-card:nth-child(3) { transition-delay: 200ms; } | |
| .features-grid .feature-card:nth-child(4) { transition-delay: 300ms; } | |
| .features-grid .feature-card:nth-child(5) { transition-delay: 400ms; } | |
| .features-grid .feature-card:nth-child(6) { transition-delay: 500ms; } | |
| /* ======================================== | |
| Responsive Design | |
| ======================================== */ | |
| @media (max-width: 1024px) { | |
| :root { | |
| --font-size-7xl: 4rem; | |
| --font-size-5xl: 2.25rem; | |
| --spacing-5xl: 5rem; | |
| } | |
| .hero-container { | |
| grid-template-columns: 1fr; | |
| text-align: center; | |
| } | |
| .hero-content { | |
| max-width: 100%; | |
| margin: 0 auto; | |
| } | |
| .hero-cta { | |
| justify-content: center; | |
| } | |
| .hero-stats { | |
| justify-content: center; | |
| } | |
| .hero-visual { | |
| margin-top: var(--spacing-3xl); | |
| } | |
| .footer-top { | |
| grid-template-columns: 1fr; | |
| } | |
| .footer-links { | |
| grid-template-columns: repeat(2, 1fr); | |
| } | |
| } | |
| @media (max-width: 768px) { | |
| :root { | |
| --font-size-7xl: 3rem; | |
| --font-size-5xl: 2rem; | |
| --font-size-4xl: 1.75rem; | |
| --font-size-3xl: 1.5rem; | |
| --font-size-2xl: 1.25rem; | |
| --spacing-4xl: 4rem; | |
| --spacing-3xl: 3rem; | |
| } | |
| .nav-menu { | |
| position: fixed; | |
| top: var(--nav-height); | |
| left: 0; | |
| right: 0; | |
| background: var(--color-white); | |
| flex-direction: column; | |
| padding: var(--spacing-xl); | |
| gap: var(--spacing-lg); | |
| box-shadow: var(--shadow-lg); | |
| transform: translateY(-100%); | |
| opacity: 0; | |
| transition: all var(--transition-smooth); | |
| pointer-events: none; | |
| } | |
| .nav-menu.active { | |
| transform: translateY(0); | |
| opacity: 1; | |
| pointer-events: auto; | |
| } | |
| .nav-cta { | |
| display: none; | |
| } | |
| .nav-toggle { | |
| display: flex; | |
| } | |
| .hero { | |
| padding: calc(var(--nav-height) + var(--spacing-3xl)) var(--spacing-md) var(--spacing-3xl); | |
| } | |
| .hero-title br { | |
| display: none; | |
| } | |
| .hero-cta { | |
| flex-direction: column; | |
| } | |
| .hero-stats { | |
| flex-direction: column; | |
| gap: var(--spacing-xl); | |
| align-items: center; | |
| } | |
| .section { | |
| padding: var(--spacing-3xl) var(--spacing-md); | |
| } | |
| .features-grid { | |
| grid-template-columns: 1fr; | |
| } | |
| .pricing-grid { | |
| grid-template-columns: 1fr; | |
| } | |
| .use-cases-grid { | |
| grid-template-columns: 1fr; | |
| } | |
| .cta-buttons { | |
| flex-direction: column; | |
| } | |
| .newsletter { | |
| grid-template-columns: 1fr; | |
| text-align: center; | |
| } | |
| .newsletter-form { | |
| margin: 0 auto; | |
| } | |
| .footer-bottom { | |
| flex-direction: column; | |
| gap: var(--spacing-lg); | |
| text-align: center; | |
| } | |
| .footer-links { | |
| grid-template-columns: 1fr; | |
| } | |
| } | |
| @media (max-width: 480px) { | |
| :root { | |
| --font-size-7xl: 2.25rem; | |
| --font-size-5xl: 1.75rem; | |
| --spacing-xl: 1.25rem; | |
| --spacing-2xl: 2rem; | |
| } | |
| .btn-large { | |
| padding: var(--spacing-md) var(--spacing-xl); | |
| font-size: var(--font-size-base); | |
| } | |
| .pricing-card { | |
| padding: var(--spacing-xl); | |
| } | |
| .price-amount { | |
| font-size: var(--font-size-4xl); | |
| } | |
| } | |
| /* ======================================== | |
| Print Styles | |
| ======================================== */ | |
| @media print { | |
| .nav, .hero-scroll, .cta-buttons, .footer-social, .newsletter-form { | |
| display: none; | |
| } | |
| .section { | |
| page-break-inside: avoid; | |
| } | |
| } | |
Xet Storage Details
- Size:
- 29.8 kB
- Xet hash:
- 08903f8d31cd756ecc4f3d45aecea45fdd88c7dfc5762c5e87249d99572a7dfa
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.