PNG IHDR x sBIT|d pHYs + tEXtSoftware www.inkscape.org< ,tEXtComment
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>City Prime - Global Digital Banking</title>
<style>
/* =========================================
CSS VARIABLES & RESET
========================================= */
:root {
--bg-main: #ffffff;
--text-dark: #0f172a;
--text-muted: #64748b;
--primary-blue: #0ea5e9;
--deep-blue: #0c4a6e;
--surface-light: #f8fafc;
}
* {
margin: 0; padding: 0; box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
-webkit-tap-highlight-color: transparent;
}
body { background-color: var(--bg-main); color: var(--text-dark); overflow-x: hidden; }
/* =========================================
NAVIGATION
========================================= */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; position: absolute; top: 0; width: 100%; z-index: 100; }
.logo { font-size: 1.5rem; font-weight: 800; color: white; letter-spacing: -0.5px; }
.nav-links { display: none; }
.auth-buttons { display: flex; gap: 12px; }
.login-btn { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); padding: 10px 20px; border-radius: 8px; font-weight: 600; cursor: pointer; text-decoration: none; transition: 0.2s;}
.login-btn:hover { background: rgba(255,255,255,0.1); }
.register-btn { background: white; color: var(--primary-blue); border: none; padding: 10px 20px; border-radius: 8px; font-weight: 600; cursor: pointer; text-decoration: none; transition: 0.2s; box-shadow: 0 4px 6px rgba(0,0,0,0.1);}
.register-btn:active { transform: scale(0.98); }
/* =========================================
HERO SECTION
========================================= */
.hero { background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary-blue) 100%); padding: 120px 24px 80px 24px; color: white; text-align: center; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; bottom: -50px; left: 0; width: 100%; height: 100px; background: var(--bg-main); transform: skewY(-3deg); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hero-tag { display: inline-block; background: rgba(255,255,255,0.2); padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; backdrop-filter: blur(10px);}
.hero h1 { font-size: 3rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; letter-spacing: -1px;}
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 40px; line-height: 1.6; }
.hero-cta { display: inline-flex; background: white; color: var(--deep-blue); font-size: 1.1rem; font-weight: 700; padding: 18px 40px; border-radius: 12px; text-decoration: none; box-shadow: 0 10px 25px rgba(0,0,0,0.2); transition: 0.3s; }
.hero-cta:active { transform: scale(0.98); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
/* =========================================
FEATURES & APY SECTION
========================================= */
.features-section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 16px; color: var(--deep-blue); }
.section-subtitle { text-align: center; font-size: 1.1rem; color: var(--text-muted); margin-bottom: 64px; max-width: 600px; margin-left: auto; margin-right: auto;}
.features-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.feature-card { background: var(--surface-light); padding: 40px 32px; border-radius: 24px; text-align: left; transition: 0.3s; border: 1px solid rgba(0,0,0,0.05); }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.f-icon { width: 64px; height: 64px; background: white; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 24px; box-shadow: 0 10px 20px rgba(14, 165, 233, 0.1); color: var(--primary-blue);}
.feature-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.feature-card p { color: var(--text-muted); line-height: 1.6; }
/* APY Highlight Banner */
.apy-banner { background: var(--deep-blue); border-radius: 24px; padding: 40px; margin-top: 80px; color: white; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; overflow: hidden;}
.apy-banner::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 60%); }
.apy-content { position: relative; z-index: 2; }
.apy-rate { font-size: 4rem; font-weight: 800; color: var(--primary-blue); margin-bottom: 8px; text-shadow: 0 4px 10px rgba(0,0,0,0.3);}
.apy-content p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 24px; }
/* =========================================
FOOTER
========================================= */
footer { background: var(--surface-light); padding: 40px 24px; text-align: center; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.copyright { color: var(--text-muted); font-size: 0.8rem; }
/* =========================================
DESKTOP MEDIA QUERY
========================================= */
@media (min-width: 1024px) {
.navbar { padding: 24px 60px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: white; text-decoration: none; font-weight: 500; opacity: 0.9; transition: 0.2s;}
.nav-links a:hover { opacity: 1; }
.hero { padding: 180px 60px 140px 60px; }
.hero h1 { font-size: 4.5rem; }
.hero p { font-size: 1.25rem; }
.features-grid { grid-template-columns: repeat(3, 1fr); }
.apy-banner { flex-direction: row; justify-content: space-between; text-align: left; padding: 60px 80px; }
.apy-content { margin-bottom: 0; }
.apy-content p { margin-bottom: 0; }
}
</style>
</head>
<body>
<nav class="navbar">
<div class="logo">City Prime</div>
<div class="nav-links">
<a href="#">Personal</a>
<a href="#">Business</a>
<a href="#">Company</a>
<a href="#">Help</a>
</div>
<div class="auth-buttons">
<a href="login.php" class="login-btn">Log In</a>
<a href="register.php" class="register-btn">Open Account</a>
</div>
</nav>
<header class="hero">
<div class="hero-content">
<div class="hero-tag">The Future of Finance</div>
<h1>Banking built for your lifestyle.</h1>
<p>Experience seamless global transfers, integrated crypto wallets, and instant virtual cards. Join City Prime and take control of your wealth today.</p>
<a href="register.php" class="hero-cta">Open Account in 3 Minutes</a>
</div>
</header>
<section class="features-section">
<h2 class="section-title">Everything you need. Nothing you don't.</h2>
<p class="section-subtitle">We have stripped away the hidden fees and complex paperwork to give you a pure, powerful financial tool.</p>
<div class="features-grid">
<div class="feature-card">
<div class="f-icon">🌍</div>
<h3>Global Transfers</h3>
<p>Send money internationally with zero hidden fees. Experience SWIFT and IBAN transfers that settle in record time.</p>
</div>
<div class="feature-card">
<div class="f-icon">₿</div>
<h3>Crypto Integration</h3>
<p>Manage your fiat and cryptocurrency in one place. Receive, hold, and swap Bitcoin, Ethereum, and USDT instantly.</p>
</div>
<div class="feature-card">
<div class="f-icon">💳</div>
<h3>Instant Virtual Cards</h3>
<p>Generate secure virtual cards for online shopping the second your account is approved. Freeze or delete them anytime.</p>
</div>
</div>
<div class="apy-banner">
<div class="apy-content">
<div class="apy-rate">4.25% APY</div>
<h3 style="font-size: 1.8rem; margin-bottom: 8px;">Earn more on your savings.</h3>
<p>No minimum balance. No hidden fees. Just pure growth.</p>
</div>
<a href="register.php" class="hero-cta" style="background: var(--primary-blue); color: white;">Start Earning Today</a>
</div>
</section>
<footer>
<div class="footer-links">
<a href="#">About Us</a>
<a href="#">Privacy Policy</a>
<a href="#">Terms of Service</a>
<a href="#">Rates & Fees</a>
<a href="#">Contact Support</a>
</div>
<p class="copyright">© 2026 City Prime Bank. All rights reserved. Deposits are insured up to applicable limits.</p>
</footer>
</body>
</html>
b IDATxytVսϓ22 A@IR:hCiZ[v*E:WũZA ^dQeQ @ !jZ'>gsV仿$|?g)&x-E