forked from fongandrew/hydeout
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuy.html
More file actions
220 lines (202 loc) · 9.4 KB
/
Copy pathbuy.html
File metadata and controls
220 lines (202 loc) · 9.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Buy · Futuro Insights</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Predictive analytics courses, model templates, dashboards and freelance data-science services.">
<!-- Fonts -->
-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:wght@700|Roboto:wght@400;500|Roboto+Mono:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css">
<style>
:root {
--main-bg: linear-gradient(135deg,#0c1330 60%,#33dbb5 100%);
--panel-bg: #0f1b2f99;
--panel-border: #27f7c1;
--main-text: #eaf5ff;
--muted-text: #c8e3f0;
--accent-neon: #2affc1;
--accent-2: #6b53ff;
--hero-head-glow: 0 0 16px #00ffe7,0 0 45px #2affc1,0 0 35px #8f38ec;
--card-shadow: 0 0 18px #1de9c680;
--nav-bg: #0c1a2ecc;
}
.light-mode {
--main-bg: linear-gradient(135deg,#f9fbff 60%,#dcfff6 100%);
--panel-bg: #ffffffee;
--panel-border: #14c3a2;
--main-text: #0e1b2b;
--muted-text: #3b5363;
--accent-neon: #0aa88a;
--accent-2: #4d3fe6;
--hero-head-glow: none;
--card-shadow: 0 8px 24px rgba(10,168,138,0.18);
--nav-bg: #ffffffee;
}
html, body { margin:0; padding:0; height:100%; }
body { font-family: 'Roboto', sans-serif; background: var(--main-bg); color: var(--main-text); line-height:1.6; }
a { color: var(--accent-neon); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; }
.container { width: min(1200px, 92vw); margin: 0 auto; }
/* Header */
header { position: sticky; top:0; z-index:1000; backdrop-filter: saturate(120%) blur(8px); background: var(--nav-bg); }
.nav { display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.brand { display:flex; align-items:center; gap:10px; font-weight:800; font-size:1.2rem; }
.logo-dot { width:12px; height:12px; border-radius:50%; background:var(--accent-neon); box-shadow:0 0 12px var(--accent-neon); }
nav ul { display:flex; gap:20px; list-style:none; margin:0; padding:0; flex-wrap:wrap; }
nav a { color:var(--main-text); font-weight:600; opacity:0.95; }
/* Highlighted green Buy button */
nav a.buy-cta {
background: linear-gradient(90deg, #2affc1, #00ffe7);
color: #0e1520 !important;
padding: 10px 20px;
border-radius: 30px;
font-weight: bold;
box-shadow: 0 0 20px #38dfff60;
}
.nav-toggle { display:none; }
@media (max-width: 840px) {
.nav-toggle { display:block; background:none; border:1px solid #2affc155; color:var(--main-text); padding:8px 12px; border-radius:10px; }
nav ul { display:none; flex-direction:column; position:absolute; top:60px; right:4vw; background:var(--panel-bg); border:1px solid var(--panel-border); border-radius:14px; padding:16px; }
nav ul.open { display:flex; }
}
/* Page sections */
.page-title { text-align:center; margin:40px 0 20px; font-size:2.6rem; text-shadow: var(--hero-head-glow); }
.videos-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(360px,1fr)); gap:24px; margin:40px 0; }
.video { background:#0f1b2fdd; padding:20px; border-radius:16px; border:1px solid var(--panel-border); box-shadow:var(--card-shadow); }
.video iframe { width:100%; height:260px; border:none; border-radius:12px; }
.video .description { margin-top:12px; color:var(--muted-text); }
/* Products */
.products { display:grid; grid-template-columns: repeat(auto-fit, minmax(340px,1fr)); gap:30px; margin:60px 0; }
.product-card {
background: #0f1b2fdd;
border: 2px solid var(--accent-neon);
border-radius: 18px;
padding: 28px;
text-align: center;
box-shadow: var(--card-shadow);
transition: transform .2s;
}
.product-card:hover { transform: translateY(-8px); }
.product-card h3 { margin:0 0 16px; color:var(--accent-neon); }
footer { text-align:center; padding:40px 0; color:rgba(255,255,255,.6); font-size:0.95rem; }
.light-mode footer { color:#555; }
</style>
</head>
<body>
<!-- Navigation -->
<header>
<div class="container nav">
<div class="brand">
<div class="logo-dot"></div>
<span>Futuro Insights</span>
</div>
<button class="nav-toggle" aria-label="Toggle menu">Menu</button>
<nav>
<ul id="navMenu">
<li><a href="../index.html">Home</a></li>
<li><a href="../code.html">Code</a></li>
<li><a href="../studymanual.html">Study Manual</a></li>
<li><a href="buy.html" class="buy-cta">Buy Now</a></li>
<li><a href="../privacy.html">Privacy</a></li>
<li><a href="../terms.html">Terms</a></li>
<li><a href="../contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Dark/Light Theme Button -->
<button id="darkModeBtn" style="position:fixed;bottom:20px;right:20px;z-index:999;padding:12px 24px;border-radius:30px;background:#161b23;color:#aef8f3;border:1px solid #27f7c1;box-shadow:0 0 20px #0affe780;font-weight:bold;cursor:pointer;">
Toggle Theme
</button>
<div class="container">
<h1 class="page-title">Courses & Services</h1>
<!-- Demo Videos -->
<div class="videos-grid">
<div class="video">
<iframe src="https://www.youtube.com/embed/0wnjnxuNJ5c" allowfullscreen></iframe>
<div class="description">The Ultimate GLM Guide – Exam PA preparation</div>
</div>
<div class="video">
<iframe src="https://www.youtube.com/embed/05Mc94aBV5U" allowfullscreen></iframe>
<div class="description">How to write high-scoring answers on Exam PA</div>
</div>
<div class="video">
<iframe src="https://www.youtube.com/embed/vtegCXjxwUg" allowfullscreen></iframe>
<div class="description">Titanic Survival – Full Machine Learning Tutorial</div>
</div>
<div class="video">
<iframe src="https://www.youtube.com/embed/_eS2PTvnimE" allowfullscreen></iframe>
<div class="description">Miners Union Exam Walkthrough</div>
</div>
<div class="video">
<iframe src="https://www.youtube.com/embed/8GK6dGP0_L4" allowfullscreen></iframe>
<div class="description">Travel Analytics in R</div>
</div>
<div class="video">
<iframe src="https://www.youtube.com/embed/3ZgEZB557P8" allowfullscreen></iframe>
<div class="description">Vehicle Accident Predictive Modeling</div>
</div>
<div class="video">
<iframe src="https://www.youtube.com/embed/M_wZDwJ8R7I" allowfullscreen></iframe>
<div class="description">Student Success Prediction – Feature Engineering</div>
</div>
</div>
<!-- Products / Services -->
<h2 style="text-align:center;margin:60px 0 40px;color:var(--accent-neon);font-size:2.2rem;">Freelance Data Science Services</h2>
<div class="products">
<div class="product-card">
<h3>Proven Model Templates</h3>
<p>20+ ready-to-use high-performance ML models for actuarial exams + 2-hour consultation.</p>
<p><strong>Delivered in 5 business days</strong></p>
<stripe-buy-button
buy-button-id="buy_btn_1PPmBAGZfbTkjur8exW7WHlp"
publishable-key="pk_live_jf03QSEV5jYlY2CW7MmJhiJL00w572PvnE">
</stripe-buy-button>
</div>
<div class="product-card">
<h3>Drag-and-Drop Dashboard</h3>
<p>Excel Power Query or custom Tableau dashboard with your data.</p>
<p><strong>Delivered in 5 business days</strong></p>
<stripe-buy-button
buy-button-id="buy_btn_1PPmD1GZfbTkjur8qXWURxnj"
publishable-key="pk_live_jf03QSEV5jYlY2CW7MmJhiJL00w572PvnE">
</stripe-buy-button>
</div>
<div class="product-card">
<h3>Data Cleaning & Validation</h3>
<p>Clean, validated datasets delivered in CSV/JSON/SQL.</p>
<p><strong>Delivered in 3–5 business days</strong></p>
<stripe-buy-button
buy-button-id="buy_btn_1PPmHzGZfbTkjur8GhiclQb6"
publishable-key="pk_live_jf03QSEV5jYlY2CW7MmJhiJL00w572PvnE">
</stripe-buy-button>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<div class="container">
<p>
<a href="../index.html">Home</a> • <a href="../code.html">Code</a> • <a href="../studymanual.html">Study Manual</a> •
<a href="buy.html">Buy</a> • <a href="../privacy.html">Privacy</a> • <a href="../terms.html">Terms</a> • <a href="../contact.html">Contact</a>
</p>
<p>© 2025 Futuro Insights. Made with passion and predictive power.</p>
</div>
</footer>
<!-- Scripts -->
<script async src="https://js.stripe.com/v3/buy-button.js"></script>
<script>
// Mobile menu
document.querySelector('.nav-toggle').addEventListener('click', () => {
document.getElementById('navMenu').classList.toggle('open');
});
// Theme toggle
document.getElementById('darkModeBtn').addEventListener('click', () => {
document.body.classList.toggle('light-mode');
});
</script>
</body>
</html>