feat: Install custom Apple UI design system skills, implement official Apple.com dark aesthetic with SF Pro/Arabic typography and Bento grids

This commit is contained in:
Hamza-Ayed
2026-08-27 03:19:07 +03:00
parent 261796fcab
commit 0d25239712
3 changed files with 430 additions and 278 deletions
@@ -0,0 +1,144 @@
---
name: apple-ui-design-system
description: >-
World-class Apple Cupertino UI/UX Design System for Web and Flutter.
Use whenever building high-end, luxury, Apple-grade user interfaces with SF Pro/SF Arabic typography,
glassmorphism, bento grids, fluid micro-interactions, and Cupertino dark aesthetics.
---
# Apple Cupertino Luxury UI/UX Design System (Web & Mobile)
This skill equips the agent with Apple's official human interface guidelines (HIG) and Cupertino web design standards (`apple.com` and iOS 18 / macOS Sequoia aesthetic).
---
## 1. Typography Standards (Apple San Francisco Arabic & Latin)
### Web Font Stack
```css
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
:root {
--font-apple: -apple-system, BlinkMacSystemFont, "SF Pro AR", "SF Pro Display", "SF Pro Text", "SF Arabic", "Geeza Pro", "Alexandria", system-ui, sans-serif;
}
* {
font-family: var(--font-apple);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Apple Tracking & Typography Scale */
h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; }
h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.25; }
h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.35; }
p { font-size: 15px; font-weight: 400; letter-spacing: -0.01em; line-height: 1.7; color: #86868B; }
```
---
## 2. Apple Dark Mode Palette & Materials
```css
:root {
/* Surfaces */
--apple-black: #000000;
--apple-space-gray: #0B0F17;
--apple-card: rgba(22, 22, 23, 0.8);
--apple-card-hover: rgba(30, 30, 32, 0.95);
/* Borders & Glass */
--apple-border: rgba(255, 255, 255, 0.08);
--apple-border-focus: rgba(255, 255, 255, 0.25);
--apple-blur: blur(24px) saturate(180%);
/* Text */
--apple-text-white: #F5F5F7;
--apple-text-silver: #A1A1A6;
--apple-text-muted: #6E6E73;
/* Accent Colors */
--apple-blue: #0071E3;
--apple-blue-hover: #0077ED;
--apple-gold: #F59E0B;
--apple-cyan: #00F5D4;
}
```
---
## 3. Apple Bento Grid & Interactive Cards
```css
.apple-bento-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 20px;
}
.apple-card {
background: var(--apple-card);
border: 1px solid var(--apple-border);
border-radius: 28px;
padding: 36px;
backdrop-filter: var(--apple-blur);
-webkit-backdrop-filter: var(--apple-blur);
transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.apple-card:hover {
transform: translateY(-4px);
border-color: var(--apple-border-focus);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
```
---
## 4. Apple Pill Buttons & Micro-Interactions
```css
.apple-btn-primary {
background: #0071E3;
color: #FFFFFF;
font-weight: 600;
font-size: 14px;
padding: 12px 26px;
border-radius: 980px;
border: none;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.apple-btn-primary:hover {
background: #0077ED;
transform: scale(1.02);
box-shadow: 0 4px 20px rgba(0, 113, 227, 0.4);
}
.apple-btn-ghost {
background: rgba(255, 255, 255, 0.06);
color: #F5F5F7;
border: 1px solid rgba(255, 255, 255, 0.15);
font-weight: 600;
font-size: 14px;
padding: 12px 24px;
border-radius: 980px;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.apple-btn-ghost:hover {
background: rgba(255, 255, 255, 0.12);
border-color: rgba(255, 255, 255, 0.3);
transform: scale(1.02);
}
```
+18
View File
@@ -0,0 +1,18 @@
---
name: flutter-luxury-ui
description: >-
Ultra-luxury Flutter & Web UI Design System.
Use when building fluid animations, glassmorphism, Cupertino styling, custom painters,
and tactile mobile/web experiences in Flutter and responsive frontends.
---
# Luxury Flutter & Web UI Engineering Standards
This skill provides the architectural foundation for building multi-platform applications with Apple-grade fidelity.
## Key Principles:
1. **Typography:** SF Pro / SF Arabic & Alexandria with precise optical sizing and letter-spacing (`-0.015em`).
2. **Atmospheric Lighting:** Deep OLED dark canvases (`#000000`) accented with subtle radial ambient glow orbs.
3. **Materials & Depth:** Frosted glass cards with `BackdropFilter` (Flutter) or `backdrop-filter: blur(24px)` (Web).
4. **Fluid Curves:** Cupertino bezier curves (`Curves.easeOutCubic` / `cubic-bezier(0.16, 1, 0.3, 1)`).
5. **Tactile Micro-interactions:** Instant responsive feedback, subtle scale transformations on touch/hover (`transform: scale(0.98)` on press, `scale(1.02)` on hover).
+268 -278
View File
@@ -17,63 +17,59 @@ class LandingPage
<!-- Apple SF Pro & Alexandria Arabic Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<!-- Apple-Grade Luxury Cupertino CSS Design System -->
<!-- Apple Official Design System (Cupertino Dark Mode) -->
<style>
:root {
--bg-base: #030712;
--bg-surface-1: rgba(17, 24, 39, 0.7);
--bg-surface-2: rgba(31, 41, 55, 0.5);
--bg-glass: rgba(255, 255, 255, 0.03);
--bg-glass-hover: rgba(255, 255, 255, 0.06);
--border-glass: rgba(255, 255, 255, 0.08);
--border-glass-bright: rgba(255, 255, 255, 0.18);
--text-primary: #F9FAFB;
--text-secondary: #D1D5DB;
--text-muted: #9CA3AF;
--apple-bg: #000000;
--apple-surface: #121214;
--apple-surface-card: #161617;
--apple-surface-hover: #1C1C1E;
--apple-border: rgba(255, 255, 255, 0.08);
--apple-border-focus: rgba(255, 255, 255, 0.2);
--apple-text-white: #F5F5F7;
--apple-text-silver: #A1A1A6;
--apple-text-muted: #6E6E73;
--apple-blue: #0071E3;
--apple-blue-hover: #0077ED;
--apple-cyan: #00F5D4;
--apple-gold: #F59E0B;
--apple-gold-light: #FDE68A;
--apple-cyan: #06B6D4;
--apple-cyan-glow: #22D3EE;
--apple-green: #10B981;
--apple-purple: #8B5CF6;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Alexandria", "SF Pro Display", "SF Pro Text", "SF Arabic", "Segoe UI", Roboto, sans-serif;
font-family: -apple-system, BlinkMacSystemFont, "SF Pro AR", "SF Pro Display", "SF Pro Text", "SF Arabic", "Alexandria", "Segoe UI", Roboto, sans-serif;
letter-spacing: -0.015em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
background-color: var(--bg-base);
color: var(--text-primary);
background-color: var(--apple-bg);
color: var(--apple-text-white);
min-height: 100vh;
overflow-x: hidden;
background-image:
radial-gradient(circle at 50% -10%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
radial-gradient(circle at 10% 40%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
radial-gradient(circle at 50% 0%, rgba(0, 113, 227, 0.18) 0%, transparent 60%),
radial-gradient(circle at 85% 30%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
radial-gradient(circle at 15% 70%, rgba(0, 245, 212, 0.06) 0%, transparent 50%);
background-size: 100% 100%;
}
.container {
max-width: 1200px;
max-width: 1180px;
margin: 0 auto;
padding: 0 24px;
width: 100%;
}
/* Apple Glass Navigation Bar */
/* Apple Glass Navigation */
header {
border-bottom: 1px solid var(--border-glass);
background-color: rgba(3, 7, 18, 0.8);
border-bottom: 1px solid var(--apple-border);
background-color: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(24px) saturate(180%);
-webkit-backdrop-filter: blur(24px) saturate(180%);
position: sticky;
@@ -81,7 +77,7 @@ class LandingPage
z-index: 100;
}
.header-content {
height: 72px;
height: 64px;
display: flex;
align-items: center;
justify-content: space-between;
@@ -93,23 +89,23 @@ class LandingPage
text-decoration: none;
}
.logo-badge {
width: 42px;
height: 42px;
border-radius: 12px;
background: linear-gradient(135deg, #06B6D4, #3B82F6);
width: 38px;
height: 38px;
border-radius: 10px;
background: linear-gradient(135deg, #0071E3, #00F5D4);
display: flex;
align-items: center;
justify-content: center;
color: #FFFFFF;
font-size: 22px;
font-weight: 900;
box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35);
}
.brand-title {
font-size: 20px;
font-weight: 800;
box-shadow: 0 4px 16px rgba(0, 113, 227, 0.35);
}
.brand-title {
font-size: 19px;
font-weight: 800;
color: #FFFFFF;
letter-spacing: -0.5px;
letter-spacing: -0.03em;
}
.nav-actions {
@@ -117,10 +113,10 @@ class LandingPage
align-items: center;
gap: 12px;
}
.nav-btn {
font-size: 13px;
font-weight: 700;
padding: 8px 18px;
.apple-pill-btn {
font-size: 12.5px;
font-weight: 600;
padding: 7px 18px;
border-radius: 980px;
text-decoration: none;
transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
@@ -128,88 +124,86 @@ class LandingPage
align-items: center;
gap: 6px;
}
.nav-btn-ghost {
color: var(--text-secondary);
.btn-nav-ghost {
color: var(--apple-text-silver);
border: 1px solid transparent;
}
.nav-btn-ghost:hover {
color: #FFF;
background: rgba(255, 255, 255, 0.06);
.btn-nav-ghost:hover {
color: #FFFFFF;
background: rgba(255, 255, 255, 0.08);
}
.nav-btn-gold {
.btn-nav-military {
background: rgba(245, 158, 11, 0.12);
color: #FBBF24;
border: 1px solid rgba(245, 158, 11, 0.3);
}
.nav-btn-gold:hover {
background: rgba(245, 158, 11, 0.2);
transform: translateY(-1px);
.btn-nav-military:hover {
background: rgba(245, 158, 11, 0.22);
transform: scale(1.02);
}
.nav-btn-primary {
background: #FFFFFF;
color: #030712 !important;
font-weight: 800;
box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
.btn-nav-primary {
background: var(--apple-blue);
color: #FFFFFF !important;
box-shadow: 0 2px 10px rgba(0, 113, 227, 0.3);
}
.nav-btn-primary:hover {
background: #F3F4F6;
transform: translateY(-1px);
box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
.btn-nav-primary:hover {
background: var(--apple-blue-hover);
transform: scale(1.02);
box-shadow: 0 4px 16px rgba(0, 113, 227, 0.45);
}
/* Apple Hero Section */
.hero-section {
padding: 90px 0 60px;
padding: 96px 0 64px;
text-align: center;
position: relative;
}
.hero-pill {
.apple-badge {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 12px;
font-weight: 700;
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border-glass-bright);
color: var(--text-primary);
font-weight: 600;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.12);
color: var(--apple-text-silver);
padding: 6px 18px;
border-radius: 980px;
margin-bottom: 28px;
backdrop-filter: blur(12px);
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.pill-dot {
.badge-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: #06B6D4;
box-shadow: 0 0 8px #06B6D4;
background: var(--apple-cyan);
box-shadow: 0 0 10px var(--apple-cyan);
}
.hero-title {
font-size: clamp(32px, 5.5vw, 56px);
font-weight: 900;
line-height: 1.25;
color: #FFFFFF;
max-width: 980px;
font-size: clamp(34px, 5.5vw, 60px);
font-weight: 800;
line-height: 1.15;
color: var(--apple-text-white);
max-width: 960px;
margin: 0 auto 24px;
letter-spacing: -1px;
letter-spacing: -0.03em;
}
.gradient-text-cyan {
background: linear-gradient(135deg, #22D3EE 0%, #3B82F6 100%);
.hero-title-gradient {
background: linear-gradient(180deg, #FFFFFF 0%, #A1A1A6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.gradient-text-gold {
background: linear-gradient(135deg, #FDE68A 0%, #F59E0B 100%);
.hero-cyan-glow {
background: linear-gradient(135deg, #00F5D4 0%, #0071E3 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-desc {
font-size: clamp(15px, 2vw, 18px);
color: var(--text-secondary);
max-width: 760px;
margin: 0 auto 40px;
line-height: 1.8;
font-size: clamp(16px, 2vw, 19px);
color: var(--apple-text-silver);
max-width: 740px;
margin: 0 auto 44px;
line-height: 1.7;
font-weight: 400;
}
@@ -218,73 +212,72 @@ class LandingPage
justify-content: center;
gap: 16px;
flex-wrap: wrap;
margin-bottom: 60px;
margin-bottom: 72px;
}
.cta-btn-apple-main {
padding: 15px 36px;
.apple-main-btn {
padding: 14px 34px;
font-size: 15px;
font-weight: 800;
font-weight: 600;
border-radius: 980px;
text-decoration: none;
background: linear-gradient(135deg, #06B6D4, #2563EB);
background: var(--apple-blue);
color: #FFFFFF;
box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
box-shadow: 0 6px 24px rgba(0, 113, 227, 0.4);
transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
display: inline-flex;
align-items: center;
gap: 8px;
}
.cta-btn-apple-main:hover {
transform: translateY(-2px);
box-shadow: 0 12px 36px rgba(6, 182, 212, 0.55);
.apple-main-btn:hover {
background: var(--apple-blue-hover);
transform: scale(1.02);
box-shadow: 0 10px 32px rgba(0, 113, 227, 0.55);
}
.cta-btn-apple-secondary {
padding: 15px 30px;
.apple-secondary-btn {
padding: 14px 28px;
font-size: 15px;
font-weight: 700;
font-weight: 600;
border-radius: 980px;
text-decoration: none;
background: var(--bg-glass);
color: #FFFFFF;
border: 1px solid var(--border-glass-bright);
background: rgba(255, 255, 255, 0.06);
color: var(--apple-text-white);
border: 1px solid rgba(255, 255, 255, 0.15);
backdrop-filter: blur(12px);
transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-btn-apple-secondary:hover {
background: var(--bg-glass-hover);
.apple-secondary-btn:hover {
background: rgba(255, 255, 255, 0.12);
border-color: rgba(255, 255, 255, 0.3);
transform: translateY(-1px);
transform: scale(1.02);
}
/* Glass Trust Metrics Bar */
.trust-bar {
/* Apple Metric Bar */
.metrics-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
background: var(--bg-glass);
border: 1px solid var(--border-glass);
gap: 16px;
background: var(--apple-surface-card);
border: 1px solid var(--apple-border);
border-radius: 24px;
padding: 28px 36px;
backdrop-filter: blur(20px);
margin-bottom: 90px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
margin-bottom: 96px;
}
.trust-item { text-align: center; }
.trust-num {
font-size: 36px;
font-weight: 900;
.metric-col { text-align: center; }
.metric-val {
font-size: 38px;
font-weight: 800;
color: #FFFFFF;
display: block;
letter-spacing: -1px;
letter-spacing: -0.03em;
}
.trust-label {
.metric-label {
font-size: 13px;
color: var(--text-muted);
font-weight: 600;
color: var(--apple-text-muted);
font-weight: 500;
margin-top: 4px;
}
/* Section Layouts */
/* Bento Grid Showcase */
.section-header {
text-align: center;
margin-bottom: 56px;
@@ -292,81 +285,79 @@ class LandingPage
.section-tag {
font-size: 12px;
font-weight: 700;
color: #FBBF24;
background: rgba(245, 158, 11, 0.1);
border: 1px solid rgba(245, 158, 11, 0.25);
color: var(--apple-cyan);
background: rgba(0, 245, 212, 0.1);
border: 1px solid rgba(0, 245, 212, 0.25);
padding: 5px 16px;
border-radius: 980px;
display: inline-block;
margin-bottom: 14px;
}
.section-title {
font-size: clamp(26px, 4vw, 38px);
font-weight: 900;
color: #FFFFFF;
letter-spacing: -0.5px;
font-size: clamp(28px, 4vw, 42px);
font-weight: 800;
color: var(--apple-text-white);
letter-spacing: -0.025em;
margin-bottom: 14px;
}
.section-subtitle {
font-size: 16px;
color: var(--text-muted);
max-width: 680px;
color: var(--apple-text-silver);
max-width: 660px;
margin: 0 auto;
line-height: 1.7;
}
/* Apple Grid Cards */
.features-grid {
.bento-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 24px;
margin-bottom: 90px;
gap: 20px;
margin-bottom: 96px;
}
.feature-card {
background: var(--bg-glass);
border: 1px solid var(--border-glass);
border-radius: 24px;
padding: 36px;
backdrop-filter: blur(20px);
transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
.bento-card {
background: var(--apple-surface-card);
border: 1px solid var(--apple-border);
border-radius: 28px;
padding: 38px;
transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
position: relative;
overflow: hidden;
}
.feature-card:hover {
.bento-card:hover {
transform: translateY(-4px);
border-color: rgba(6, 182, 212, 0.4);
background: var(--bg-glass-hover);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
border-color: var(--apple-border-focus);
background: var(--apple-surface-hover);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.card-icon {
width: 52px;
height: 52px;
border-radius: 16px;
.bento-icon {
width: 50px;
height: 50px;
border-radius: 14px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border-glass-bright);
border: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-size: 22px;
margin-bottom: 22px;
}
.card-title {
.bento-title {
font-size: 19px;
font-weight: 800;
color: #FFFFFF;
font-weight: 700;
color: var(--apple-text-white);
margin-bottom: 10px;
letter-spacing: -0.3px;
letter-spacing: -0.02em;
}
.card-desc {
.bento-desc {
font-size: 14px;
color: var(--text-secondary);
color: var(--apple-text-silver);
line-height: 1.75;
font-weight: 400;
}
/* Institutional Special Feature Banner */
.b2g-banner {
background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(31, 41, 55, 0.8) 100%);
/* Institutional Banner */
.military-banner {
background: linear-gradient(135deg, #121214 0%, #1A1A1E 100%);
border: 1px solid rgba(245, 158, 11, 0.35);
border-radius: 28px;
padding: 48px;
@@ -374,20 +365,19 @@ class LandingPage
grid-template-columns: 1.3fr 1fr;
gap: 40px;
align-items: center;
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
margin-bottom: 90px;
backdrop-filter: blur(20px);
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
margin-bottom: 96px;
}
@media (max-width: 880px) {
.b2g-banner { grid-template-columns: 1fr; padding: 32px; gap: 28px; }
.military-banner { grid-template-columns: 1fr; padding: 32px; gap: 28px; }
}
.b2g-badge {
.banner-pill {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 12px;
font-weight: 800;
font-weight: 700;
background: rgba(245, 158, 11, 0.15);
border: 1px solid rgba(245, 158, 11, 0.35);
color: #FBBF24;
@@ -395,24 +385,24 @@ class LandingPage
border-radius: 980px;
margin-bottom: 18px;
}
.b2g-title {
.banner-title {
font-size: 28px;
font-weight: 900;
color: #FFFFFF;
font-weight: 800;
color: var(--apple-text-white);
margin-bottom: 14px;
line-height: 1.35;
letter-spacing: -0.5px;
letter-spacing: -0.025em;
}
.b2g-desc {
.banner-desc {
font-size: 15px;
color: var(--text-secondary);
color: var(--apple-text-silver);
line-height: 1.75;
margin-bottom: 24px;
}
.b2g-btn {
.banner-btn {
padding: 13px 30px;
font-size: 14.5px;
font-weight: 800;
font-weight: 600;
border-radius: 980px;
text-decoration: none;
background: linear-gradient(135deg, #F59E0B, #D97706);
@@ -423,44 +413,44 @@ class LandingPage
box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.b2g-btn:hover {
transform: translateY(-2px);
.banner-btn:hover {
transform: scale(1.02);
box-shadow: 0 10px 28px rgba(245, 158, 11, 0.5);
}
.b2g-card-stat {
background: rgba(3, 7, 18, 0.6);
border: 1px solid var(--border-glass);
.banner-card-box {
background: rgba(0, 0, 0, 0.6);
border: 1px solid var(--apple-border);
border-radius: 20px;
padding: 26px;
}
.b2g-stat-item {
.banner-stat-row {
display: flex;
align-items: flex-start;
gap: 14px;
margin-bottom: 18px;
}
.b2g-stat-item:last-child { margin-bottom: 0; }
.b2g-icon-check {
width: 28px;
height: 28px;
border-radius: 8px;
background: rgba(6, 182, 212, 0.15);
color: #22D3EE;
.banner-stat-row:last-child { margin-bottom: 0; }
.banner-check-icon {
width: 26px;
height: 26px;
border-radius: 50%;
background: rgba(0, 245, 212, 0.15);
color: var(--apple-cyan);
display: flex;
align-items: center;
justify-content: center;
font-weight: 900;
font-size: 14px;
font-weight: 800;
font-size: 13px;
flex-shrink: 0;
}
/* Apple Luxury Footer */
/* Apple Footer */
footer {
border-top: 1px solid var(--border-glass);
background: #020617;
border-top: 1px solid var(--apple-border);
background: #000000;
padding: 56px 0 28px;
color: var(--text-muted);
color: var(--apple-text-muted);
font-size: 13px;
}
.footer-grid {
@@ -472,24 +462,24 @@ class LandingPage
@media (max-width: 768px) {
.footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-col-title {
font-size: 14px;
.footer-title {
font-size: 13.5px;
font-weight: 700;
color: #FFFFFF;
color: var(--apple-text-white);
margin-bottom: 16px;
}
.footer-links {
.footer-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
}
.footer-links a {
color: var(--text-muted);
.footer-list a {
color: var(--apple-text-muted);
text-decoration: none;
transition: color 0.2s;
}
.footer-links a:hover { color: #22D3EE; }
.footer-list a:hover { color: var(--apple-text-white); }
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.05);
padding-top: 24px;
@@ -512,11 +502,11 @@ class LandingPage
</a>
<div class="nav-actions">
<a href="/military-culture" class="nav-btn nav-btn-gold">
<a href="/military-culture" class="apple-pill-btn btn-nav-military">
<span>🇯🇴 خطة الثقافة العسكرية</span>
</a>
<a href="/teacher" class="nav-btn nav-btn-ghost">استوديو المعلمين</a>
<a href="/student" class="nav-btn nav-btn-primary">دخول الطلاب 🚀</a>
<a href="/teacher" class="apple-pill-btn btn-nav-ghost">استوديو المعلمين</a>
<a href="/student" class="apple-pill-btn btn-nav-primary">دخول الطلاب 🚀</a>
</div>
</div>
</div>
@@ -525,14 +515,14 @@ class LandingPage
<!-- Apple Hero Section -->
<section class="hero-section">
<div class="container">
<div class="hero-pill">
<span class="pill-dot"></span>
<div class="apple-badge">
<span class="badge-dot"></span>
<span>الجيل الثاني لمنصات التمكين الأكاديمي والتوجيهي في الأردن</span>
</div>
<h1 class="hero-title">
لا نكتفي بعرض الفيديوهات.. <br>
نحن <span class="gradient-text-cyan">نصقل فهم الطالب</span> ونضمن <span class="gradient-text-gold">جاهزيته للوزاري</span>
<span class="hero-title-gradient">نحن نصقل فهم الطالب</span> ونضمن <span class="hero-cyan-glow">جاهزيته للوزاري</span>
</h1>
<p class="hero-desc">
@@ -540,40 +530,40 @@ class LandingPage
</p>
<div class="hero-cta-group">
<a href="/student" class="cta-btn-apple-main">
<a href="/student" class="apple-main-btn">
<span>ابدأ رحلة التميز كطالب ←</span>
</a>
<a href="/teacher" class="cta-btn-apple-secondary">
<a href="/teacher" class="apple-secondary-btn">
<span>انضم كأستاذ معتمد (استوديو صَقِل) 👨‍🏫</span>
</a>
<a href="/military-culture" class="cta-btn-apple-secondary" style="border-color: rgba(245, 158, 11, 0.4); color: #FBBF24;">
<a href="/military-culture" class="apple-secondary-btn" style="border-color: rgba(245, 158, 11, 0.35); color: #FBBF24;">
<span>مبادرة مديرية الثقافة العسكرية 🇯🇴</span>
</a>
</div>
<!-- Trust Metrics Bar -->
<div class="trust-bar">
<div class="trust-item">
<span class="trust-num">100%</span>
<span class="trust-label">حماية محتوى DRM ضد التسريب</span>
<!-- Apple Metric Bar -->
<div class="metrics-grid">
<div class="metric-col">
<span class="metric-val">100%</span>
<span class="metric-label">حماية محتوى DRM ضد التسريب</span>
</div>
<div class="trust-item">
<span class="trust-num">0ms</span>
<span class="trust-label">تأخير في الشات المباشر (Workerman)</span>
<div class="metric-col">
<span class="metric-val">0ms</span>
<span class="metric-label">تأخير في الشات المباشر (Workerman)</span>
</div>
<div class="trust-item">
<span class="trust-num">4 مستويات</span>
<span class="trust-label">هرمية الامتحانات والتقييم المعرفي</span>
<div class="metric-col">
<span class="metric-val">4 مستويات</span>
<span class="metric-label">هرمية الامتحانات والتقييم المعرفي</span>
</div>
<div class="trust-item">
<span class="trust-num">91.4%</span>
<span class="trust-label">متوسط إتقان واستيعاب المفاهيم</span>
<div class="metric-col">
<span class="metric-val">91.4%</span>
<span class="metric-label">متوسط إتقان واستيعاب المفاهيم</span>
</div>
</div>
</div>
</section>
<!-- Core Pillars -->
<!-- Core Pillars Bento Grid -->
<section style="padding: 20px 0 60px;">
<div class="container">
<div class="section-header">
@@ -584,97 +574,97 @@ class LandingPage
</p>
</div>
<div class="features-grid">
<div class="bento-grid">
<!-- Card 1 -->
<div class="feature-card">
<div class="card-icon">🎬</div>
<h3 class="card-title">محرك التثبيت المعرفي السقراطي (Active Recall)</h3>
<p class="card-desc">
<div class="bento-card">
<div class="bento-icon">🎬</div>
<h3 class="bento-title">محرك التثبيت المعرفي السقراطي (Active Recall)</h3>
<p class="bento-desc">
فحص لحظي ذكي لاستيعاب الطالب أثناء الحصة؛ يُلزم الطالب بالاشتباك الذهني وتأكيد فهم كل مفهوم قبل الانتقال إلى الفكرة التالية لضمان التمكن التام.
</p>
</div>
<!-- Card 2 -->
<div class="feature-card">
<div class="card-icon">🧠</div>
<h3 class="card-title">مؤشر الجاهزية للوزاري (Tawjihi Readiness)</h3>
<p class="card-desc">
<div class="bento-card">
<div class="bento-icon">🧠</div>
<h3 class="bento-title">مؤشر الجاهزية للوزاري (Tawjihi Readiness)</h3>
<p class="bento-desc">
تحليل تراكمي دقيق لمستوى فهم الطالب في كل مبحث، يرصد نقاط القوة والضعف ويحدد بدقة نسبة الجاهزية لدخول الامتحان الوزاري بتفوق.
</p>
</div>
<!-- Card 3 -->
<div class="feature-card">
<div class="card-icon">⚡</div>
<h3 class="card-title">قناة الإشراف والتواصل المباشر مع المعلمين</h3>
<p class="card-desc">
<div class="bento-card">
<div class="bento-icon">⚡</div>
<h3 class="bento-title">قناة الإشراف والتواصل المباشر مع المعلمين</h3>
<p class="bento-desc">
بيئة تفاعلية لحظية تتيح للطالب الاستفسار المباشر من أستاذه ومناقشة المسائل المعقدة دون أي عوائق تقنية أو تأخير.
</p>
</div>
<!-- Card 4 -->
<div class="feature-card">
<div class="card-icon">🔒</div>
<h3 class="card-title">حماية المحتوى والأمان الرقمي (DRM Shield)</h3>
<p class="card-desc">
<div class="bento-card">
<div class="bento-icon">🔒</div>
<h3 class="bento-title">حماية المحتوى والأمان الرقمي (DRM Shield)</h3>
<p class="bento-desc">
بنية تحتية سيادية مشفرة بالكامل تحمي المواد التعليمية وحقوق المعلمين والمؤسسات من أي تسريب أو تصوير غير مصرح به.
</p>
</div>
<!-- Card 5 -->
<div class="feature-card">
<div class="card-icon">📲</div>
<h3 class="card-title">الدخول الذكي المعتمد (Passwordless Access)</h3>
<p class="card-desc">
<div class="bento-card">
<div class="bento-icon">📲</div>
<h3 class="bento-title">الدخول الذكي المعتمد (Passwordless Access)</h3>
<p class="bento-desc">
تجربة وصول فائقة السلاسة والأمان عبر بطاقات التوثيق المعتمدة على الواتساب وبصمة الجهاز الموحدة وفق أعلى معايير الخصوصية.
</p>
</div>
<!-- Card 6 -->
<div class="feature-card">
<div class="card-icon">👨‍👩‍👧</div>
<h3 class="card-title">منظومة إشعار ومتابعة أولياء الأمور</h3>
<p class="card-desc">
<div class="bento-card">
<div class="bento-icon">👨‍👩‍👧</div>
<h3 class="bento-title">منظومة إشعار ومتابعة أولياء الأمور</h3>
<p class="bento-desc">
تقارير دورية موجزة تصل لولي الأمر لإبقائه في قلب المسيرة التعليمية ومتابعة تحصيل ابنه وساعات دراسته ومؤشر تفوقه.
</p>
</div>
</div>
<!-- B2G Institutional Banner -->
<div class="b2g-banner">
<div class="military-banner">
<div>
<div class="b2g-badge">🇯🇴 مبادرة الشراكة الاستراتيجية والمؤسسية</div>
<h2 class="b2g-title">حلول مخصصة لمديرية التربية والتعليم والثقافة العسكرية</h2>
<p class="b2g-desc">
<div class="banner-pill">🇯🇴 مبادرة الشراكة الاستراتيجية والمؤسسية</div>
<h2 class="banner-title">حلول مخصصة لمديرية التربية والتعليم والثقافة العسكرية</h2>
<p class="banner-desc">
نقدم للمديرية نموذجاً متكاملاً لشراء المخرجات والإنتاج بأقل التكاليف التشغيلية، مع توحيد جودة التعليم في مدارس البادية والمحافظات وغرفة عمليات مركزية لمتابعة إنجاز كل طالب.
</p>
<a href="/military-culture" class="b2g-btn">
<a href="/military-culture" class="banner-btn">
<span>استعرض ملف المبادرة الاستراتيجية الكاملة ←</span>
</a>
</div>
<div class="b2g-card-stat">
<div class="b2g-stat-item">
<div class="b2g-icon-check">✓</div>
<div class="banner-card-box">
<div class="banner-stat-row">
<div class="banner-check-icon">✓</div>
<div>
<strong style="color: #FFF; font-size: 14px; display: block;">عدالة تعليمية شاملة</strong>
<span style="font-size: 12.5px; color: var(--text-muted);">نفس جودة نخبة المعلمين لجميع أبناء القوات المسلحة في كل المحافظات.</span>
<strong style="color: #FFFFFF; font-size: 14px; display: block;">عدالة تعليمية شاملة</strong>
<span style="font-size: 12.5px; color: var(--apple-text-muted);">نفس جودة نخبة المعلمين لجميع أبناء القوات المسلحة في كل المحافظات.</span>
</div>
</div>
<div class="b2g-stat-item">
<div class="b2g-icon-check">✓</div>
<div class="banner-stat-row">
<div class="banner-check-icon">✓</div>
<div>
<strong style="color: #FFF; font-size: 14px; display: block;">لوحة قيادة مركزية للضباط</strong>
<span style="font-size: 12.5px; color: var(--text-muted);">متابعة تحصيل كل مدرسة وشعبة لحظياً بمؤشرات أداء واضحة.</span>
<strong style="color: #FFFFFF; font-size: 14px; display: block;">لوحة قيادة مركزية للضباط</strong>
<span style="font-size: 12.5px; color: var(--apple-text-muted);">متابعة تحصيل كل مدرسة وشعبة لحظياً بمؤشرات أداء واضحة.</span>
</div>
</div>
<div class="b2g-stat-item">
<div class="b2g-icon-check">✓</div>
<div class="banner-stat-row">
<div class="banner-check-icon">✓</div>
<div>
<strong style="color: #FFF; font-size: 14px; display: block;">توفير 80% من التكاليف</strong>
<span style="font-size: 12.5px; color: var(--text-muted);">إلغاء تكاليف المراكز والتنقل والطباعة مع مخرجات أعلى جودة.</span>
<strong style="color: #FFFFFF; font-size: 14px; display: block;">توفير 80% من التكاليف</strong>
<span style="font-size: 12.5px; color: var(--apple-text-muted);">إلغاء تكاليف المراكز والتنقل والطباعة مع مخرجات أعلى جودة.</span>
</div>
</div>
</div>
@@ -683,23 +673,23 @@ class LandingPage
</div>
</section>
<!-- Footer -->
<!-- Apple Footer -->
<footer>
<div class="container">
<div class="footer-grid">
<div>
<div class="logo-area" style="margin-bottom: 14px;">
<div class="logo-badge" style="width: 36px; height: 36px; font-size: 18px;">صـ</div>
<span class="brand-title" style="font-size: 19px;">منصة صَقِل</span>
<div class="logo-badge" style="width: 34px; height: 34px; font-size: 17px;">صـ</div>
<span class="brand-title" style="font-size: 18px;">منصة صَقِل</span>
</div>
<p style="font-size: 13.5px; line-height: 1.7; max-width: 380px;">
<p style="font-size: 13px; line-height: 1.7; max-width: 380px; color: var(--apple-text-muted);">
المنظومة الأردنية الرائدة في التمكين الأكاديمي والتعليم السقراطي الذكي لطلبة التوجيهي والمراحل الثانوية.
</p>
</div>
<div>
<h4 class="footer-col-title">البوابات والخدمات</h4>
<ul class="footer-links">
<h4 class="footer-title">البوابات والخدمات</h4>
<ul class="footer-list">
<li><a href="/student">بوابة الطالب الذكية</a></li>
<li><a href="/teacher">استوديو المعلمين ونظام الشراكة</a></li>
<li><a href="/military-culture">ملف مديرية الثقافة العسكرية</a></li>
@@ -707,8 +697,8 @@ class LandingPage
</div>
<div>
<h4 class="footer-col-title">الأمان والخصوصية</h4>
<ul class="footer-links">
<h4 class="footer-title">الأمان والخصوصية</h4>
<ul class="footer-list">
<li><a href="#">حماية المحتوى DRM</a></li>
<li><a href="#">السيادة الرقمية وتشفير البيانات</a></li>
<li><a href="#">معايير Zero-Trust</a></li>
@@ -718,7 +708,7 @@ class LandingPage
<div class="footer-bottom">
<span>جميع الحقوق محفوظة © لمنصة صَقِل التعليمية 2026</span>
<span style="color: #22D3EE;">بنية تحتية سحابية موثوقة • عمان، الأردن 🇯🇴</span>
<span style="color: var(--apple-text-silver);">بنية تحتية سحابية موثوقة • عمان، الأردن 🇯🇴</span>
</div>
</div>
</footer>