/* === STRIPE DESIGN SYSTEM - VISI MISI === */
:root {
    --stripe-bg: #f7f9fc;
    --stripe-card: #ffffff;
    --stripe-text: #425466;
    --stripe-title: #0a2540;
    --stripe-primary: #635bff;
    --stripe-shadow-sm: 0 2px 4px rgba(50,50,93,0.04), 0 1px 2px rgba(0,0,0,0.04);
    --stripe-shadow-md: 0 4px 6px rgba(50,50,93,0.11), 0 1px 3px rgba(0,0,0,0.08);
    --stripe-shadow-hover: 0 13px 27px -5px rgba(50,50,93,0.25), 0 8px 16px -8px rgba(0,0,0,0.3);
    --stripe-bezier: cubic-bezier(0.21, 1.02, 0.73, 1);
}

.visimisi-container {
    position: relative;
    max-width: 1280px; /* Stripe prefers slightly narrower max-widths for readability */
    margin: 0 auto;
    padding: 4rem 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--stripe-bg);
    overflow: hidden;
}

/* Stripe Abstract Background Mesh */
.stripe-bg-mesh {
    position: absolute; top: -20%; left: -10%; width: 120%; height: 100vh;
    background: radial-gradient(circle at 15% 50%, rgba(99, 91, 255, 0.04), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(0, 212, 255, 0.04), transparent 25%);
    z-index: 0; pointer-events: none;
}

/* HEADER */
.visimisi-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
.badge-pill {
    display: inline-block; padding: 6px 16px; background: rgba(99, 91, 255, 0.1);
    color: var(--stripe-primary); border-radius: 50px; font-size: 0.85rem;
    font-weight: 600; letter-spacing: 0.5px; margin-bottom: 1rem;
}
.visimisi-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--stripe-title);
    font-weight: 800; letter-spacing: -1.5px; margin-bottom: 1rem; line-height: 1.1;
}
.stripe-text-gradient {
    background: linear-gradient(135deg, #635bff 0%, #00d4ff 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.visimisi-header p { color: var(--stripe-text); font-size: 1.25rem; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* GRID LAYOUT */
.stripe-grid-layout {
    display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem;
    position: relative; z-index: 1;
}

/* STRIPE CARDS */
.stripe-card {
    background: var(--stripe-card); border-radius: 16px; padding: 2.5rem;
    box-shadow: var(--stripe-shadow-sm); transition: all 0.4s var(--stripe-bezier);
    border: 1px solid rgba(0,0,0,0.03); display: flex; flex-direction: column;
}
.stripe-card:hover { transform: translateY(-4px); box-shadow: var(--stripe-shadow-hover); }

/* Card Spans */
.card-visi { grid-column: span 7; }
.card-misi { grid-column: span 5; }
.card-nilai { grid-column: span 6; }
.card-motto { grid-column: span 6; }
.card-prodi { grid-column: span 7; }
.card-org { grid-column: span 5; }

/* Typography inside cards */
.card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.stripe-card h2 { color: var(--stripe-title); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.5px; margin: 0; }
.highlight-lead { font-size: 1.4rem; line-height: 1.6; color: var(--stripe-title); font-weight: 500; letter-spacing: -0.3px; margin: 0; }

/* Icons Stripe Style */
.icon-box {
    width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.icon-box svg { width: 22px; height: 22px; }
.icon-blue { background: #e3e8ee; color: #0a2540; }
.icon-purple { background: rgba(99,91,255,0.1); color: #635bff; }
.icon-teal { background: #e0f2f1; color: #00897b; }
.icon-orange { background: #fbe9e7; color: #d84315; }
.icon-pink { background: #fce4ec; color: #d81b60; }

/* Lists & Text */
.stripe-list { list-style: none; padding: 0; margin: 0; }
.stripe-list li {
    position: relative; padding-left: 1.5rem; margin-bottom: 1rem; color: var(--stripe-text); line-height: 1.6;
}
.stripe-list li::before {
    content: '→'; position: absolute; left: 0; top: 0; color: var(--stripe-primary); font-weight: bold;
}

/* Values Grid (Modern List) */
.values-grid-modern { display: flex; flex-direction: column; gap: 1.5rem; }
.value-feature { display: flex; align-items: flex-start; gap: 1.2rem; }
.value-feature strong { display: block; color: var(--stripe-title); font-size: 1.1rem; margin-bottom: 0.3rem; }
.value-feature p { margin: 0; color: var(--stripe-text); font-size: 0.95rem; line-height: 1.5; }

/* Motto Grid */
.motto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.motto-block { padding-top: 1rem; border-top: 2px solid rgba(0,0,0,0.05); }
.motto-block h3 { color: var(--stripe-title); font-size: 1.1rem; margin: 0 0 0.5rem; }
.motto-block p { color: var(--stripe-text); font-size: 0.9rem; margin: 0; line-height: 1.5; }

/* Stripe Accordion */
.stripe-accordion { display: flex; flex-direction: column; gap: 0.5rem; }
.prodi-detail { border-bottom: 1px solid rgba(0,0,0,0.05); }
.prodi-detail:last-child { border-bottom: none; }
.prodi-detail summary {
    padding: 1.2rem 0; font-weight: 600; color: var(--stripe-title); cursor: pointer;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.prodi-detail summary::-webkit-details-marker { display: none; } /* Hide default arrow */
.prodi-detail .chevron {
    display: block; width: 10px; height: 10px; border-right: 2px solid var(--stripe-text);
    border-bottom: 2px solid var(--stripe-text); transform: rotate(45deg); transition: transform 0.3s;
}
.prodi-detail[open] .chevron { transform: rotate(-135deg); border-color: var(--stripe-primary); }
.prodi-detail .detail-content {
    padding-bottom: 1.5rem; color: var(--stripe-text); line-height: 1.6; font-size: 0.95rem;
    animation: stripeReveal 0.3s ease-out;
}
@keyframes stripeReveal { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Org List */
.org-list { display: flex; flex-direction: column; gap: 0.8rem; }
.org-row { display: flex; justify-content: space-between; align-items: center; padding: 1rem; background: #f7f9fc; border-radius: 8px; }
.org-row span { color: var(--stripe-text); font-size: 0.9rem; }
.org-row strong { color: var(--stripe-title); font-size: 0.95rem; text-align: right; }

/* ANIMATION CLASSES */
.animate-stripe { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--stripe-bezier), transform 0.8s var(--stripe-bezier); }
.animate-stripe.is-visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .card-visi, .card-misi, .card-nilai, .card-motto, .card-prodi, .card-org { grid-column: span 12; }
    .motto-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .visimisi-container { padding: 2rem 1rem; }
    .stripe-card { padding: 1.5rem; }
    .org-row { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
    .org-row strong { text-align: left; }
}