/* ==========================================================================
   AETHERPRO - EXACT UNBOUNDX HIGH-RES 3D GRAPHIC FINTECH DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Brand Palette */
    --blue-primary: #2563eb;       /* Bright Electric Royal Blue */
    --blue-hover: #1d4ed8;
    --blue-light: #eff6ff;

    --navy-dark: #1e2532;         /* Dark UnboundX Navy Button & Text */
    --navy-hover: #111723;
    --slate-body: #334155;
    --slate-muted: #64748b;

    /* Surfaces */
    --bg-body: #ffffff;           /* Clean Pure White Background */
    --bg-card: #ffffff;
    --bg-capsule: #f4f4f0;        /* UnboundX Light Beige/Gray Capsule */

    /* Borders & Shadows */
    --border-subtle: #e2e8f0;
    --shadow-nav: 0 4px 20px rgba(15, 23, 42, 0.04);
    --shadow-card: 0 16px 40px -10px rgba(15, 23, 42, 0.05);
    --shadow-btn: 0 8px 24px -4px rgba(30, 37, 50, 0.28);

    /* Radii */
    --radius-phone-card: 36px;
    --radius-card: 32px;
    --radius-pill: 9999px;

    --max-width: 1100px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #f8fafc;
    color: var(--slate-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Outer Frame Wrapper for UnboundX Aesthetic */
.page-outer-frame {
    max-width: var(--max-width);
    margin: 20px auto;
    background: var(--bg-card);
    border-radius: var(--radius-phone-card);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    position: relative;
}

/* 1. UNBOUNDX FLOATING CAPSULE NAVBAR */
.nav-wrapper {
    padding: 24px 32px 0;
}

.nav-capsule-bar {
    background: var(--bg-capsule);
    border-radius: var(--radius-pill);
    padding: 8px 12px 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.brand-badge-circle {
    width: 38px;
    height: 38px;
    background: var(--navy-dark);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}

.brand-text {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-center-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-body);
}

.nav-link-item:hover {
    color: var(--blue-primary);
}

.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-circle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--navy-dark);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* Pill Buttons */
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
}

.btn-navy-unboundx {
    background-color: var(--navy-dark);
    color: #ffffff;
    letter-spacing: 0.05em;
    font-size: 13px;
    font-weight: 800;
    padding: 16px 36px;
    box-shadow: var(--shadow-btn);
    border-radius: var(--radius-pill);
}

.btn-navy-unboundx:hover {
    background-color: var(--navy-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(30, 37, 50, 0.35);
}

.btn-outline {
    background-color: #ffffff;
    border: 1px solid var(--border-subtle);
    color: var(--navy-dark);
}

/* Off-Canvas Mobile Drawer */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.drawer-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: #ffffff;
    z-index: 1100;
    padding: 36px 28px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.drawer-panel.active {
    transform: translateX(0);
}

/* 2. HERO SECTION (EXACT UNBOUNDX HIGH-RES 3D ASSETS) */
.hero-container {
    padding: 80px 24px 100px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero-unboundx-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.text-blue-accent {
    color: var(--blue-primary);
}

.hero-unboundx-sub {
    font-size: 16px;
    color: var(--slate-muted);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 36px;
}

/* HIGH-RES 3D ASSETS GRAPHIC CLUSTER */
.unboundx-graphic-stage {
    position: relative;
    width: 320px;
    height: 260px;
    margin: -10px auto 0;
}

/* 3D Glossy Blue Coin Centerpiece */
.img-3d-coin {
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translateX(-50%) rotate(-6deg);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 16px 30px rgba(37, 99, 235, 0.35));
    animation: floatCoin 4s ease-in-out infinite;
    z-index: 2;
}

/* 3D Glossy Blue Chat Bubble Top-Left */
.img-3d-bubble {
    position: absolute;
    top: 0;
    left: 20px;
    width: 84px;
    height: 84px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 10px 20px rgba(37, 99, 235, 0.3));
    animation: floatBubble 4s ease-in-out infinite 1s;
    z-index: 3;
}

/* Portrait Avatar 1 Left Bottom */
.avatar-ring-left {
    position: absolute;
    bottom: 10px;
    left: 36px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
    z-index: 4;
}

/* Portrait Avatar 2 Right Top */
.avatar-ring-right {
    position: absolute;
    top: 50px;
    right: 24px;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
    z-index: 4;
}

/* Concentric Background Rings Behind Avatars */
.ring-bg-left {
    position: absolute;
    bottom: 0;
    left: 26px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    z-index: 1;
}

.ring-bg-right {
    position: absolute;
    top: 40px;
    right: 14px;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    z-index: 1;
}

@keyframes floatCoin {
    0%, 100% { transform: translateX(-50%) rotate(-6deg) translateY(0); }
    50% { transform: translateX(-50%) rotate(-3deg) translateY(-10px); }
}

@keyframes floatBubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* 3. SECTIONS & CARDS */
.section {
    padding: 90px 24px;
    border-top: 1px solid var(--border-subtle);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 16px;
    color: var(--slate-muted);
}

.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.soft-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 40px 32px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
    transition: var(--transition);
}

.soft-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -6px rgba(15, 23, 42, 0.06);
}

/* 4. AWWWARDS CONTACT CARD SECTION */
.contact-card-container {
    max-width: 960px;
    margin: 0 auto;
}

.contact-awwwards-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 56px 48px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 16px 40px -10px rgba(15, 23, 42, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-input);
    border: 1px solid var(--border-subtle);
    background-color: #f8fafc;
    color: var(--navy-dark);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--blue-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* 5. UNBOUNDX MINIMAL FOOTER */
.unboundx-footer {
    background: #ffffff;
    border-top: 1px solid var(--border-subtle);
    padding: 40px 24px;
}

.footer-minimal-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    color: var(--slate-muted);
    font-weight: 600;
}

.footer-legal-links a:hover {
    color: var(--blue-primary);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 992px) {
    body { padding: 0; }
    .page-outer-frame { border-radius: 0; border: none; box-shadow: none; margin: 0; }
    .nav-center-menu { display: none; }
    .card-grid-3 { grid-template-columns: 1fr; }
    .contact-awwwards-card { grid-template-columns: 1fr; gap: 36px; padding: 36px 24px; }
}

@media (max-width: 576px) {
    .nav-wrapper { padding: 16px 16px 0; }
    .hero-container { padding: 40px 20px 60px; }
    .hero-unboundx-title { font-size: 42px; line-height: 1.1; }
    .hero-unboundx-sub { font-size: 15px; margin-bottom: 28px; }
    .btn-navy-unboundx { width: 100%; padding: 16px 24px; }
    .unboundx-graphic-stage { width: 280px; height: 220px; }
    .img-3d-coin { width: 140px; height: 140px; }
    .img-3d-bubble { width: 68px; height: 68px; left: 10px; }
    .avatar-ring-left { width: 60px; height: 60px; left: 20px; }
    .avatar-ring-right { width: 62px; height: 62px; right: 10px; }
    .footer-minimal-container { flex-direction: column; text-align: center; }
}
