:root {
    --bg: #0b0f19;
    --card: #111827;
    --muted: #94a3b8;
    --text: #e5e7eb;
    --brand: #7c3aed;
    --brand2: #22c55e;
    --border: rgba(148, 163, 184, .18);
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
    --radius: 18px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    background: radial-gradient(1200px 800px at 10% 0%, rgba(124, 58, 237, .22), transparent 60%),
        radial-gradient(1200px 800px at 90% 10%, rgba(34, 197, 94, .14), transparent 55%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none
}

.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px
}

.nav {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(11, 15, 25, .65);
    border-bottom: 1px solid var(--border)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 24px;
    max-width: 1100px;
    margin: 0 auto
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700
}

.logo {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    box-shadow: var(--shadow)
}

.menu {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center
}

.menu a {
    padding: 8px 10px;
    border-radius: 12px;
    color: var(--muted);
    transition: .2s;
    border: 1px solid transparent
}

.menu a:hover {
    color: var(--text);
    border-color: var(--border);
    background: rgba(255, 255, 255, .03)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .03);
    color: var(--text);
    cursor: pointer;
    transition: .2s;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    border-color: rgba(124, 58, 237, .45)
}

.btn.primary {
    background: linear-gradient(135deg, rgba(124, 58, 237, .95), rgba(34, 197, 94, .85));
    border: 1px solid rgba(255, 255, 255, .12)
}

.hero {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 22px;
    align-items: stretch;
    padding: 36px 0 10px
}

@media (max-width:900px) {
    .hero {
        grid-template-columns: 1fr
    }
}

.card {
    background: rgba(17, 24, 39, .85);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.card:hover {
    transform: scale(1.01);
}

.hero-main {
    padding: 26px
}

.kicker {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    background: rgba(255, 255, 255, .02)
}

h1 {
    margin: 12px 0 10px;
    font-size: 42px;
    line-height: 1.15
}

@media (max-width:520px) {
    h1 {
        font-size: 34px
    }
}

.lead {
    color: var(--muted);
    font-size: 16px;
    margin: 0 0 18px
}

.row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .02);
    color: var(--muted);
    font-size: 13px;
    margin: 6px 6px 0 0
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px
}

.hero-side {
    padding: 20px
}

.avatar {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 22px;
    background:
        radial-gradient(600px 400px at 30% 15%, rgba(124, 58, 237, .35), transparent 55%),
        radial-gradient(600px 400px at 70% 35%, rgba(34, 197, 94, .25), transparent 55%),
        linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.avatar span {
    font-size: 14px;
    color: var(--muted);
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px dashed rgba(148, 163, 184, .35);
    background: rgba(11, 15, 25, .25)
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* memenuhi box, crop otomatis */
    object-position: center;
    /* fokus di tengah */
    display: block;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px
}

.stat {
    padding: 12px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .02)
}

.stat b {
    display: block;
    font-size: 16px
}

.stat small {
    color: var(--muted)
}

section {
    padding: 18px 0
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin: 22px 0 10px
}

.section-title h2 {
    margin: 0;
    font-size: 22px
}

.section-title p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px
}

.col-6 {
    grid-column: span 6
}

.col-4 {
    grid-column: span 4
}

.col-8 {
    grid-column: span 8
}

.col-12 {
    grid-column: span 12
}

@media (max-width:900px) {

    .col-6,
    .col-4,
    .col-8 {
        grid-column: span 12
    }
}

.box {
    padding: 18px
}

.muted {
    color: var(--muted)
}

.project {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.thumb {
    height: 160px;
    border-radius: 18px;
    overflow: hidden;
    /* penting biar gambar ikut radius */
    border: 1px solid rgba(255, 255, 255, .10);
}
.thumbVid{
    height:160px;
    border-radius:18px;
    overflow:hidden;
  }
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* memenuhi box, crop otomatis */
    object-position: center;
    /* fokus di tengah */
    display: block;
}

.thumbVid .media{
    width:100%;
    height:100%;
    object-fit:cover;          /* penuh box */
    object-position:center 30%;    /* atur fokus */
    display:block;
  }

.input {
    width: 100%;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .02);
    color: var(--text);
    outline: none
}

.input:focus {
    border-color: rgba(124, 58, 237, .55)
}

textarea.input {
    min-height: 110px;
    resize: vertical
}

.note {
    font-size: 13px;
    color: var(--muted)
}

.footer {
    padding: 34px 0 40px;
    color: var(--muted);
    text-align: center
}

code.inline {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono";
    font-size: .95em;
    padding: 2px 6px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, .02)
}