/* global/style.css */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0a0a0a;
    color: #bbb;
    min-height: 100vh;
    padding: 30px 40px;
    position: relative;
    overflow-x: hidden;
}

.bg-pattern {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
}
.bg-pattern .dot {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    width: 6px; height: 6px;
    display: block;
}
.bg-pattern .dot:nth-child(1) { top: 5%; left: 4%; width: 8px; height: 8px; }
.bg-pattern .dot:nth-child(2) { top: 12%; right: 6%; }
.bg-pattern .dot:nth-child(3) { top: 40%; left: 2%; width: 10px; height: 10px; }
.bg-pattern .dot:nth-child(4) { top: 55%; right: 4%; width: 8px; height: 8px; }
.bg-pattern .dot:nth-child(5) { top: 75%; left: 8%; }
.bg-pattern .dot:nth-child(6) { top: 82%; right: 10%; width: 10px; height: 10px; }
.bg-pattern .dot:nth-child(7) { top: 28%; left: 55%; }
.bg-pattern .dot:nth-child(8) { top: 65%; left: 65%; width: 8px; height: 8px; }
.bg-pattern .dot:nth-child(9) { top: 10%; left: 20%; }
.bg-pattern .dot:nth-child(10) { top: 18%; right: 15%; }
.bg-pattern .dot:nth-child(11) { top: 35%; left: 70%; }
.bg-pattern .dot:nth-child(12) { top: 50%; right: 25%; }
.bg-pattern .dot:nth-child(13) { top: 68%; left: 40%; }
.bg-pattern .dot:nth-child(14) { top: 80%; right: 30%; }
.bg-pattern .dot:nth-child(15) { top: 90%; left: 15%; }
.bg-pattern .dot:nth-child(16) { top: 22%; left: 85%; }
.bg-pattern .dot:nth-child(17) { top: 45%; right: 8%; }
.bg-pattern .dot:nth-child(18) { top: 72%; left: 50%; }

header, .hero, .cloud-wrapper, footer { position: relative; z-index: 2; }

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #1a1a1a;
    margin-bottom: 30px;
}
.logo { font-size: 1.5rem; font-weight: 700; color: #fff; }
.logo em { font-style: normal; color: #777; }
header a { color: #555; text-decoration: none; font-size: 0.8rem; }

.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}
.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -1px;
    flex: 1;
}
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 6px;
}
.hero-right p { font-size: 1rem; color: #777; line-height: 1.5; margin-bottom: 4px; }
.buttons-row { display: flex; gap: 20px; }
.btn-block { flex: 1; }
.btn {
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: 0.2s;
    width: 100%;
    text-align: center;
}
.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { background: #ddd; }
.btn-secondary { background: transparent; color: #aaa; border: 1px solid #333; }
.btn-secondary:hover { background: #111; color: #fff; }
.btn-label { font-size: 0.75rem; color: #555; margin-top: 8px; line-height: 1.4; }

.cloud-wrapper {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 36px;
    padding: 36px;
    margin-bottom: 30px;
}
.cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.card {
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid rgba(255,255,255,0.06);
}
.card:nth-child(1) { background: rgba(200,150,90,0.16); }
.card:nth-child(2) { background: rgba(140,180,130,0.16); }
.card:nth-child(3) { background: rgba(130,150,200,0.16); }
.card:nth-child(4) { background: rgba(180,130,170,0.16); }
.card h3 { font-size: 1.2rem; font-weight: 600; color: #eee; margin-bottom: 10px; }
.card p { font-size: 0.9rem; color: #999; line-height: 1.5; }

footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #111;
    font-size: 0.75rem;
    color: #444;
}
