Update index.html
Browse files- index.html +67 -86
index.html
CHANGED
|
@@ -3,117 +3,97 @@
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>Klove AI |
|
| 7 |
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">
|
| 8 |
<style>
|
| 9 |
:root {
|
| 10 |
-
--brand-primary: #
|
| 11 |
-
--brand-
|
| 12 |
-
--bg-
|
| 13 |
-
--surface-
|
| 14 |
-
--border-
|
| 15 |
-
--
|
| 16 |
-
--text-
|
|
|
|
| 17 |
}
|
| 18 |
|
| 19 |
-
/*
|
| 20 |
html, body {
|
| 21 |
-
min-height:
|
| 22 |
-
background-color: var(--bg-
|
|
|
|
|
|
|
| 23 |
}
|
| 24 |
|
| 25 |
-
* {
|
| 26 |
|
| 27 |
body {
|
| 28 |
font-family: 'Inter', system-ui, -apple-system, sans-serif;
|
| 29 |
-
color: var(--text-
|
| 30 |
overflow-x: hidden;
|
| 31 |
display: flex;
|
| 32 |
flex-direction: column;
|
| 33 |
align-items: center;
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
background-image:
|
| 37 |
-
linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
|
| 38 |
-
linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
|
| 39 |
-
background-size: 40px 40px;
|
| 40 |
-
}
|
| 41 |
-
|
| 42 |
-
.glow {
|
| 43 |
-
position: fixed;
|
| 44 |
-
top: -10%;
|
| 45 |
-
left: 50%;
|
| 46 |
-
transform: translateX(-50%);
|
| 47 |
-
width: 100vw;
|
| 48 |
-
height: 60vh;
|
| 49 |
-
background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
|
| 50 |
-
z-index: -1;
|
| 51 |
-
pointer-events: none;
|
| 52 |
}
|
| 53 |
|
| 54 |
.enterprise-container {
|
| 55 |
-
max-width:
|
| 56 |
width: 100%;
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
backdrop-filter: blur(12px);
|
| 61 |
-
-webkit-backdrop-filter: blur(12px);
|
| 62 |
-
border: 1px solid var(--border-subtle);
|
| 63 |
-
border-radius: 16px;
|
| 64 |
-
padding: clamp(30px, 8vw, 70px);
|
| 65 |
-
box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.7);
|
| 66 |
}
|
| 67 |
|
| 68 |
.badge {
|
| 69 |
display: inline-flex;
|
| 70 |
align-items: center;
|
| 71 |
-
background:
|
| 72 |
-
color:
|
| 73 |
-
font-size: 0.
|
| 74 |
font-weight: 700;
|
| 75 |
text-transform: uppercase;
|
| 76 |
-
letter-spacing: 0.
|
| 77 |
-
padding:
|
| 78 |
-
border-radius:
|
| 79 |
-
border: 1px solid rgba(59, 130, 246, 0.2);
|
| 80 |
margin-bottom: 32px;
|
| 81 |
}
|
| 82 |
|
| 83 |
.main-title {
|
| 84 |
-
font-size: clamp(2rem, 6vw, 3.
|
| 85 |
font-weight: 800;
|
| 86 |
-
line-height: 1.
|
| 87 |
-
letter-spacing: -0.
|
| 88 |
-
margin-bottom:
|
| 89 |
-
|
| 90 |
-
-webkit-background-clip: text;
|
| 91 |
-
-webkit-text-fill-color: transparent;
|
| 92 |
}
|
| 93 |
|
| 94 |
.content-body {
|
| 95 |
-
font-size: clamp(
|
| 96 |
-
line-height: 1.
|
| 97 |
-
color: var(--text-
|
| 98 |
}
|
| 99 |
|
| 100 |
.section-block {
|
| 101 |
-
margin-bottom:
|
|
|
|
|
|
|
| 102 |
}
|
| 103 |
|
| 104 |
.section-label {
|
| 105 |
display: block;
|
| 106 |
-
color: var(--text-
|
| 107 |
-
font-weight:
|
| 108 |
-
font-size: 0.
|
| 109 |
-
|
| 110 |
-
|
|
|
|
| 111 |
}
|
| 112 |
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
margin: 48px 0 32px 0;
|
| 117 |
}
|
| 118 |
|
| 119 |
.footer-grid {
|
|
@@ -122,22 +102,26 @@
|
|
| 122 |
align-items: center;
|
| 123 |
flex-wrap: wrap;
|
| 124 |
gap: 20px;
|
|
|
|
|
|
|
|
|
|
| 125 |
}
|
| 126 |
|
| 127 |
.nav-links a {
|
| 128 |
-
color: var(--text-
|
| 129 |
text-decoration: none;
|
| 130 |
font-size: 0.85rem;
|
| 131 |
margin-right: 24px;
|
| 132 |
-
font-weight:
|
| 133 |
-
transition:
|
| 134 |
}
|
| 135 |
|
| 136 |
-
.nav-links a:hover {
|
| 137 |
|
| 138 |
.legal-tag {
|
| 139 |
font-size: 0.8rem;
|
| 140 |
-
|
|
|
|
| 141 |
}
|
| 142 |
|
| 143 |
@media (max-width: 600px) {
|
|
@@ -147,37 +131,34 @@
|
|
| 147 |
</style>
|
| 148 |
</head>
|
| 149 |
<body>
|
| 150 |
-
<div class="glow"></div>
|
| 151 |
|
| 152 |
<div class="enterprise-container">
|
| 153 |
-
<span class="badge">
|
| 154 |
|
| 155 |
-
<h1 class="main-title">Klove AI
|
| 156 |
|
| 157 |
<div class="content-body">
|
| 158 |
<div class="section-block">
|
| 159 |
-
<span class="section-label">The Insight</span>
|
| 160 |
-
<p>
|
| 161 |
</div>
|
| 162 |
|
| 163 |
<div class="section-block">
|
| 164 |
-
<span class="section-label">The Craft</span>
|
| 165 |
-
<p>We engineered a lens, not just a platform. By decoding the invisible threads between current skillsets and future potential, we combined proprietary intelligence with human-centric design to create a definitive foundation for
|
| 166 |
</div>
|
| 167 |
|
| 168 |
<div class="section-block">
|
| 169 |
-
<span class="section-label">The Purpose</span>
|
| 170 |
-
<p>Klove AI exists to transform
|
| 171 |
</div>
|
| 172 |
</div>
|
| 173 |
|
| 174 |
-
<hr>
|
| 175 |
-
|
| 176 |
<div class="footer-grid">
|
| 177 |
<div class="nav-links">
|
| 178 |
-
<a href="#">
|
| 179 |
<a href="#">LinkedIn</a>
|
| 180 |
-
<a href="#">
|
| 181 |
</div>
|
| 182 |
<div class="legal-tag">
|
| 183 |
© 2026 Klove AI Systems Inc.
|
|
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Klove AI | Strategic Genesis</title>
|
| 7 |
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">
|
| 8 |
<style>
|
| 9 |
:root {
|
| 10 |
+
--brand-primary: #000000;
|
| 11 |
+
--brand-accent: #3b82f6;
|
| 12 |
+
--bg-white: #ffffff;
|
| 13 |
+
--surface-light: #f8fafc;
|
| 14 |
+
--border-bold: #000000;
|
| 15 |
+
--border-subtle: #e2e8f0;
|
| 16 |
+
--text-main: #000000;
|
| 17 |
+
--text-muted: #475569;
|
| 18 |
}
|
| 19 |
|
| 20 |
+
/* Clean Reset for HF Environment */
|
| 21 |
html, body {
|
| 22 |
+
min-height: 100vh;
|
| 23 |
+
background-color: var(--bg-white);
|
| 24 |
+
margin: 0;
|
| 25 |
+
padding: 0;
|
| 26 |
}
|
| 27 |
|
| 28 |
+
* { box-sizing: border-box; }
|
| 29 |
|
| 30 |
body {
|
| 31 |
font-family: 'Inter', system-ui, -apple-system, sans-serif;
|
| 32 |
+
color: var(--text-main);
|
| 33 |
overflow-x: hidden;
|
| 34 |
display: flex;
|
| 35 |
flex-direction: column;
|
| 36 |
align-items: center;
|
| 37 |
+
padding: clamp(1.5rem, 5vw, 4rem);
|
| 38 |
+
-webkit-font-smoothing: antialiased;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
}
|
| 40 |
|
| 41 |
.enterprise-container {
|
| 42 |
+
max-width: 800px;
|
| 43 |
width: 100%;
|
| 44 |
+
margin: auto;
|
| 45 |
+
background: var(--bg-white);
|
| 46 |
+
padding: clamp(20px, 5vw, 60px);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
}
|
| 48 |
|
| 49 |
.badge {
|
| 50 |
display: inline-flex;
|
| 51 |
align-items: center;
|
| 52 |
+
background: #000000;
|
| 53 |
+
color: #ffffff;
|
| 54 |
+
font-size: 0.65rem;
|
| 55 |
font-weight: 700;
|
| 56 |
text-transform: uppercase;
|
| 57 |
+
letter-spacing: 0.2em;
|
| 58 |
+
padding: 4px 12px;
|
| 59 |
+
border-radius: 2px;
|
|
|
|
| 60 |
margin-bottom: 32px;
|
| 61 |
}
|
| 62 |
|
| 63 |
.main-title {
|
| 64 |
+
font-size: clamp(2.2rem, 6vw, 3.5rem);
|
| 65 |
font-weight: 800;
|
| 66 |
+
line-height: 1.05;
|
| 67 |
+
letter-spacing: -0.04em;
|
| 68 |
+
margin-bottom: 56px;
|
| 69 |
+
color: var(--text-main);
|
|
|
|
|
|
|
| 70 |
}
|
| 71 |
|
| 72 |
.content-body {
|
| 73 |
+
font-size: clamp(1.05rem, 2vw, 1.2rem);
|
| 74 |
+
line-height: 1.7;
|
| 75 |
+
color: var(--text-main);
|
| 76 |
}
|
| 77 |
|
| 78 |
.section-block {
|
| 79 |
+
margin-bottom: 48px;
|
| 80 |
+
border-top: 1px solid var(--text-main);
|
| 81 |
+
padding-top: 24px;
|
| 82 |
}
|
| 83 |
|
| 84 |
.section-label {
|
| 85 |
display: block;
|
| 86 |
+
color: var(--text-main);
|
| 87 |
+
font-weight: 800;
|
| 88 |
+
font-size: 0.85rem;
|
| 89 |
+
text-transform: uppercase;
|
| 90 |
+
margin-bottom: 16px;
|
| 91 |
+
letter-spacing: 0.05em;
|
| 92 |
}
|
| 93 |
|
| 94 |
+
.section-text {
|
| 95 |
+
color: var(--text-muted);
|
| 96 |
+
font-weight: 450;
|
|
|
|
| 97 |
}
|
| 98 |
|
| 99 |
.footer-grid {
|
|
|
|
| 102 |
align-items: center;
|
| 103 |
flex-wrap: wrap;
|
| 104 |
gap: 20px;
|
| 105 |
+
margin-top: 40px;
|
| 106 |
+
padding-top: 24px;
|
| 107 |
+
border-top: 1px solid var(--border-subtle);
|
| 108 |
}
|
| 109 |
|
| 110 |
.nav-links a {
|
| 111 |
+
color: var(--text-main);
|
| 112 |
text-decoration: none;
|
| 113 |
font-size: 0.85rem;
|
| 114 |
margin-right: 24px;
|
| 115 |
+
font-weight: 600;
|
| 116 |
+
transition: opacity 0.2s ease;
|
| 117 |
}
|
| 118 |
|
| 119 |
+
.nav-links a:hover { opacity: 0.6; }
|
| 120 |
|
| 121 |
.legal-tag {
|
| 122 |
font-size: 0.8rem;
|
| 123 |
+
font-weight: 500;
|
| 124 |
+
color: var(--text-muted);
|
| 125 |
}
|
| 126 |
|
| 127 |
@media (max-width: 600px) {
|
|
|
|
| 131 |
</style>
|
| 132 |
</head>
|
| 133 |
<body>
|
|
|
|
| 134 |
|
| 135 |
<div class="enterprise-container">
|
| 136 |
+
<span class="badge">Genesis</span>
|
| 137 |
|
| 138 |
+
<h1 class="main-title">Klove AI.<br>Engineering the Intelligence of Ambition.</h1>
|
| 139 |
|
| 140 |
<div class="content-body">
|
| 141 |
<div class="section-block">
|
| 142 |
+
<span class="section-label">01 / The Insight</span>
|
| 143 |
+
<p class="section-text">Professional potential is the most undervalued asset in the global economy. The challenge is rarely a lack of talent; it is a deficit of clarity. We saw an opportunity to look deeper—to find the signal in the noise and decode the fundamental essence of capability.</p>
|
| 144 |
</div>
|
| 145 |
|
| 146 |
<div class="section-block">
|
| 147 |
+
<span class="section-label">02 / The Craft</span>
|
| 148 |
+
<p class="section-text">We engineered a lens, not just a platform. By decoding the invisible threads between current skillsets and future potential, we combined proprietary intelligence with human-centric design to create a definitive foundation for professional trajectory.</p>
|
| 149 |
</div>
|
| 150 |
|
| 151 |
<div class="section-block">
|
| 152 |
+
<span class="section-label">03 / The Purpose</span>
|
| 153 |
+
<p class="section-text">Klove AI exists to transform uncertainty into a structured science. Because when the path is clear, the journey is no longer a challenge—it becomes an evolution.</p>
|
| 154 |
</div>
|
| 155 |
</div>
|
| 156 |
|
|
|
|
|
|
|
| 157 |
<div class="footer-grid">
|
| 158 |
<div class="nav-links">
|
| 159 |
+
<a href="#">Network</a>
|
| 160 |
<a href="#">LinkedIn</a>
|
| 161 |
+
<a href="#">Contact</a>
|
| 162 |
</div>
|
| 163 |
<div class="legal-tag">
|
| 164 |
© 2026 Klove AI Systems Inc.
|